Open In App

jQWidgets jqxKanban templateContent Property

Improve
Improve
Like Article
Like
Save
Share
Report

jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxKanban is used for representing the kanban method for a project.

The templateContent property is used for setting or getting the default values about the specified jqxKanban’s cards.

Syntax:

  • For setting the templateContent property.

    var Content_for_Template = { 
        color: "red", 
        resourceId: 0
    }
    $('#jqxKanban').jqxKanban({ 
        templateContent: Content_for_Template 
    });  
  •  

  • For getting the templateContent property.

    var tempCont = $('#jqxKanban').jqxKanban('templateContent');

Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder.

<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxsortable.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxkanban.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdata.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>

Example: The below example illustrates the jQWidgets jqxKanban templateContent property.

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <link rel="stylesheet" 
          href="jqwidgets/styles/jqx.base.css" 
          type="text/css" />
    <script type="text/javascript" 
            src="scripts/jquery.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxcore.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxbuttons.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxsortable.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxkanban.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxdata.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqx-all.js">
    </script>
</head>
  
<body>
    <center>
        <h1 style="color:green;">
            GeeksforGeeks
        </h1>
        <h3>
            jQWidgets jqxKanban templateContent Property
        </h3>
        <div id="jqx_Kanban"></div>
        <script type="text/javascript">
            $(document).ready(function () {
                var Data = new $.jqx.dataAdapter({
                    localData: [
                        {
                            status: "new",
                            Company_Name: "GeeksforGeeks",
                            About: "It is a CS portal"
                        }
                    ],
                    dataFields: [
                        {
                            map: "About",
                            name: "tags",
                            type: "string"
                        },
                        {
                            map: "Company_Name",
                            name: "text",
                            type: "string"
                        },
                        {
                            name: "status",
                            type: "string"
                        },
                    ]
                });
                var Data_Function = function () {
                var Data_Adapter = new $.jqx.dataAdapter({
                        localData: [
                            { name: "" },
                        ],
                    });
                    return Data_Adapter;
                }
                var Content_for_Template = { color: "red", 
                                            resourceId: 0 }
                $('#jqx_Kanban').jqxKanban({
                    width: 300,
                    height: 110,
                    resources: Data_Function(),
                    source: Data,
                    templateContent: Content_for_Template,
                    columns: [
                        {
                            text: "Company",
                            dataField: "new"
                        }
                    ]
                });
            });
        </script>
    </center>
</body>
  
</html>


Output:

Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxkanban/jquery-kanban-api.htm?search=



Last Updated : 16 Dec, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads