Open In App

jQWidgets jqxKanban rtl 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 rtl property is used for setting or getting a value indicating whether the elements of the specified jqxKanban widget are aligned to right-to-left fonts or not.

Syntax:

  • For setting the rtl property.

    $('#jqxKanban').jqxKanban({rtl: true});
  •  

  • For getting the rtl property.

    var rtl = $('#jqxKanban').jqxKanban('rtl');

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-1.11.1.min.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 rtl property. In the below example, the value for the rtl property has been set to true.

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-1.11.1.min.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 rtl Property
        </h3>
        <div id="jqx_Kanban"></div>
        <input type="button" style="margin: 5px;" 
               id="button_for_rtl" 
               value="Value of the rtl property"/>
        <div id="log"></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: "name" },
                        ],
                    });
                    return Data_Adapter;
                }
                $('#jqx_Kanban').jqxKanban({
                    width: 300,
                    height: 110,
                    resources: Data_Function(),
                    source: Data,
                    rtl: true,
                    columns: [
                        { text: "Company", 
                         dataField: "new" }
                    ]
                });
                $("#button_for_rtl").jqxButton({
                    width: 300
                });
                $('#button_for_rtl').jqxButton().
                    click(function () {
                        var value =
                          $('#jqx_Kanban').jqxKanban('rtl');
                        $("#log").html(value);
                    })
            });
        </script>
    </center>
</body>
  
</html>


Output:

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



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