| Name | Type | Default | 
                
                    | altRows | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the jqxDataTable automatically alternates row colors.
                             Code examples
                            
                                Set the altRowsproperty. $('#dataTable').jqxDataTable({altRows: true}); 
 
                                Get the altRowsproperty. var altRows = $('#dataTable').jqxDataTable('altRows'); 
 | 
                
                    | autoRowHeight | Boolean | true | 
                
                    | 
                            
                                Sets or gets whether the jqxDataTable automatically calculates the rows height and wraps the cell text.
                             Code examples
                            
                                Set the autoRowHeightproperty. $('#dataTable').jqxDataTable({autoRowHeight: true}); 
 
                                Get the autoRowHeightproperty. var autoRowHeight = $('#dataTable').jqxDataTable('autoRowHeight'); 
 | 
                
                    | aggregatesHeight | Number | 34 | 
                
                    | 
                            
                                Sets or gets the height of the aggregates bar. Aggregates bar is displayed after setting showAggregatesto true. Code examples
                            
                                Set the aggregatesHeightproperty. $('#dataTable').jqxDataTable({aggregatesHeight: 50}); 
 
                                Get the aggregatesHeightproperty. var aggregatesHeight = $('#dataTable').jqxDataTable('aggregatesHeight'); 
 | 
                
                    | autoShowLoadElement | Boolean | true | 
                
                    | 
                            
                                Sets or gets whether the loading html element with animated gif is automatically displayed by the widget during the data binding process.
                             Code examples
                            
                                Set the autoShowLoadElementproperty. $('#dataTable').jqxDataTable({autoShowLoadElement: false}); 
 
                                Get the autoShowLoadElementproperty. var autoShowLoadElement = $('#dataTable').jqxDataTable('autoShowLoadElement'); 
 | 
                
                    | columnsHeight | Number | 30 | 
                
                    | 
                            
                                Sets or gets the height of the columns header.
                             Code examples
                            
                                Set the columnsHeightproperty. $('#dataTable').jqxDataTable({columnsHeight: 40}); 
 
                                Get the columnsHeightproperty. var columnsHeight = $('#dataTable').jqxDataTable('columnsHeight'); 
 | 
                
                    | columns | Array | [] | 
                
                    | 
                            
                                Sets the jqxDataTable's columns.
                             
                            List of properties:
                                                                                     
                                                                                        text - string property which sets the column header's text.dataField - string property which sets the column's bound field. It should be unique and should point to a data field defined in the jqxDataAdapter's dataFields array.displayField - string property which sets the column's display field. It should be unique and should point to a data field defined in the jqxDataAdapter's dataFields array.sortable - boolean property which determines whether the column is sortable.filterable - boolean property which determines whether the column is filterable.hidden - boolean property which determines whether the column is visible or hidden.columnGroup - string property which determines the name of the column's parent group. It should point to a valid name defined in the columnGroups.autoCellHeight - boolean property which determines whether the cell's data wrapping is enabled. This property is set to trueby default. WhenautoRowHeightis enabled andautoCellHeightis set to false, the cell's data will not be wrapped.renderer - callback function for custom rendering of the column's header.
                                                                                            Code Examplerenderer: function (text, align, height) {    var checkBox = "<div id='checkbox' style='z-index: 999; margin: 5px; margin-left: 30px; margin-top: 8px; margin-bottom: 3px;'>";    checkBox += "</div>";    return checkBox;}rendered - callback function which is called after the column's header rendering is completed.
                                                                                            Code Examplerendered: function (element, align, height) {    element.jqxCheckBox();    element.on('change', function (event) {        if (!updatingSelectionFromDataTable) {            var args = event.args;            var rows = $("#dataTable").jqxDataTable('getRows');            updatingSelection = true;            if (args.checked) {                for (var i = 0; i < rows.length; i++) {                    $("#dataTable").jqxDataTable('selectRow', i);                }            }            else {                $("#dataTable").jqxDataTable('clearSelection');            }            updatingSelection = false;        }    });    return true;}cellsRenderer - callback function which is called when a cell is being rendered. The result of that function should be valid and well-formatted HTML String.
                                                                                            The cellsRenderer function has 4 parameters passed by jqxDataTable - row's index, column's data field, cell's value, row's data as an Object of Key/Value pairs.
                                                                                            Code Example{    text: 'Details', align: 'center', dataField: 'lastname',    // row - row's index.    // column - column's data field.    // value - cell's value.    // rowData - rendered row's object.    cellsRenderer: function (row, column, value, rowData) {        var container = '<div style="width: 100%; height: 100%;">'        var leftcolumn = '<div style="float: left; width: 50%;">';        var rightcolumn = '<div style="float: left; width: 50%;">';                              var firstname = "<div style='margin: 10px;'><b>First Name:</b> " + rowData.firstname + "</div>";        var lastname = "<div style='margin: 10px;'><b>Last Name:</b> " + rowData.lastname + "</div>";        var title = "<div style='margin: 10px;'><b>Title:</b> " + rowData.title + "</div>";        var address = "<div style='margin: 10px;'><b>Address:</b> " + rowData.address + "</div>";                                    leftcolumn += firstname;        leftcolumn += lastname;        leftcolumn += title;        leftcolumn += address;        leftcolumn += "</div>";        var postalcode = "<div style='margin: 10px;'><b>Postal Code:</b> " + rowData.postalcode + "</div>";        var city = "<div style='margin: 10px;'><b>City:</b> " + rowData.city + "</div>";        var phone = "<div style='margin: 10px;'><b>Phone:</b> " + rowData.homephone + "</div>";        var hiredate = "<div style='margin: 10px;'><b>Hire Date:</b> " + rowData.hiredate + "</div>";        rightcolumn += postalcode;        rightcolumn += city;        rightcolumn += phone;        rightcolumn += hiredate;        rightcolumn += "</div>";        container += leftcolumn;        container += rightcolumn;        container += "</div>";        return container;    }}columnType - string property which determines the column's type.Possible values:
 
                                                                                                "template" - sets a custom editor as a default editor for the column. The editor should be created in the createEditorcallback function. The editor should be synchronized with the cell's value in theinitEditorcallback. The editor's value should be retrieved in thegetEditorValuecallback function."custom" - sets a custom editor as a default editor for a cell. That setting enables you to have different cell editors in the column. The editors should be created in the createEditorcallback function which is called for each row when thecolumnTypeproperty is set to "custom". The editors should be synchronized with the cell's value in theinitEditorcallback. The editor's value should be retrieved in thegetEditorValuecallback function.validation - callback function which is called when the jqxDataTable's edited row needs to be validated. The function has 2 parameters - edit cell and the cell's value. The function should return
                                                                                            true or false, depending on the user's validation logic. It can also return a validation object with 2 fields - "result" - true or false, and "message" - validation string displayed to the users.
                                                                                            Code Examplevalidation: function (cell, value) {    var date = new Date(value);    if (date.getFullYear() > 2014 || date.getFullYear() < 1990) {        return { message: "Shipped Date should be in the 1990 - 2014 interval", result: false };    }    return true;}initEditor - callback function which is called when an editor is opened. It has 5 parameters - row's index, cell's value, the editor element, cell's width and cell's height. The function can be
                                                                                            used for adding some custom parameters to the editor.
                                                                                            Code ExampleinitEditor: function (row, cellValue, editor, cellText, width, height) {  // your code here}createEditor - callback function which is called just once when the cells editor is created. It has 5 parameters - row's index, cell's value, the editor element, cell's width and cell's height. The function can be
                                                                                            used for adding some custom parameters to the editor.
                                                                                            Code ExamplecreateEditor: function (row, cellValue, editor, cellText, width, height) {  // your code here}getEditorValue - callback function which could be used for overriding the value returned by the editor. It is useful for advanced scenarios with custom editors. It has 3 parameters - row's index, cell's value and the editor element. The result of the function is expected to be the editor's new value.
                                                                                            Code ExamplegetEditorValue: function (row, cellValue, editor) {  // your code here}cellsFormat - determines the Format string used for formatting the cell values.
 Possible Number strings:
 "d" - decimal numbers.
 "f" - floating-point numbers.
 "n" - integer numbers.
 "c" - currency numbers.
 "p" - percentage numbers.
 
 For adding decimal places to the numbers, add a number after the formatting string.
 For example: "c3" displays a number in this format $25.256
 Possible built-in Date formats:
 
 // short date pattern
                                                                                            d: "M/d/yyyy",
 // long date pattern
                                                                                            D: "dddd, MMMM dd, yyyy",
 // short time pattern
                                                                                            t: "h:mm tt",
 // long time pattern
                                                                                            T: "h:mm:ss tt",
 // long date, short time pattern
                                                                                            f: "dddd, MMMM dd, yyyy h:mm tt",
 // long date, long time pattern
                                                                                            F: "dddd, MMMM dd, yyyy h:mm:ss tt",
 // month/day pattern
                                                                                            M: "MMMM dd",
 // month/year pattern
                                                                                            Y: "yyyy MMMM",
 // S is a sortable format that does not vary by culture
                                                                                            S: "yyyy\u0027-\u0027MM\u0027-\u0027dd\u0027T\u0027HH\u0027:\u0027mm\u0027:\u0027ss"
 
 Possible Date format strings:
 
 "d"-the day of the month;
 "dd"-the day of the month;
 "ddd"-the abbreviated name of the day of the week;
 "dddd"- the full name of the day of the week;
 "h"-the hour, using a 12-hour clock from 1 to 12;
 "hh"-the hour, using a 12-hour clock from 01 to 12;
 "H"-the hour, using a 24-hour clock from 0 to 23;
 "HH"- the hour, using a 24-hour clock from 00 to 23;
 "m"-the minute, from 0 through 59;
 "mm"-the minutes,from 00 though59;
 "M"- the month, from 1 through 12;
 "MM"- the month, from 01 through 12;
 "MMM"-the abbreviated name of the month;
 "MMMM"-the full name of the month;
 "s"-the second, from 0 through 59;
 "ss"-the second, from 00 through 59;
 "t"- the first character of the AM/PM designator;
 "tt"-the AM/PM designator;
 "y"- the year, from 0 to 99;
 "yy"- the year, from 00 to 99;
 "yyy"-the year, with a minimum of three digits;
 "yyyy"-the year as a four-digit number;
 
aggregates - array property which determines the column aggregates.
 
 Code Examples{ text: 'Price', datafield: 'price', cellsalign: 'right', cellsformat: 'c2', aggregates: ['sum', 'avg'] }
 Aggregate functions:
 
                                                                                                'avg' - Average aggregate'count' - Count aggregate'min' - Min aggregate'max' - Max aggregate'sum' - Sum aggregate'product' - Product aggregate'stdev' - Standard deviation on a sample.'stdevp' - Standard deviation on an entire population.'varp' - Variance on an entire population.'var' - Variance on a sample. Custom Aggregate
 
 
aggregates: [{ 'In Stock':
    function (aggregatedValue, currentValue) {
        if (currentValue) {
            return aggregatedValue + 1;
        }
        return aggregatedValue;
    }
}
 Custom Aggregate which aggregates values from two columns
 
 
{ text: 'Price', dataField: 'price', cellsAlign: 'right', cellsFormat: 'c2', aggregates: [{ 'Total':
            function (aggregatedValue, currentValue, column, record) {
                var total = currentValue * parseInt(record['quantity']);
                return aggregatedValue + total;
            }
        }]                  
 }
 'In Stock' - the aggregate's display name.
                                                                                            The function has 2 params - the aggregated value and the current value. It should return an aggregated value.
aggregatesRenderer - callback function which could be used for customization of the aggregates rendering. It has 1 parameter - the column's aggregates.
                                                                                            Code Example
{ text: 'Quantity', dataField: 'quantity', width: 85, cellsAlign: 'right', cellsFormat: 'n2', aggregates: ['min', 'max'],
    aggregatesRenderer: function (aggregates) {
        var renderstring = "";
        $.each(aggregates, function (key, value) {
            var name = key == 'min' ? 'Min' : 'Max';
            renderstring += '' + name + ': ' + value +'';
        });
        return renderstring;
    }
}
align - string property which determines the alignment of the column's header. Possible values: 'left', 'center' or 'right'cellsAlign - string property which determines the alignment of the column's cells. Possible values: 'left', 'center' or 'right'.width - numeric property which determines the column's width.minWidth - numeric property which determines the column's minimum width. Default value: 25.maxWidth - numeric property which determines the column's maximum width.resizable - boolean property which determines whether the column is resizable.draggable - boolean property which determines whether the column is draggable.editable - boolean property which determines whether the column is editable.className - string property which sets a custom CSS class for the column's headercellClassName - string or function property which sets a custom CSS class for the column's cells. The value could be a "String" or "Function".
                                                                                            Apply a CSS class to all cells in the column.
 
text: 'Ship Name', datafield: 'ShipName', width: 150, cellclassname: "yellowCell" 
        
 Apply a conditional CSS Class depending on the cell's value.
 
text: 'Ship Name', dataField: 'ShipName', width: 150,
cellClassName: function (row, column, value, data) {
    if (value == "Hanari Carnes") {
        return "yellowCell";
    }
}
        
pinned - boolean property which determines whether the column is pinned(frozen). Code examples
                            
                                Set the columnsproperty. $("#table").jqxDataTable({    altrows: true,    sortable: true,    columns: [        { text: 'First Name', dataField: 'First Name', width: 100 },        { text: 'Last Name', dataField: 'Last Name', width: 100 },        { text: 'Product', dataField: 'Product', width: 180 },        { text: 'Unit Price', dataField: 'Price', width: 90, align: 'right', cellsAlign: 'right', cellsFormat: 'c2' },        { text: 'Quantity', dataField: 'Quantity', width: 80, align: 'right', cellsAlign: 'right' }    ]}); | 
                
                    | columnGroups | Array | [] | 
                
                    | 
                            
                                Sets the jqxDataTable's column groups.
                             
                            The columnGroups property enables you to create a jqxDataTable with multi column headers.
                                                                                    List of properties:
                                                                                     
                                                                                        parentGroup - string property which determines the parent group's name.name - string property which determines the group's name.align - string property which determines the column header's alignment. Possible values: 'left', 'center' or 'right'. Code examples
                            
                                Set the columnGroupsproperty. // prepare the datavar source ={    dataType: "xml",    dataFields: [            { name: 'SupplierName', type: 'string' },            { name: 'Quantity', type: 'number' },            { name: 'OrderDate', type: 'date' },            { name: 'OrderAddress', type: 'string' },            { name: 'Freight', type: 'number' },            { name: 'Price', type: 'number' },            { name: 'City', type: 'string' },            { name: 'ProductName', type: 'string' },            { name: 'Address', type: 'string' }    ],     url: '../sampledata/orderdetailsextended.xml',    root: 'DATA',    record: 'ROW'};var dataAdapter = new $.jqx.dataAdapter(source, {    loadComplete: function () {    }});// create jqxDataTable.$("#dataTable").jqxDataTable({    width: 690,    height: 400,    source: dataAdapter,    pageable: true,    altRows: true,    columnsResize: true,    columns: [        { text: 'Supplier Name', cellsAlign: 'center', align: 'center', dataField: 'SupplierName', width: 110 },        { text: 'Name', columngroup: 'ProductDetails', cellsAlign: 'center', align: 'center', dataField: 'ProductName', width: 120 },        { text: 'Quantity', columngroup: 'ProductDetails', dataField: 'Quantity', cellsFormat: 'd', cellsAlign: 'center', align: 'center', width: 80 },        { text: 'Freight', columngroup: 'OrderDetails', dataField: 'Freight', cellsFormat: 'd', cellsAlign: 'center', align: 'center', width: 100 },        { text: 'Order Date', columngroup: 'OrderDetails', cellsAlign: 'center', align: 'center', cellsFormat: 'd', dataField: 'OrderDate', width: 100 },        { text: 'Order Address', columngroup: 'OrderDetails', cellsAlign: 'center', align: 'center', dataField: 'OrderAddress', width: 100 },        { text: 'Price', columngroup: 'ProductDetails', dataField: 'Price', cellsFormat: 'c2', align: 'center', cellsAlign: 'center', width: 70 },        { text: 'Address', columngroup: 'Location', cellsAlign: 'center', align: 'center', dataField: 'Address', width: 120 },        { text: 'City', columngroup: 'Location', cellsAlign: 'center', align: 'center', dataField: 'City', width: 80 }    ],    columnGroups:     [        { text: 'Product Details', align: 'center', name: 'ProductDetails' },        { text: 'Order Details', parentGroup: 'ProductDetails', align: 'center', name: 'OrderDetails' },        { text: 'Location', align: 'center', name: 'Location' }    ]}); | 
                
                    | columnsResize | Boolean | false | 
                
                    | 
                            
                                Sets or gets the jqxDataTable's columnsResize.
                             Code examples
                            
                                Set the columnsResizeproperty. $('#dataTable').jqxDataTable({columnsResize: false});
 
                                Get the columnsResizeproperty. var columnsResize = $('#dataTable').jqxDataTable('columnsResize');
 | 
                
                    | columnsReorder | Boolean | false | 
                
                    | 
                            
                                Sets or gets the jqxDataTable's columnsReorder.
                             Code examples
                            
                                Set the columnsReorderproperty. $('#dataTable').jqxDataTable({columnsReorder: false});
 
                                Get the columnsReorderproperty. var columnsReorder = $('#dataTable').jqxDataTable('columnsReorder');
 | 
                
                    | disabled | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the jqxDataTable is disabled.
                             Code examples
                            
                                Set the disabledproperty. $('#dataTable').jqxDataTable({ disabled:true }); 
 
                                Get the disabledproperty. var disabled = $('#dataTable').jqxDataTable('disabled');
 | 
                
                    | editable | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the jqxDataTable editing is enabled.
                             Code examples
                            
                                Set the editableproperty. $('#dataTable').jqxDataTable({ editable:true }); 
 
                                Get the editableproperty. var editable = $('#dataTable').jqxDataTable('editable');
 | 
                
                    | editSettings | Object | { saveOnPageChange: true, saveOnBlur: true, saveOnSelectionChange: true, cancelOnEsc: true, saveOnEnter: true, editSingleCell: false, editOnDoubleClick: true, editOnF2: true } | 
                
                    | 
                            
                                Sets or gets the jqxDataTable's edit settings.
                             Code examples
                            
                                Set the editSettingsproperty. $('#dataTable').jqxDataTable({ editSettings:{ saveOnPageChange: true, saveOnBlur: true, saveOnSelectionChange: false, cancelOnEsc: true, saveOnEnter: true, editSingleCell: false, editOnDoubleClick: true, editOnF2: true } }); 
 
                                Get the editSettingsproperty. var editSettings = $('#dataTable').jqxDataTable('editSettings');
 | 
                
                    | exportSettings | Object | { columnsHeader: true, hiddenColumns: false, serverURL: null, characterSet: null, recordsInView: true, fileName: "jqxDataTable"} | 
                
                    | 
                            
                                Determines the Data Export settings used by jqxDataTable when exportDatais called. See also theexportDatamethod. 
                            List of parameters:
                                                                                     
                                                                                        columnsHeader - determines whether to export the column's header.hiddenColumns - determines whether to export the hidden columns.serverURL - determines the URL of the save-file.php.characterSet - determines the char set.recordsInView - determines whether to export all records or to take also the filtering and sorting into account.fileName - determines the file's name. Set this to null if you want to export the data to a local variable. Code example
                            
                                Set the exportSettingsproperty. $("#dataTable").jqxDataTable({exportSettings:  { columnsHeader: true, hiddenColumns: false, serverURL: null, characterSet: null, recordsInView: true, fileName: "jqxDataTable"}});
 
                                Get the exportSettingsproperty. var exportSettings = $('#dataTable').jqxDataTable('exportSettings');
 | 
                
                    | enableHover | Boolean | true | 
                
                    | 
                            
                                Sets or gets whether row highlighting is enabled.
                             Code examples
                            
                                Set the enableHoverproperty. $('#dataTable').jqxDataTable({enableHover: false }); 
 
                                Get the enableHoverproperty. var enableHover = $('#dataTable').jqxDataTable('enableHover'); 
 | 
                
                    | enableBrowserSelection | Boolean | false | 
                
                    | 
                            
                                Enables or disables the default text selection of the web browser.
                             Code examples
                            
                                Set the enableBrowserSelectionproperty. $('#dataTable').jqxDataTable({enableBrowserSelection: true }); 
 
                                Get the enableBrowserSelectionproperty. var enableBrowserSelection = $('#dataTable').jqxDataTable('enableBrowserSelection'); 
 | 
                
                    | filterable | Boolean | false | 
                
                    | 
                            
                                Enables/Disables the filtering feature.
                             Code examples
                            
                                Set the filterableproperty. $('#dataTable').jqxDataTable({filterable: true}); 
 
                                Get the filterableproperty. var filterable = $('#dataTable').jqxDataTable('filterable'); 
 | 
                
                    | filterHeight | Number | 30 | 
                
                    | 
                            
                                Sets or gets the Filter Element's height.
                             Code examples
                            
                                Set the filterHeightproperty. $('#dataTable').jqxDataTable({filterHeight: 40}); 
 
                                Get the filterHeightproperty. var filterHeight = $('#dataTable').jqxDataTable('filterHeight'); 
 | 
                
                    | filterMode | String | "default" | 
                
                    | 
                            
                                Determines the Filter's mode. Possible values: "default","simple"and"advanced" Code examples
                            
                                Set the filterModeproperty. $('#dataTable').jqxDataTable({filterMode: "advanced"}); 
 
                                Get the filterModeproperty. var filterMode = $('#dataTable').jqxDataTable('filterMode'); 
 | 
                
                    | groups | Array | [] | 
                
                    | 
                            
                                Sets or gets the jqxDataTable's data groups. Set this property if you want to display the data grouped by a set of column(s).
                             Code examples
                            
                                Set the groupsproperty. <!DOCTYPE html><html lang="en"><head>   <title id="Description">Data Grouping in jqxDataTable</title>    <meta name="description" content="This sample demonstrates how we can Group Data by using jQWidgets DataTable.">    <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/jqxdata.js"></script>     <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdatatable.js"></script>     <script type="text/javascript" src="../../scripts/demos.js"></script>    <script type="text/javascript">        $(document).ready(function () {            // prepare the data            var source =            {                dataType: "xml",                dataFields: [                     { name: 'SupplierName', type: 'string' },                     { name: 'Quantity', type: 'number' },                     { name: 'OrderDate', type: 'date' },                     { name: 'OrderAddress', type: 'string' },                     { name: 'Freight', type: 'number' },                     { name: 'Price', type: 'number' },                     { name: 'City', type: 'string' },                     { name: 'ProductName', type: 'string' },                     { name: 'Address', type: 'string' }                ],                url: '../sampledata/orderdetailsextended.xml',                root: 'DATA',                record: 'ROW'            };            var dataAdapter = new $.jqx.dataAdapter(source, {                loadComplete: function () {                    // data is loaded.                }            });            // create jqxDataTable.            $("#dataTable").jqxDataTable(            {                source: dataAdapter,                pageable: true,                altRows: true,                sortable: true,                groups: ['SupplierName'],                width: 660,                groupsRenderer: function(value, rowData, level)                {                    return "Supplier Name: " + value;                },                columns: [                  { text: 'Supplier Name', hidden: true, cellsAlign: 'left', align: 'left', dataField: 'SupplierName', width: 180},                  { text: 'Product Name', cellsAlign: 'left', align: 'left', dataField: 'ProductName', width: 150 },                  { text: 'Quantity', dataField: 'Quantity', cellsformat: 'd', cellsAlign: 'right', align: 'right', width: 80 },                  { text: 'Price', dataField: 'Price', cellsformat: 'c2', align: 'right', cellsAlign: 'right', width: 70 },                  { text: 'Address', cellsAlign: 'center', align: 'center', dataField: 'Address', width: 250 },                  { text: 'City', cellsAlign: 'center', align: 'center', dataField: 'City' }                ]            });        });    </script></head><body class='default'>    <div id="dataTable"></div></body></html>
                                Get the groupsproperty. var groups = $('#dataTable').jqxDataTable('groups'); 
 | 
                
                    | groupsRenderer | Function | null | 
                
                    | 
                            
                                Callback function which allows you to customize the rendering of the group headers.
                             Code examples
                            
                                Set the groupsRendererproperty. <!DOCTYPE html><html lang="en"><head>   <title id="Description">Data Grouping in jqxDataTable</title>    <meta name="description" content="This sample demonstrates how we can Group Data by using jQWidgets DataTable.">    <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/jqxdata.js"></script>     <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdatatable.js"></script>     <script type="text/javascript" src="../../scripts/demos.js"></script>    <script type="text/javascript">        $(document).ready(function () {            // prepare the data            var source =            {                dataType: "xml",                dataFields: [                     { name: 'SupplierName', type: 'string' },                     { name: 'Quantity', type: 'number' },                     { name: 'OrderDate', type: 'date' },                     { name: 'OrderAddress', type: 'string' },                     { name: 'Freight', type: 'number' },                     { name: 'Price', type: 'number' },                     { name: 'City', type: 'string' },                     { name: 'ProductName', type: 'string' },                     { name: 'Address', type: 'string' }                ],                url: '../sampledata/orderdetailsextended.xml',                root: 'DATA',                record: 'ROW'            };            var dataAdapter = new $.jqx.dataAdapter(source, {                loadComplete: function () {                    // data is loaded.                }            });            // create jqxDataTable.            $("#dataTable").jqxDataTable(            {                source: dataAdapter,                pageable: true,                altRows: true,                sortable: true,                groups: ['SupplierName'],                width: 660,                groupsRenderer: function(value, rowData, level)                {                    return "Supplier Name: " + value;                },                columns: [                  { text: 'Supplier Name', hidden: true, cellsAlign: 'left', align: 'left', dataField: 'SupplierName', width: 180},                  { text: 'Product Name', cellsAlign: 'left', align: 'left', dataField: 'ProductName', width: 150 },                  { text: 'Quantity', dataField: 'Quantity', cellsformat: 'd', cellsAlign: 'right', align: 'right', width: 80 },                  { text: 'Price', dataField: 'Price', cellsformat: 'c2', align: 'right', cellsAlign: 'right', width: 70 },                  { text: 'Address', cellsAlign: 'center', align: 'center', dataField: 'Address', width: 250 },                  { text: 'City', cellsAlign: 'center', align: 'center', dataField: 'City' }                ]            });        });    </script></head><body class='default'>    <div id="dataTable"></div></body></html>
                                Get the groupsRendererproperty. var groupsRenderer = $('#dataTable').jqxDataTable('groupsRenderer'); 
 | 
                
                    | height | Number/String | null | 
                
                    | 
                            
                                Sets or gets the jqxDataTable's height.
                             Code examples
                            
                                Set the heightproperty. $('#dataTable').jqxDataTable({height:"400px"});
 
                                Get the heightproperty. var height = $('#dataTable').jqxDataTable('height');
 | 
                
                    | initRowDetails | Function | null | 
                
                    | 
                            
                                Callback function which is used for initialization of the expanded row's details. The function is called just once when the row is expanded for first time.
                             
                            List of parameters:
                                                                                     
                                                                                        id/key - expanded row's id/key.dataRow - the expanded row as a set of Key/Value pairs.element - the row's details HTML element as a jQuery selector.rowInfo - object which enables you to modify the height of the row details by setting the rowInfo's detailsHeight 
                            If  initRowDetails returns false, the row's details would be collapsed and the row's expand/collapse toggle button would be hidden.
                                                                                     Code examples
                                                                                    
                                Set the initRowDetailsproperty. <!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/jqxdata.js"></script>     <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxmenu.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdatatable.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxtabs.js"></script>    <script type="text/javascript" src="../../scripts/demos.js"></script>    <script type="text/javascript">        $(document).ready(function () {            // prepare the data            var data = new Array();            var firstNames = ["Nancy", "Andrew", "Janet", "Margaret", "Steven", "Michael", "Robert", "Laura", "Anne"];            var lastNames = ["Davolio", "Fuller", "Leverling", "Peacock", "Buchanan", "Suyama", "King", "Callahan", "Dodsworth"];            var titles = ["Sales Representative", "Vice President, Sales", "Sales Representative", "Sales Representative", "Sales Manager", "Sales Representative", "Sales Representative", "Inside Sales Coordinator", "Sales Representative"];            var titleofcourtesy = ["Ms.", "Dr.", "Ms.", "Mrs.", "Mr.", "Mr.", "Mr.", "Ms.", "Ms."];            var birthdate = ["08-Dec-48", "19-Feb-52", "30-Aug-63", "19-Sep-37", "04-Mar-55", "02-Jul-63", "29-May-60", "09-Jan-58", "27-Jan-66"];            var hiredate = ["01-May-92", "14-Aug-92", "01-Apr-92", "03-May-93", "17-Oct-93", "17-Oct-93", "02-Jan-94", "05-Mar-94", "15-Nov-94"];            var address = ["507 - 20th Ave. E. Apt. 2A", "908 W. Capital Way", "722 Moss Bay Blvd.", "4110 Old Redmond Rd.", "14 Garrett Hill", "Coventry House", "Miner Rd.", "Edgeham Hollow", "Winchester Way", "4726 - 11th Ave. N.E.", "7 Houndstooth Rd."];            var city = ["Seattle", "Tacoma", "Kirkland", "Redmond", "London", "London", "London", "Seattle", "London"];            var postalcode = ["98122", "98401", "98033", "98052", "SW1 8JR", "EC2 7JR", "RG1 9SP", "98105", "WG2 7LT"];            var country = ["USA", "USA", "USA", "USA", "UK", "UK", "UK", "USA", "UK"];            var homephone = ["(206) 555-9857", "(206) 555-9482", "(206) 555-3412", "(206) 555-8122", "(71) 555-4848", "(71) 555-7773", "(71) 555-5598", "(206) 555-1189", "(71) 555-4444"];            var notes = ["Education includes a BA in psychology from Colorado State University in 1970.  She also completed 'The Art of the Cold Call.'  Nancy is a member of Toastmasters International.",                "Andrew received his BTS commercial in 1974 and a Ph.D. in international marketing from the University of Dallas in 1981.  He is fluent in French and Italian and reads German.  He joined the company as a sales representative, was promoted to sales manager in January 1992 and to vice president of sales in March 1993.  Andrew is a member of the Sales Management Roundtable, the Seattle Chamber of Commerce, and the Pacific Rim Importers Association.",                "Janet has a BS degree in chemistry from Boston College (1984).  She has also completed a certificate program in food retailing management.  Janet was hired as a sales associate in 1991 and promoted to sales representative in February 1992.",                "Margaret holds a BA in English literature from Concordia College (1958) and an MA from the American Institute of Culinary Arts (1966).  She was assigned to the London office temporarily from July through November 1992.",                "Steven Buchanan graduated from St. Andrews University, Scotland, with a BSC degree in 1976.  Upon joining the company as a sales representative in 1992, he spent 6 months in an orientation program at the Seattle office and then returned to his permanent post in London.  He was promoted to sales manager in March 1993.  Mr. Buchanan has completed the courses 'Successful Telemarketing' and 'International Sales Management.'  He is fluent in French.",                "Michael is a graduate of Sussex University (MA, economics, 1983) and the University of California at Los Angeles (MBA, marketing, 1986).  He has also taken the courses 'Multi-Cultural Selling' and 'Time Management for the Sales Professional.'  He is fluent in Japanese and can read and write French, Portuguese, and Spanish.",                "Robert King served in the Peace Corps and traveled extensively before completing his degree in English at the University of Michigan in 1992, the year he joined the company.  After completing a course entitled 'Selling in Europe,' he was transferred to the London office in March 1993.",                "Laura received a BA in psychology from the University of Washington.  She has also completed a course in business French.  She reads and writes French.",                "Anne has a BA degree in English from St. Lawrence College.  She is fluent in French and German."];            var k = 0;            for (var i = 0; i < firstNames.length; i++) {                var row = {};                row["firstname"] = firstNames[k];                row["lastname"] = lastNames[k];                row["title"] = titles[k];                row["titleofcourtesy"] = titleofcourtesy[k];                row["birthdate"] = birthdate[k];                row["hiredate"] = hiredate[k];                row["address"] = address[k];                row["city"] = city[k];                row["postalcode"] = postalcode[k];                row["country"] = country[k];                row["homephone"] = homephone[k];                row["notes"] = notes[k];                data[i] = row;                k++;            }            var source =            {                localData: data,                dataType: "array"            };            // initialize the row details.            var initRowDetails = function (id, row, element, rowinfo) {                var tabsdiv = null;                var information = null;                var notes = null;                // update the details height.                rowinfo.detailsHeight = 200;                element.append($("<div style='margin: 10px;'><ul style='margin-left: 30px;'><li class='title'>Title</li><li>Notes</li></ul><div class='information'></div><div class='notes'></div></div>"));                tabsdiv = $(element.children()[0]);                             if (tabsdiv != null) {                    information = tabsdiv.find('.information');                    notes = tabsdiv.find('.notes');                    var title = tabsdiv.find('.title');                    title.text(row.firstname);                    var container = $('<div style="margin: 5px;"></div>')                    container.appendTo($(information));                    var photocolumn = $('<div style="float: left; width: 15%;"></div>');                    var leftcolumn = $('<div style="float: left; width: 45%;"></div>');                    var rightcolumn = $('<div style="float: left; width: 40%;"></div>');                    container.append(photocolumn);                    container.append(leftcolumn);                    container.append(rightcolumn);                    var photo = $("<div class='jqx-rc-all' style='margin: 10px;'><b>Photo:</b></div>");                    var image = $("<div style='margin-top: 10px;'></div>");                    var imgurl = '../../images/' + row.firstname.toLowerCase() + '.png';                    var img = $('<img height="60" src="' + imgurl + '"/>');                    image.append(img);                    image.appendTo(photo);                    photocolumn.append(photo);                    var firstname = "<div style='margin: 10px;'><b>First Name:</b> " + row.firstname + "</div>";                    var lastname = "<div style='margin: 10px;'><b>Last Name:</b> " + row.lastname + "</div>";                    var title = "<div style='margin: 10px;'><b>Title:</b> " + row.title + "</div>";                    var address = "<div style='margin: 10px;'><b>Address:</b> " + row.address + "</div>";                    $(leftcolumn).append(firstname);                    $(leftcolumn).append(lastname);                    $(leftcolumn).append(title);                    $(leftcolumn).append(address);                    var postalcode = "<div style='margin: 10px;'><b>Postal Code:</b> " + row.postalcode + "</div>";                    var city = "<div style='margin: 10px;'><b>City:</b> " + row.city + "</div>";                    var phone = "<div style='margin: 10px;'><b>Phone:</b> " + row.homephone + "</div>";                    var hiredate = "<div style='margin: 10px;'><b>Hire Date:</b> " + row.hiredate + "</div>";                    $(rightcolumn).append(postalcode);                    $(rightcolumn).append(city);                    $(rightcolumn).append(phone);                    $(rightcolumn).append(hiredate);                    var notescontainer = $('<div style="white-space: normal; margin: 5px;"><span>' + row.notes + '</span></div>');                    $(notes).append(notescontainer);                    $(tabsdiv).jqxTabs({ width: 600, height: 170 });                }            }            var dataAdapter = new $.jqx.dataAdapter(source);            $("#dataTable").jqxDataTable(            {                width: 632,                source: dataAdapter,                pageable: true,                pageSize: 3,                rowDetails: true,                sortable: true,                ready: function () {                    // expand the first details.                    $("#dataTable").jqxDataTable('showDetails', 0);                },                initRowDetails: initRowDetails,                columns: [                      { text: 'First Name', dataField: 'firstname', width: 100 },                      { text: 'Last Name', dataField: 'lastname', width: 100 },                      { text: 'Title', dataField: 'title', width: 180 },                      { text: 'City', dataField: 'city', width: 100 },                      { text: 'Country', dataField: 'country'}                ]            });        });    </script></head><body class='default'>      <div id="dataTable"></div></body></html>
                                Get the initRowDetailsproperty. var initRowDetails = $('#dataTable').jqxDataTable('initRowDetails');
 | 
                
                    | incrementalSearch | Boolean | true | 
                
                    | 
                            
                                Determines whether the incremental search is enabled. The feature allows you to quickly find and select data records by typing when the widget is on focus.
                             Code examples
                            
                                Set the incrementalSearchproperty. $('#dataTable').jqxDataTable({incrementalSearch:false});
 
                                Get the incrementalSearchproperty. var incrementalSearch = $('#dataTable').jqxDataTable('incrementalSearch');
 | 
                
                    | localization | Object | default localization strings. | 
                
                    | 
                            
                                Applies a localization to the jqxDataTable's Strings.
                             
                            Default localization object:
                                                                                    
                             {                   // separator of parts of a date (e.g. '/' in 11/05/1955)	'/': "/",	// separator of parts of a time (e.g. ':' in 05:44 PM)	':': ":",	// the first day of the week (0 = Sunday, 1 = Monday, etc)	firstDay: 0,	days: {		// full day names		names: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],		// abbreviated day names		namesAbbr: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],		// shortest day names		namesShort: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]	},	months: {		// full month names (13 months for lunar calendards -- 13th month should be "" if not lunar)		names: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December", ""],		// abbreviated month names		namesAbbr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", ""]	},	// AM and PM designators in one of these forms:	// The usual view, and the upper and lower case versions	//      [standard,lowercase,uppercase]	// The culture does not use AM or PM (likely all standard date formats use 24 hour time)	//      null	AM: ["AM", "am", "AM"],	PM: ["PM", "pm", "PM"],	eras: [	// eras in reverse chronological order.	// name: the name of the era in this culture (e.g. A.D., C.E.)	// start: when the era starts in ticks (gregorian, gmt), null if it is the earliest supported era.	// offset: offset in years from gregorian calendar	{ "name": "A.D.", "start": null, "offset": 0 }	],	twoDigitYearMax: 2029,	patterns: {		// short date pattern		d: "M/d/yyyy",		// long date pattern		D: "dddd, MMMM dd, yyyy",		// short time pattern		t: "h:mm tt",		// long time pattern		T: "h:mm:ss tt",		// long date, short time pattern		f: "dddd, MMMM dd, yyyy h:mm tt",		// long date, long time pattern		F: "dddd, MMMM dd, yyyy h:mm:ss tt",		// month/day pattern		M: "MMMM dd",		// month/year pattern		Y: "yyyy MMMM",		// S is a sortable format that does not vary by culture		S: "yyyy\u0027-\u0027MM\u0027-\u0027dd\u0027T\u0027HH\u0027:\u0027mm\u0027:\u0027ss",		// formatting of dates in MySQL DataBases		ISO: "yyyy-MM-dd hh:mm:ss",		ISO2: "yyyy-MM-dd HH:mm:ss",		d1: "dd.MM.yyyy",		d2: "dd-MM-yyyy",		d3: "dd-MMMM-yyyy",		d4: "dd-MM-yy",		d5: "H:mm",		d6: "HH:mm",		d7: "HH:mm tt",		d8: "dd/MMMM/yyyy",		d9: "MMMM-dd",		d10: "MM-dd",		d11: "MM-dd-yyyy"	},	percentSymbol: "%",	currencySymbol: "$",	currencySymbolposition: "before",	decimalSeparator: '.',	thousandsSeparator: ',',	pagerGoToPageString: "Go to page:",	pagerShowRowsString: "Show rows:",	pagerRangeString: " of ",	pagerPreviousButtonString: "previous",	pagerNextButtonString: "next",	pagerFirstButtonsSring: "first",	pagerLastButtonString:"last",	filterApplyString: "Apply",	filterCancelString: "Cancel",	filterClearString: "Clear Filter",	filterString: "advanced",	filterSearchString: "Search:",	filterStringComparisonOperators: ['empty', 'not empty', 'contains', 'contains(match case)',	   'does not contain', 'does not contain(match case)', 'starts with', 'starts with(match case)',	   'ends with', 'ends with(match case)', 'equal', 'equal(match case)', 'null', 'not null'],	filterNumericComparisonOperators: ['equal', 'not equal', 'less than', 'less than or equal', 'greater than', 'greater than or equal', 'null', 'not null'],	filterDateComparisonOperators: ['equal', 'not equal', 'less than', 'less than or equal', 'greater than', 'greater than or equal', 'null', 'not null'],	filterBooleanComparisoOoperators: ['equal', 'not equal'],	validationString: "Entered value is not valid",	emptyDataString: "No data to display",	filterSelectString: "Select Filter",	loadText: "Loading...",	clearString: "Clear",	todayString: "Today",	loadingErrorMessage: "The data is still loading and you cannot set a property or call a method. You can do that once the data binding is completed. jqxDataTable raises the 'bindingComplete' event when the binding is completed."           };Code examples
                            
                                Set the localizationproperty. <!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/jqxdata.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxlistbox.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdropdownlist.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxmenu.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxpanel.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxcalendar.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdatetimeinput.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdatatable.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxnumberinput.js"></script>    <script type="text/javascript" src="../../scripts/demos.js"></script>    <script type="text/javascript" src="../../jqwidgets/globalization/globalize.js"></script>    <script type="text/javascript" src="../sampledata/generatedata.js"></script>    <script type="text/javascript">        $(document).ready(function () {            var data = generatedata(250);            var source =            {                localdata: data,                dataFields:                [                    { name: 'name', type: 'string' },                    { name: 'productname', type: 'string' },                    { name: 'available', type: 'bool' },                    { name: 'date', type: 'date'},                    { name: 'quantity', type: 'number' },                    { name: 'price', type: 'number' }                ],                datatype: "array"            };            var dataAdapter = new $.jqx.dataAdapter(source);            var getLocalization = function () {                var localizationobj = {};                localizationobj.pagerGoToPageString = "Gehe zu:";                localizationobj.pagerShowRowsString = "Zeige Zeile:";                localizationobj.pagerRangeString = " von ";                localizationobj.pagerNextButtonString = "voriger";                localizationobj.pagerFirstButtonString = "first";                localizationobj.pagerLastButtonString = "last";                localizationobj.pagerPreviousButtonString = "nächster";                localizationobj.sortAscendingString = "Sortiere aufsteigend";                localizationobj.sortDescendingString = "Sortiere absteigend";                localizationobj.sortRemoveString = "Entferne Sortierung";                localizationobj.firstDay = 1;                localizationobj.percentSymbol = "%";                localizationobj.currencySymbol = "€";                localizationobj.currencySymbolPosition = "after";                localizationobj.decimalSeparator = ".";                localizationobj.thousandsSeparator = ",";                var days = {                    // full day names                    names: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"],                    // abbreviated day names                    namesAbbr: ["Sonn", "Mon", "Dien", "Mitt", "Donn", "Fre", "Sams"],                    // shortest day names                    namesShort: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"]                };                localizationobj.days = days;                var months = {                    // full month names (13 months for lunar calendards -- 13th month should be "" if not lunar)                    names: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember", ""],                    // abbreviated month names                    namesAbbr: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dez", ""]                };                var patterns = {                    d: "dd.MM.yyyy",                    D: "dddd, d. MMMM yyyy",                    t: "HH:mm",                    T: "HH:mm:ss",                    f: "dddd, d. MMMM yyyy HH:mm",                    F: "dddd, d. MMMM yyyy HH:mm:ss",                    M: "dd MMMM",                    Y: "MMMM yyyy"                }                localizationobj.patterns = patterns;                localizationobj.months = months;                return localizationobj;            }            $("#dataTable").jqxDataTable(            {                width: 685,                source: dataAdapter,                filterable: true,                pageable: true,                editable: true,                localization: getLocalization(),                columns: [                  { text: 'Name', dataField: 'name', width: 115 },                  { text: 'Produkt', dataField: 'productname', width: 220 },                  { text: 'Datum', dataField: 'date', width: 210, cellsAlign: 'right', cellsFormat: 'd'},                  { text: 'Qt.', dataField: 'quantity', cellsAlign: 'right', width: 60 },                  { text: 'Preis', dataField: 'price', cellsFormat: "c2", cellsAlign: 'right' }                ]            });        });    </script></head><body class='default'>    <div id="dataTable">    </div></body></html>
                                Get the localizationproperty. var localization = $('#dataTable').jqxDataTable('localization');
 | 
                
                    | pagerHeight | Number | 28 | 
                
                    | 
                            
                                Sets or gets the height of the jqxDataTable's Pager(s). Pager(s) is(are) displayed after setting pageableto true. Code examples
                            
                                Set the pagerHeightproperty. $('#dataTable').jqxDataTable({ pagerHeight: 35 }); 
 
                                Get the pagerHeightproperty. var pagerHeight = $('#dataTable').jqxDataTable('pagerHeight'); 
 | 
                
                    | pageSize | Number | 10 | 
                
                    | 
                            
                                Sets or gets the rows count per page when paging is enabled.
                             Code examples
                            
                                Set the pageSizeproperty. $('#dataTable').jqxDataTable({ pageSize: 20 }); 
 
                                Get the pageSizeproperty. var pageSize = $('#dataTable').jqxDataTable('pageSize'); 
 | 
                
                    | pageSizeOptions | Array | ['5', '10', '20'] | 
                
                    | 
                            
                                Sets or gets the jqxDataTable's page size options when paging is enabled and the pagerModeproperty is set to"advanced". Code examples
                            
                                Set the pageSizeOptionsproperty. $('#dataTable').jqxDataTable({ pageSizeOptions: ['15', '20', '30'] }); 
 
                                Get the pageSizeOptionsproperty. var pageSizeOptions = $('#dataTable').jqxDataTable('pageSizeOptions'); 
 | 
                
                    | pageable | Boolean | false | 
                
                    | 
                            
                                Determines whether the jqxDataTable is in paging mode.
                             Code examples
                            
                                Set the pageableproperty. $('#dataTable').jqxDataTable({ pageable:true }); 
 
                                Get the pageableproperty. var pageable = $('#dataTable').jqxDataTable('pageable'); 
 | 
                
                    | pagerPosition | String | "bottom" | 
                
                    | 
                            
                                Sets or gets the Pager's position. Possible values: 'top','bottom'and'both' Code examples
                            
                                Set the pagerPositionproperty. $('#dataTable').jqxDataTable({ pagerPosition:'top' }); 
 
                                Get the pagerPositionproperty. var hasThreeStates = $('#dataTable').jqxDataTable('pagerPosition'); 
 | 
                
                    | pagerMode | String | "default" | 
                
                    | 
                            
                                Sets or gets the Pager's mode. Possible values: "default"and"advanced" Code examples
                            
                                Set the pagerModeproperty. $('#dataTable').jqxDataTable({pagerMode: "advanced" }); 
 
                                Get the pagerModeproperty. var pagerMode = $('#dataTable').jqxDataTable('pagerMode'); 
 | 
                
                    | pagerButtonsCount | Number | 5 | 
                
                    | 
                            
                                Sets or gets the count of the buttons displayed on the Pager when pagerModeis set to"default". Code examples
                            
                                Set the pagerButtonsCountproperty. $('#dataTable').jqxDataTable({pagerButtonsCount: 10 }); 
 
                                Get the pagerButtonsCountproperty. var pagerButtonsCount = $('#dataTable').jqxDataTable('pagerButtonsCount'); 
 | 
                
                    | pagerRenderer | Function | null | 
                
                    | 
                            
                                Enables custom rendering of the Pager.
                             Code examples
                            
                                Set the pagerRendererproperty. $('#dataTable').jqxDataTable({pagerRenderer: function(){"do something here and return a HTML Element as a result." }); 
 
                                Get the pagerRendererproperty. var pagerRenderer = $('#dataTable').jqxDataTable('pagerRenderer'); 
 | 
                
                    | ready | Function | null | 
                
                    | 
                            
                                Callback function which is called when the jqxDataTable is rendered and data binding is completed..
                             Code examples
                            
                                Set the readyproperty. $('#dataTable').jqxDataTable({ready:function(){ // your code here.}});
 
                                Get the readyproperty. var ready = $('#dataTable').jqxDataTable('ready');
 | 
                
                    | rowDetails | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the jqxDataTable rows have details and can be expanded/collapsed. See the initRowDetailsfor initialization of the row details. Code examples
                            
                                Set the rowDetailsproperty. $('#dataTable').jqxDataTable({rowDetails: true});
 
                                Get the rowDetailsproperty. var rowDetails = $('#dataTable').jqxDataTable('rowDetails');
 | 
                
                    | renderToolbar | Function | null | 
                
                    | 
                            
                                Enables custom rendering of the Toolbar.
                             Code examples
                            
                                Set the renderToolbarproperty. $('#dataTable').jqxDataTable({renderToolbar: function(toolBar){"toolBar - The jQuery selection of the Toolbar HTML Element" }); 
 
                                Get the renderToolbarproperty. var renderToolbar = $('#dataTable').jqxDataTable('renderToolbar'); 
 | 
                
                    | renderStatusbar | Function | null | 
                
                    | 
                            
                                Enables custom rendering of the Statusbar.
                             Code examples
                            
                                Set the renderStatusbarproperty. $('#dataTable').jqxDataTable({renderStatusbar: function(statusBar){"statusBar - The jQuery selection of the Statusbar HTML Element" }); 
 
                                Get the renderStatusbarproperty. var renderStatusbar = $('#dataTable').jqxDataTable('renderStatusbar'); 
 | 
                
                    | rendering | Function | null | 
                
                    | 
                            
                                Callback function which is called before the rendering of the jqxDataTable's rows.
                             Code examples
                            
                                Set the renderingproperty. <!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/jqxscrollbar.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdatatable.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxlistbox.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdropdownlist.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdata.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxtooltip.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxinput.js"></script>    <script type="text/javascript" src="../../scripts/demos.js"></script>    <script type="text/javascript">        var that = this;        $(document).ready(function () {            var orderdetailsurl = "../sampledata/orderdetails.xml";            var ordersSource =            {                dataFields: [                    { name: 'OrderID', type: 'int' },                    { name: 'Freight', type: 'float' },                    { name: 'ShipName', type: 'string' },                    { name: 'ShipAddress', type: 'string' },                    { name: 'ShipCity', type: 'string' },                    { name: 'ShipCountry', type: 'string' },                    { name: 'ShippedDate', type: 'date' }                ],                root: "Orders",                record: "Order",                dataType: "xml",                id: 'OrderID',                url: orderdetailsurl,                addRow: function (rowID, rowData, position, commit) {                    // synchronize with the server - send insert command                    // call commit with parameter true if the synchronization with the server is successful                     // and with parameter false if the synchronization failed.                    // you can pass additional argument to the commit callback which represents the new ID if it is generated from a DB.                    commit(true);                },                updateRow: function (rowID, rowData, commit) {                    // synchronize with the server - send update command                    // call commit with parameter true if the synchronization with the server is successful                     // and with parameter false if the synchronization failed.                    commit(true);                },                deleteRow: function (rowID, commit) {                    // synchronize with the server - send delete command                    // call commit with parameter true if the synchronization with the server is successful                     // and with parameter false if the synchronization failed.                    commit(true);                }            };            var dataAdapter = new $.jqx.dataAdapter(ordersSource, {                loadComplete: function () {                    // data is loaded.                }            });            this.editrow = -1;                     $("#dataTable").jqxDataTable(            {                width: 670,                source: dataAdapter,                pageable: true,                sortable: true,                altrows: true,                editable: true,                editSettings: { saveOnPageChange: true, saveOnBlur: true, saveOnSelectionChange: false, cancelOnEsc: true, saveOnEnter: true, editOnDoubleClick: false, editOnF2: false },                // called when jqxDataTable is going to be rendered.                rendering: function()                {                    // destroys all buttons.                    if ($(".editButtons").length > 0) {                        $(".editButtons").jqxButton('destroy');                    }                    if ($(".cancelButtons").length > 0) {                        $(".cancelButtons").jqxButton('destroy');                    }                },                // called when jqxDataTable is rendered.                rendered: function () {                    if ($(".editButtons").length > 0) {                        $(".cancelButtons").jqxButton();                        $(".editButtons").jqxButton();                                                var editClick = function (event) {                            var target = $(event.target);                            // get button's value.                            var value = target.val();                            // get clicked row.                            var rowIndex = parseInt(event.target.getAttribute('data-row'));                            if (isNaN(rowIndex)) {                                return;                            }                            if (value == "Edit") {                                // begin edit.                                $("#dataTable").jqxDataTable('beginRowEdit', rowIndex);                                target.parent().find('.cancelButtons').show();                                target.val("Save");                            }                            else {                                // end edit and save changes.                                target.parent().find('.cancelButtons').hide();                                target.val("Edit");                                $("#dataTable").jqxDataTable('endRowEdit', rowIndex);                            }                        }                        $(".editButtons").on('click', function (event) {                            editClick(event);                        });                                         $(".cancelButtons").click(function (event) {                            // end edit and cancel changes.                            var rowIndex = parseInt(event.target.getAttribute('data-row'));                            if (isNaN(rowIndex)) {                                return;                            }                            $("#dataTable").jqxDataTable('endRowEdit', rowIndex, true);                        });                    }                },                pagerButtonsCount: 8,                columns: [                  { text: 'Order ID', editable: false, dataField: 'OrderID', width: 100 },                  { text: 'Freight', dataField: 'Freight', cellsFormat: 'f2', cellsAlign: 'right', align: 'right', width: 100 },                  {                      text: 'Ship Country', dataField: 'ShipCountry', width: 150,                      columnType: 'custom',                      createEditor: function (row, cellValue, editor, width, height) {                          // create jqxInput editor.                          var textBox = $("<input style='padding-left: 4px; box-sizing: border-box; -moz-box-sizing: border-box; border: none;'/>").appendTo(editor);;                          var countries = new Array("Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Antarctica", "Antigua and Barbuda", "Argentina", "Armenia", "Australia", "Austria", "Azerbaijan", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belarus", "Belgium", "Belize", "Benin", "Bermuda", "Bhutan", "Bolivia", "Bosnia and Herzegovina", "Botswana", "Brazil", "Brunei", "Bulgaria", "Burkina Faso", "Burma", "Burundi", "Cambodia", "Cameroon", "Canada", "Cape Verde", "Central African Republic", "Chad", "Chile", "China", "Colombia", "Comoros", "Congo, Democratic Republic", "Congo, Republic of the", "Costa Rica", "Cote d'Ivoire", "Croatia", "Cuba", "Cyprus", "Czech Republic", "Denmark", "Djibouti", "Dominica", "Dominican Republic", "East Timor", "Ecuador", "Egypt", "El Salvador", "Equatorial Guinea", "Eritrea", "Estonia", "Ethiopia", "Fiji", "Finland", "France", "Gabon", "Gambia", "Georgia", "Germany", "Ghana", "Greece", "Greenland", "Grenada", "Guatemala", "Guinea", "Guinea-Bissau", "Guyana", "Haiti", "Honduras", "Hong Kong", "Hungary", "Iceland", "India", "Indonesia", "Iran", "Iraq", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kiribati", "Korea, North", "Korea, South", "Kuwait", "Kyrgyzstan", "Laos", "Latvia", "Lebanon", "Lesotho", "Liberia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macedonia", "Madagascar", "Malawi", "Malaysia", "Maldives", "Mali", "Malta", "Marshall Islands", "Mauritania", "Mauritius", "Mexico", "Micronesia", "Moldova", "Mongolia", "Morocco", "Monaco", "Mozambique", "Namibia", "Nauru", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Niger", "Nigeria", "Norway", "Oman", "Pakistan", "Panama", "Papua New Guinea", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Qatar", "Romania", "Russia", "Rwanda", "Samoa", "San Marino", " Sao Tome", "Saudi Arabia", "Senegal", "Serbia and Montenegro", "Seychelles", "Sierra Leone", "Singapore", "Slovakia", "Slovenia", "Solomon Islands", "Somalia", "South Africa", "Spain", "Sri Lanka", "Sudan", "Suriname", "Swaziland", "Sweden", "Switzerland", "Syria", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Togo", "Tonga", "Trinidad and Tobago", "Tunisia", "Turkey", "Turkmenistan", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Vanuatu", "Venezuela", "Vietnam", "Yemen", "Zambia", "Zimbabwe");                          textBox.jqxInput({ source: countries, width: '100%', height: '100%' });                          textBox.val(cellValue);                      },                      initEditor: function (row, cellValue, editor) {                          // set jqxInput editor's initial value.                          editor.find('input').val(cellValue);                      },                      getEditorValue: function (index, value, editor) {                          // get jqxInput editor's value.                          return editor.find('input').val();                      }                  },                  { text: 'Shipped Date', dataField: 'ShippedDate', cellsAlign: 'right', align: 'right', cellsFormat: 'd', width: 200 },                  {                      text: 'Edit', cellsAlign: 'center', align: "center", columnType: 'none', editable: false, sortable: false, dataField: null, cellsRenderer: function (row, column, value) {                          // render custom column.                          return "<button data-row='" + row + "' class='editButtons'>Edit</button><button style='display: none; margin-left: 5px;' data-row='" + row + "' class='cancelButtons'>Cancel</button>";                      }                  }                ]            });        });    </script></head><body class='default'>    <div id="dataTable">    </div></body></html>
                                Get the renderingproperty. var renderer = $('#dataTable').jqxDataTable('renderer'); 
 | 
                
                    | rendered | Function | null | 
                
                    | 
                            
                                Callback function which is called after the rendering of the jqxDataTable's row.
                             Code examples
                            
                                Set the renderedproperty. <!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/jqxscrollbar.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdatatable.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxlistbox.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdropdownlist.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdata.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxtooltip.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxinput.js"></script>    <script type="text/javascript" src="../../scripts/demos.js"></script>    <script type="text/javascript">        var that = this;        $(document).ready(function () {            var orderdetailsurl = "../sampledata/orderdetails.xml";            var ordersSource =            {                dataFields: [                    { name: 'OrderID', type: 'int' },                    { name: 'Freight', type: 'float' },                    { name: 'ShipName', type: 'string' },                    { name: 'ShipAddress', type: 'string' },                    { name: 'ShipCity', type: 'string' },                    { name: 'ShipCountry', type: 'string' },                    { name: 'ShippedDate', type: 'date' }                ],                root: "Orders",                record: "Order",                dataType: "xml",                id: 'OrderID',                url: orderdetailsurl,                addRow: function (rowID, rowData, position, commit) {                    // synchronize with the server - send insert command                    // call commit with parameter true if the synchronization with the server is successful                     // and with parameter false if the synchronization failed.                    // you can pass additional argument to the commit callback which represents the new ID if it is generated from a DB.                    commit(true);                },                updateRow: function (rowID, rowData, commit) {                    // synchronize with the server - send update command                    // call commit with parameter true if the synchronization with the server is successful                     // and with parameter false if the synchronization failed.                    commit(true);                },                deleteRow: function (rowID, commit) {                    // synchronize with the server - send delete command                    // call commit with parameter true if the synchronization with the server is successful                     // and with parameter false if the synchronization failed.                    commit(true);                }            };            var dataAdapter = new $.jqx.dataAdapter(ordersSource, {                loadComplete: function () {                    // data is loaded.                }            });            this.editrow = -1;                     $("#dataTable").jqxDataTable(            {                width: 670,                source: dataAdapter,                pageable: true,                sortable: true,                altrows: true,                editable: true,                editSettings: { saveOnPageChange: true, saveOnBlur: true, saveOnSelectionChange: false, cancelOnEsc: true, saveOnEnter: true, editOnDoubleClick: false, editOnF2: false },                // called when jqxDataTable is going to be rendered.                rendering: function()                {                    // destroys all buttons.                    if ($(".editButtons").length > 0) {                        $(".editButtons").jqxButton('destroy');                    }                    if ($(".cancelButtons").length > 0) {                        $(".cancelButtons").jqxButton('destroy');                    }                },                // called when jqxDataTable is rendered.                rendered: function () {                    if ($(".editButtons").length > 0) {                        $(".cancelButtons").jqxButton();                        $(".editButtons").jqxButton();                                                var editClick = function (event) {                            var target = $(event.target);                            // get button's value.                            var value = target.val();                            // get clicked row.                            var rowIndex = parseInt(event.target.getAttribute('data-row'));                            if (isNaN(rowIndex)) {                                return;                            }                            if (value == "Edit") {                                // begin edit.                                $("#dataTable").jqxDataTable('beginRowEdit', rowIndex);                                target.parent().find('.cancelButtons').show();                                target.val("Save");                            }                            else {                                // end edit and save changes.                                target.parent().find('.cancelButtons').hide();                                target.val("Edit");                                $("#dataTable").jqxDataTable('endRowEdit', rowIndex);                            }                        }                        $(".editButtons").on('click', function (event) {                            editClick(event);                        });                                         $(".cancelButtons").click(function (event) {                            // end edit and cancel changes.                            var rowIndex = parseInt(event.target.getAttribute('data-row'));                            if (isNaN(rowIndex)) {                                return;                            }                            $("#dataTable").jqxDataTable('endRowEdit', rowIndex, true);                        });                    }                },                pagerButtonsCount: 8,                columns: [                  { text: 'Order ID', editable: false, dataField: 'OrderID', width: 100 },                  { text: 'Freight', dataField: 'Freight', cellsFormat: 'f2', cellsAlign: 'right', align: 'right', width: 100 },                  {                      text: 'Ship Country', dataField: 'ShipCountry', width: 150,                      columnType: 'custom',                      createEditor: function (row, cellValue, editor, width, height) {                          // create jqxInput editor.                          var textBox = $("<input style='padding-left: 4px; box-sizing: border-box; -moz-box-sizing: border-box; border: none;'/>").appendTo(editor);;                          var countries = new Array("Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Antarctica", "Antigua and Barbuda", "Argentina", "Armenia", "Australia", "Austria", "Azerbaijan", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belarus", "Belgium", "Belize", "Benin", "Bermuda", "Bhutan", "Bolivia", "Bosnia and Herzegovina", "Botswana", "Brazil", "Brunei", "Bulgaria", "Burkina Faso", "Burma", "Burundi", "Cambodia", "Cameroon", "Canada", "Cape Verde", "Central African Republic", "Chad", "Chile", "China", "Colombia", "Comoros", "Congo, Democratic Republic", "Congo, Republic of the", "Costa Rica", "Cote d'Ivoire", "Croatia", "Cuba", "Cyprus", "Czech Republic", "Denmark", "Djibouti", "Dominica", "Dominican Republic", "East Timor", "Ecuador", "Egypt", "El Salvador", "Equatorial Guinea", "Eritrea", "Estonia", "Ethiopia", "Fiji", "Finland", "France", "Gabon", "Gambia", "Georgia", "Germany", "Ghana", "Greece", "Greenland", "Grenada", "Guatemala", "Guinea", "Guinea-Bissau", "Guyana", "Haiti", "Honduras", "Hong Kong", "Hungary", "Iceland", "India", "Indonesia", "Iran", "Iraq", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kiribati", "Korea, North", "Korea, South", "Kuwait", "Kyrgyzstan", "Laos", "Latvia", "Lebanon", "Lesotho", "Liberia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macedonia", "Madagascar", "Malawi", "Malaysia", "Maldives", "Mali", "Malta", "Marshall Islands", "Mauritania", "Mauritius", "Mexico", "Micronesia", "Moldova", "Mongolia", "Morocco", "Monaco", "Mozambique", "Namibia", "Nauru", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Niger", "Nigeria", "Norway", "Oman", "Pakistan", "Panama", "Papua New Guinea", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Qatar", "Romania", "Russia", "Rwanda", "Samoa", "San Marino", " Sao Tome", "Saudi Arabia", "Senegal", "Serbia and Montenegro", "Seychelles", "Sierra Leone", "Singapore", "Slovakia", "Slovenia", "Solomon Islands", "Somalia", "South Africa", "Spain", "Sri Lanka", "Sudan", "Suriname", "Swaziland", "Sweden", "Switzerland", "Syria", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Togo", "Tonga", "Trinidad and Tobago", "Tunisia", "Turkey", "Turkmenistan", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Vanuatu", "Venezuela", "Vietnam", "Yemen", "Zambia", "Zimbabwe");                          textBox.jqxInput({ source: countries, width: '100%', height: '100%' });                          textBox.val(cellValue);                      },                      initEditor: function (row, cellValue, editor) {                          // set jqxInput editor's initial value.                          editor.find('input').val(cellValue);                      },                      getEditorValue: function (index, value, editor) {                          // get jqxInput editor's value.                          return editor.find('input').val();                      }                  },                  { text: 'Shipped Date', dataField: 'ShippedDate', cellsAlign: 'right', align: 'right', cellsFormat: 'd', width: 200 },                  {                      text: 'Edit', cellsAlign: 'center', align: "center", columnType: 'none', editable: false, sortable: false, dataField: null, cellsRenderer: function (row, column, value) {                          // render custom column.                          return "<button data-row='" + row + "' class='editButtons'>Edit</button><button style='display: none; margin-left: 5px;' data-row='" + row + "' class='cancelButtons'>Cancel</button>";                      }                  }                ]            });        });    </script></head><body class='default'>    <div id="dataTable">    </div></body></html>
                                Get the renderedproperty. var rendered = $('#dataTable').jqxDataTable('rendered'); 
 | 
                
                    | rtl | Boolean | false | 
                
                    | 
                            Sets or gets a value indicating whether widget's elements are aligned to support locales using right-to-left fonts. Code example
                            
                                Set the rtlproperty. $('#dataTable').jqxDataTable({rtl : true}); 
 
                                Get the rtlproperty. var rtl = $('#dataTable').jqxDataTable('rtl'); 
 | 
                
                    | source | Object | null | 
                
                    | 
                            
                                Determines the jqxDataTable's data source. The sourceproperty is expected to point to an instance of jqxDataAdapter. For more information about jqxDataAdapter, visit: jquery-data-adapter.htm. To clear the data source, set thesourceproperty to null. Code examples
                            
                                Set the sourceproperty. <!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/jqxdata.js"></script>     <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdatatable.js"></script>     <script type="text/javascript" src="../../scripts/demos.js"></script>    <script type="text/javascript">        $(document).ready(function () {            var url = "../sampledata/customers.xml";            // prepare the data            var source =            {                datatype: "xml",                datafields: [                    { name: 'CompanyName', map: 'm\\:properties>d\\:CompanyName', type: 'string' },                    { name: 'ContactName', map: 'm\\:properties>d\\:ContactName', type: 'string' },                    { name: 'ContactTitle', map: 'm\\:properties>d\\:ContactTitle', type: 'string' },                    { name: 'City', map: 'm\\:properties>d\\:City', type: 'string' },                    { name: 'PostalCode', map: 'm\\:properties>d\\:PostalCode', type: 'string' },                    { name: 'Country', map: 'm\\:properties>d\\:Country', type: 'string' }                ],                root: "entry",                record: "content",                id: 'm\\:properties>d\\:CustomerID',                url: url            };            var dataAdapter = new $.jqx.dataAdapter(source);            // Create jqxGrid            $("#dataTable").jqxDataTable(            {                width: 670,                source: dataAdapter,                pageable: true,                pagerButtonsCount: 10,                columnsresize: true,                columns: [                  { text: 'Company Name', datafield: 'CompanyName', width: 250 },                  { text: 'Contact Name', datafield: 'ContactName', width: 150 },                  { text: 'Contact Title', datafield: 'ContactTitle', width: 180 },                  { text: 'City', datafield: 'City', width: 120 },                  { text: 'Postal Code', datafield: 'PostalCode', width: 90 },                  { text: 'Country', datafield: 'Country', width: 100 }                ]            });        });    </script></head><body class='default'>    <div id="dataTable"></div></body></html> | 
                
                    | sortable | Boolean | false | 
                
                    | 
                            
                                Enables/Disables the sorting feature.
                             Code examples
                            
                                Set the sortableproperty. $('#dataTable').jqxDataTable({sortable: true}); 
 
                                Get the sortableproperty. var sortable = $('#dataTable').jqxDataTable('sortable'); 
 | 
                
                    | showAggregates | Boolean | false | 
                
                    | 
                            
                                Determines whether the jqxDataTable's Aggregates bar is visible.
                             Code examples
                            
                                Set the showAggregatesproperty. $('#dataTable').jqxDataTable({showAggregates: true}); 
 
                                Get the showAggregatesproperty. var showAggregates = $('#dataTable').jqxDataTable('showAggregates'); 
 | 
                
                    | showToolbar | Boolean | false | 
                
                    | 
                            
                                Determines whether the jqxDataTable's Toolbar is visible.
                             Code examples
                            
                                Set the showToolbarproperty. $('#dataTable').jqxDataTable({showToolbar: true}); 
 
                                Get the showToolbarproperty. var showToolbar = $('#dataTable').jqxDataTable('showToolbar'); 
 | 
                
                    | showStatusbar | Boolean | false | 
                
                    | 
                            
                                Determines whether the jqxDataTable's Statusbar is visible.
                             Code examples
                            
                                Set the showStatusbarproperty. $('#dataTable').jqxDataTable({showStatusbar: true}); 
 
                                Get the showStatusbarproperty. var showStatusbar = $('#dataTable').jqxDataTable('showStatusbar'); 
 | 
                
                    | statusBarHeight | Number | 34 | 
                
                    | 
                            
                                Sets or gets the height of the Statusbar. Statusbar is displayed after setting showStatusbarto true. Code examples
                            
                                Set the statusBarHeightproperty. $('#dataTable').jqxDataTable({statusBarHeight: 40}); 
 
                                Get the statusBarHeightproperty. var statusBarHeight = $('#dataTable').jqxDataTable('statusBarHeight'); 
 | 
                
                    | scrollBarSize | Number | 17 | 
                
                    | 
                            
                                Sets or gets the size of the scrollbars.
                             Code examples
                            
                                Set the scrollBarSizeproperty. $('#dataTable').jqxDataTable({scrollBarSize: 15}); 
 
                                Get the scrollBarSizeproperty. var scrollBarSize = $('#dataTable').jqxDataTable('scrollBarSize'); 
 | 
                
                    | selectionMode | String | "multipleRows" | 
                
                    | 
                            
                                Sets or gets the selection mode. Possible values: "multipleRows","singleRow"and"custom". In the "custom" mode, rows could be selected/unselected only through the API. Code examples
                            
                                Set the selectionModeproperty. $('#dataTable').jqxDataTable({selectionMode: "singleRow" }); 
 
                                Get the enableBrowserSelectionproperty. var selectionMode = $('#dataTable').jqxDataTable('selectionMode'); 
 | 
                
                    | serverProcessing | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the Paging, Sorting and Filtering are handled by a Server and jqxDataTable sends Ajax requests to a Server and displays the returned data. When the current page, page size, sort order or sort column is changed, jqxDataTable will automatically perform a new data binding with the updated parameters. For server synchronization after adding, removing, updating rows, see the sourceproperty documentation. 
                            By default, the jqxDataTable sends the following data to the server:
                                                                                     
                                                                                        sortdatafield - the sort column's datafield.sortorder - the sort order - 'asc', 'desc' or ''.pagenum - the current page's number when the paging feature is enabled.pagesize - the page's size which represents the number of rows displayed in the view.filterscount - the number of filters applied to the jqxDataTable.filtervalue - the filter's value. The filtervalue name for the first filter is "filtervalue0", for the second filter is "filtervalue1" and so on.filtercondition - the filter's condition. The condition can be any of these: "CONTAINS", "DOES_NOT_CONTAIN", "EQUAL", "EQUAL_CASE_SENSITIVE", NOT_EQUAL","GREATER_THAN", "GREATER_THAN_OR_EQUAL", "LESS_THAN", "LESS_THAN_OR_EQUAL", "STARTS_WITH", "STARTS_WITH_CASE_SENSITIVE", "ENDS_WITH", "ENDS_WITH_CASE_SENSITIVE", "NULL", "NOT_NULL", "EMPTY", "NOT_EMPTY".filterdatafield - the filter column's datafield.filteroperator - the filter's operator - 0 for "AND" and 1 for "OR". Code examples
                            
                                Set the serverProcessingproperty. $('#dataTable').jqxDataTable({serverProcessing: true }); 
 jqxDataTable Server Paging & Filtering <!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/jqxdata.js"></script>     <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script>    <script type="text/javascript" src="../../jqwidgets/jqxdatatable.js"></script>     <script type="text/javascript" src="../../scripts/demos.js"></script>    <script type="text/javascript">        $(document).ready(function () {            // prepare the data            var source =            {                dataType: "json",                dataFields: [                    { name: 'ShipCountry', type: 'string' },                    { name: 'ShipCity', type: 'string' },                    { name: 'ShipAddress', type: 'string' },                    { name: 'ShipName', type: 'string' },                    { name: 'Freight', type: 'number' },                    { name: 'ShippedDate', type: 'date' }                ],                root: 'value',                url: "http://services.odata.org/V3/Northwind/Northwind.svc/Orders?$format=json"            };            var filterChanged = false;            var dataAdapter = new $.jqx.dataAdapter(source,                 {                    formatData: function (data) {                        if (data.sortdatafield && data.sortorder) {                            // update the $orderby param of the OData service.                            // data.sortdatafield - the column's datafield value(ShipCountry, ShipCity, etc.).                            // data.sortorder - the sort order(asc or desc).                            data.$orderby = data.sortdatafield + " " + data.sortorder;                        }                        if (data.filterslength) {                            filterChanged = true;                            var filterParam = "";                            for (var i = 0; i < data.filterslength; i++) {                                // filter's value.                                var filterValue = data["filtervalue" + i];                                // filter's condition. For the filterMode="simple" it is "CONTAINS".                                var filterCondition = data["filtercondition" + i];                                // filter's data field - the filter column's datafield value.                                var filterDataField = data["filterdatafield" + i];                                // "and" or "or" depending on the filter expressions. When the filterMode="simple", the value is "or".                                var filterOperator = data[filterDataField + "operator"];                                var startIndex = 0;                                if (filterValue.indexOf('-') == -1) {                                    if (filterCondition == "CONTAINS") {                                        filterParam += "substringof('" + filterValue + "', " + filterDataField + ") eq true";                                        filterParam += " " + filterOperator + " ";                                    }                                }                                else {                                    if (filterDataField == "ShippedDate") {                                        var dateGroups = new Array();                                        var startIndex = 0;                                        var item = filterValue.substring(startIndex).indexOf('-');                                        while (item > -1) {                                            dateGroups.push(filterValue.substring(startIndex, item + startIndex));                                            startIndex += item + 1;                                            item = filterValue.substring(startIndex).indexOf('-');                                            if (item == -1) {                                                dateGroups.push(filterValue.substring(startIndex));                                            }                                        }                                        if (dateGroups.length == 3) {                                            filterParam += "year(ShippedDate) eq " + parseInt(dateGroups[0]) + " and month(ShippedDate) eq " + parseInt(dateGroups[1]) + " and day(ShippedDate) eq " + parseInt(dateGroups[2]);                                        }                                        filterParam += " " + filterOperator + " ";                                    }                                }                            }                            // remove last filter operator.                            filterParam = filterParam.substring(0, filterParam.length - filterOperator.length - 2);                            data.$filter = filterParam;                            source.totalRecords = 0;                        }                        else {                            if (filterChanged) {                                source.totalRecords = 0;                                filterChanged = false;                            }                        }                        if (source.totalRecords) {                            // update the $skip and $top params of the OData service.                            // data.pagenum - page number starting from 0.                            // data.pagesize - page size                            data.$skip = data.pagenum * data.pagesize;                            data.$top = data.pagesize;                                }                        return data;                    },                    downloadComplete: function (data, status, xhr) {                        if (!source.totalRecords) {                            source.totalRecords = data.value.length;                        }                    }                }            );            $("#dataTable").jqxDataTable(            {                width: 670,                pageable: true,                pagerButtonsCount: 10,                serverProcessing: true,                source: dataAdapter,                altRows: true,                filterable: true,                filterMode: 'simple',                sortable: true,                columnsResize: true,                columns: [                    { text: 'Ship Name', dataField: 'ShipName', width: 200 },                    { text: 'Ship Country', dataField: 'ShipCountry', width: 200 },                    { text: 'Ship City', dataField: 'ShipCity', width: 200 },                    { text: 'Ship Address', dataField: 'ShipAddress', width: 200 },                    { text: 'Ship Date', dataField: 'ShippedDate', width: 200, cellsFormat: 'yyyy-MM-dd' }                ]            });        });    </script></head><body class='default'>    <h3 style="font-size: 16px; font-family: Verdana;">Data Source: "http://services.odata.org"</h3>    <div id="dataTable"></div></body></html>
                                Get the serverProcessingproperty. var serverProcessing = $('#dataTable').jqxDataTable('serverProcessing'); 
 | 
                
                    | showHeader | Boolean | true | 
                
                    | 
                            
                                Sets or gets the jqxDataTable's columns visibility.
                             Code examples
                            
                                Set the showHeaderproperty. $('#dataTable').jqxDataTable({showHeader: false});
 
                                Get the showHeaderproperty. var showHeader = $('#dataTable').jqxDataTable('showHeader');
 | 
                
                    | theme | String | '' | 
                
                    | 
                            
                                Sets the widget's theme.
                             
                            jQWidgets uses a pair of css files - jqx.base.css and jqx.[theme name].css. The base stylesheet creates the styles related to the widget's layout like margin, padding, border-width, position. The second css file applies the widget's colors and backgrounds. The jqx.base.css should be included before the second CSS file.
                                                                                    In order to set a theme, you need to do the following:
                                                                                     | 
                
                    | toolbarHeight | Number | 34 | 
                
                    | 
                            
                                Sets or gets the height of the Toolbar. Toolbar is displayed after setting showToolbarto true. Code examples
                            
                                Set the toolbarHeightproperty. $('#dataTable').jqxDataTable({toolbarHeight: 40}); 
 
                                Get the toolbarHeightproperty. var toolbarHeight = $('#dataTable').jqxDataTable('toolbarHeight'); 
 | 
                
                    | width | Number/String | null | 
                
                    | 
                            
                                Sets or gets the jqxDataTable's width.
                             Code examples
                            
                                Set the widthproperty. $('#dataTable').jqxDataTable({width:"200px"});
 
                                Get the widthproperty. var width = $('#dataTable').jqxDataTable('width');
 | 
                
                    |  | 
                
                    | bindingComplete | Event |  | 
                
                    | 
                            
                                This event is triggered when the jqxDataTable binding is completed.
                                                                                        *Bind to that event before the jqxDataTable's initialization. Otherwise, if you are populating the widget from a local data source and bind to bindingCompleteafter the initialization, the event could be already raised when you attach an event handler to it. Code examples
                            
                                Bind to the bindingCompleteevent by type: jqxDataTable. $('#dataTable').on('bindingComplete', function (event) { // Some code here. }); 
 | 
                
                    | cellBeginEdit | Event |  | 
                
                    | 
                            
                                This is triggered when a cell edit begins. Note: To turn on cell editing, you should set the editSettingsproperty and make sure that itseditSingleCellsub property is set totrue. Code examples
                            
                                Bind to the cellBeginEditevent by type: jqxDataTable. 
$('#dataTable').on('cellBeginEdit', 
function (event)
{
    var args = event.args;
    // row key
    var rowKey = args.key;
    // row's index.
    var rowIndex = args.index;
    // row's data.
    var row = args.row;
    // row's index in the data source.
    var rowBoundIndex = args.boundIndex;
    // column's data field.
    var columnDataField = args.dataField;
    // column's display field.
    var columnDisplayField = args.displayField;
    // cell's value.
    var value = args.value;
});
                         
 | 
                
                    | cellEndEdit | Event |  | 
                
                    | 
                            
                                This is triggered when a cell edit ends. Note: To turn on cell editing, you should set the editSettingsproperty and make sure that itseditSingleCellsub property is set totrue. Code examples
                            
                                Bind to the cellEndEditevent by type: jqxDataTable. 
$('#dataTable').on('cellEndEdit', 
function (event)
{
    var args = event.args;
    // row key
    var rowKey = args.key;
    // row's index.
    var rowIndex = args.index;
    // row's data.
    var row = args.row;
    // row's index in the data source.
    var rowBoundIndex = args.boundIndex;
    // column's data field.
    var columnDataField = args.dataField;
    // column's display field.
    var columnDisplayField = args.displayField;
    // cell's value.
    var value = args.value;
});
                         
 | 
                
                    | cellValueChanged | Event |  | 
                
                    | 
                            
                                This event is triggered when a cell value is changed.
                             Code examples
                            
                                Bind to the cellValueChangedevent by type: jqxDataTable. 
$('#dataTable').on('cellValueChanged', 
function (event)
{
    // event args.
    var args = event.args;
    // cell value.
    var value = args.value;
    // old cell value.
    var oldValue = args.oldValue;
    // row data.
    var row = args.row;
    // row index.
    var index = args.index;
    // row's data bound index.
    var boundIndex = args.boundIndex;
    // row key.
    var rowKey = args.key;
    // column data field.
    var dataField = args.dataField;
});
                         
 | 
                
                    | columnResized | Event |  | 
                
                    | 
                            
                                This event is triggered when a column is resized.
                             Code examples
                            
                                Bind to the columnResizedevent by type: jqxDataTable. 
$('#dataTable').on('columnResized', 
function (event)
{
    // event args.
    var args = event.args;
    // column data field.
    var dataField = args.dataField;
    // old width.
    var oldWidth = args.oldWidth;
    // new width.
    var newWidth = args.newWidth;
});
                         
 | 
                
                    | columnReordered | Event |  | 
                
                    | 
                            
                                This event is triggered when the column's order is changed.
                             Code examples
                            
                                Bind to the columnReorderedevent by type: jqxDataTable. 
$('#dataTable').on('columnReordered', 
function (event)
{
    // event args.
    var args = event.args;
    // column data field.
    var dataField = args.dataField;
    // old index.
    var oldIndex = args.oldIndex;
    // new index.
    var newIndex = args.newIndex;
});
                         
 | 
                
                    | sort | Event |  | 
                
                    | 
                            
                                This event is triggered when the jqxDataTable sort order or sort column is changed.
                             Code examples
                            
                                Bind to the sortevent by type: jqxDataTable. 
$('#dataTable').on('sort', function (event) { 
    var args = event.args; 
    // column's data field.
    var sortcolumn = args.sortcolumn; 
    // sort order.  { 'ascending': true or false, 'descending': true or false }
    var sortdirection = args.sortdirection;
});
                        
 | 
                
                    | filter | Event |  | 
                
                    | 
                            
                                This event is triggered when the jqxDataTable's rows filter is changed.
                             Code examples
                            
                                Bind to the filterevent by type: jqxDataTable. 
$('#dataTable').on('filter',
function (event)
{
    var args = event.args;
    // array of filters. Each filter in that array has 2 members - "datafield" and "filter". "datafield" is the filter column's bound field, 
    // "filter" is an object with key/value pairs which represents a filter group applied to a column. It has a "getfilters" method which returns an Array of the individual filters.
    // each individual filter has the following members: "condition", "value", "type" and "operator".
    // For more information about "condition" see the "localization" property. 
    // "type" could be "stringfilter", "numberfilter", "datefilter" or "booleanfilter".
    // "operator" could be "0" or "1" depending on the relation between the filter with the other filters within the filter group. 
    // "value" represents the filter's value.
    var filters = args.filters;
});
                         
 | 
                
                    | pageChanged | Event |  | 
                
                    | 
                            
                                This is triggered when the jqxDataTable's current page is changed.
                             Code examples
                            
                                Bind to the pageChangedevent by type: jqxDataTable. 
$('#dataTable').on('pageChanged', 
function (event)
{
    // event args.
    var args = event.args;
    // page num.
    var pageNum = args.pagenum;
    // old page num.
    var oldPageNum = args.oldpagenum;
    // page size.
    var pageSize = args.pagesize;
});
                         
 | 
                
                    | pageSizeChanged | Event |  | 
                
                    | 
                            
                                This is triggered when the jqxDataTable's page size is changed.
                             Code examples
                            
                                Bind to the pageSizeChangedevent by type: jqxDataTable. 
$('#dataTable').on('pageSizeChanged', 
function (event)
{
    // event args.
    var args = event.args;
    // page num.
    var pageNum = args.pagenum;
    // old page size.
    var oldPageSize = args.oldpagesize;
    // page size.
    var pageSize = args.pagesize;
});
                         
 | 
                
                    | rowClick | Event |  | 
                
                    | 
                            
                                This is triggered when a row is clicked.
                             Code examples
                            
                                Bind to the rowClickevent by type: jqxDataTable. 
$('#dataTable').on('rowClick', 
function (event)
{
    // event args.
    var args = event.args;
    // row data.
    var row = args.row;
    // row index.
    var index = args.index;
    // row's data bound index.
    var boundIndex = args.boundIndex; 
    // row key.
    var key = args.key;
    // data field
    var dataField = args.dataField;
    // original click event.
    var clickEvent = args.originalEvent;
});
                         
 | 
                
                    | rowDoubleClick | Event |  | 
                
                    | 
                            
                                This is triggered when a row is double-clicked.
                             Code examples
                            
                                Bind to the rowDoubleClickevent by type: jqxDataTable. 
$('#dataTable').on('rowDoubleClick', 
function (event)
{
    // event args.
    var args = event.args;
    // row data.
    var row = args.row;
    // row index.
    var index = args.index;
    // row's data bound index.
    var boundIndex = args.boundIndex; 
    // row key.
    var key = args.key;
    // data field
    var dataField = args.dataField;
    // original double click event.
    var clickEvent = args.originalEvent;
});
                         
 | 
                
                    | rowSelect | Event |  | 
                
                    | 
                            
                                This is triggered when a row is selected.
                             Code examples
                            
                                Bind to the rowSelectevent by type: jqxDataTable. 
$('#dataTable').on('rowSelect', 
function (event)
{
    // event args.
    var args = event.args;
    // row data.
    var row = args.row;
    // row index.
    var index = args.index;
    // row's data bound index.
    var boundIndex = args.boundIndex;
    // row key.
    var key = args.key;
});
                         
 | 
                
                    | rowUnselect | Event |  | 
                
                    | 
                            
                                This is triggered when a row is unselected.
                             Code examples
                            
                                Bind to the rowUnselectevent by type: jqxDataTable. 
$('#dataTable').on('rowUnselect', 
function (event)
{
    // event args.
    var args = event.args;
    // row data.
    var row = args.row;
    // row index.
    var index = args.index;
    // row's data bound index.
    var boundIndex = args.boundIndex;
    // row key.
    var key = args.key;
});
                         
 | 
                
                    | rowBeginEdit | Event |  | 
                
                    | 
                            
                                This is triggered when a row edit begins.
                             Code examples
                            
                                Bind to the rowBeginEditevent by type: jqxDataTable. 
$('#dataTable').on('rowBeginEdit', 
function (event)
{
    // event args.
    var args = event.args;
    // row data.
    var row = args.row;
    // row index.
    var index = args.index;
    // row's data bound index.
    var boundIndex = args.boundIndex; 
    // row key.
    var key = args.key;
});
                         
 | 
                
                    | rowEndEdit | Event |  | 
                
                    | 
                            
                                This is triggered when a row edit ends.
                             Code examples
                            
                                Bind to the rowEndEditevent by type: jqxDataTable. 
$('#dataTable').on('rowEndEdit', 
function (event)
{
    // event args.
    var args = event.args;
    // row data.
    var row = args.row;
    // row index.
    var index = args.index;
    // row's data bound index.
    var boundIndex = args.boundIndex;
    // row key.
    var key = args.key;
});
                         
 | 
                
                    | rowExpand | Event |  | 
                
                    | 
                            
                                This is triggered when a row is expanded.
                             Code examples
                            
                                Bind to the rowExpandevent by type: jqxDataTable. 
$('#dataTable').on('rowExpand', 
function (event)
{
    // event args.
    var args = event.args;
    // row data.
    var row = args.row;
    // row index.
    var index = args.index;
    // row's data bound index.
    var boundIndex = args.boundIndex; 
    // row key.
    var key = args.key;
});
                         
 | 
                
                    | rowCollapse | Event |  | 
                
                    | 
                            
                                This is triggered when a row is collapsed.
                             Code examples
                            
                                Bind to the rowCollapseevent by type: jqxDataTable. 
$('#dataTable').on('rowCollapse', 
function (event)
{
    // event args.
    var args = event.args;
    // row data.
    var row = args.row;
    // row index.
    var index = args.index;
    // row's data bound index.
    var boundIndex = args.boundIndex; 
    // row key.
    var key = args.key;
});
                         
 | 
                
                    |  | 
                
                    | addRow | Method |  | 
                
                    | 
                            
                                Adds a new row. For synchronization with a server, please look also the jqxDataAdapter plug-in's help documentation.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  
                                            | rowData | Object |  |  
                                            | rowPosition | String | "last" and "first". By default "last" is used |  Code example
                            
                                Invoke the addRowmethod. $("#dataTable").jqxDataTable('addRow', null, {});
 | 
                
                    | addFilter | Method |  | 
                
                    | 
                            
                                Adds a new filter.
                             
                                                                                        Data Field - column's data field.filterGroup 
                                                                                            
 Definitions:
 
 
 
                                                                                                filterGroup - The filter group represents a group of one or more filters.
                                                                                                    Code Example// creates a new filter group.
                                                                                                    var filterGroup = new $.jqx.filter();filter - a filter added to the filter group. Each filter has value and condition. The filter condition specifies the way the filter will evaluate each value with the filter's value. The filter condition depends on the filter’s type.
                                                                                                    To create a filter, use the createfiltermethod of the filterGroup. It has 3 parameters - filter type("stringfilter", "datefilter", "booleanfilter" and "numericfilter"), filter value and filter's condition.Code Example
var filtervalue = 'Beate';
var filtercondition = 'contains';
// possible conditions for string filter: 'EMPTY', 'NOT_EMPTY', 'CONTAINS', 'CONTAINS_CASE_SENSITIVE',
// 'DOES_NOT_CONTAIN', 'DOES_NOT_CONTAIN_CASE_SENSITIVE', 'STARTS_WITH', 'STARTS_WITH_CASE_SENSITIVE',
// 'ENDS_WITH', 'ENDS_WITH_CASE_SENSITIVE', 'EQUAL', 'EQUAL_CASE_SENSITIVE', 'NULL', 'NOT_NULL'
// possible conditions for numeric filter: 'EQUAL', 'NOT_EQUAL', 'LESS_THAN', 'LESS_THAN_OR_EQUAL', 'GREATER_THAN', 'GREATER_THAN_OR_EQUAL', 'NULL', 'NOT_NULL'
// possible conditions for date filter: 'EQUAL', 'NOT_EQUAL', 'LESS_THAN', 'LESS_THAN_OR_EQUAL', 'GREATER_THAN', 'GREATER_THAN_OR_EQUAL', 'NULL', 'NOT_NULL'                         
var filter1 = filtergroup.createfilter('stringfilter', filtervalue, filtercondition);
filtervalue = 'Andrew';
filtercondition = 'starts_with';
var filter2 = filtergroup.createfilter('stringfilter', filtervalue, filtercondition);
filter operator - determines the relation between filters within a filter group. The operator could be 0(AND) or 1(OR).
                                                                                                    In the code example below, we added two filters to a filter group with operator ‘or’. By doing that, each value will be evaluated by filter1andfilter2and the evaluation result will be true, if thefilter1evaluation result is true orfilter2evaluation result is true.
var filter_or_operator = 1;
filtergroup.addfilter(filter_or_operator, filter1);
filtergroup.addfilter(filter_or_operator, filter2);
 
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | dataField | String |  |  
                                            | filerGroup | Object |  |  Code example
                                                                                            
                                                                                                Invoke the addFiltermethod. 
var filtertype = 'stringfilter';
// create a new group of filters.
var filtergroup = new $.jqx.filter();
var filter_or_operator = 1;
var filtervalue = "Empty";
var filtercondition = 'equal';
var filter = filtergroup.createfilter(filtertype, filtervalue, filtercondition);
filtergroup.addfilter(filter_or_operator, filter);
// add the filters.
$("#dataTable").jqxDataTable('addFilter', dataField, filtergroup);
// apply the filters.
$("#dataTable").jqxDataTable('applyFilters');
 | 
                
                    | applyFilters | Method |  | 
                
                    | 
                            
                                Applies the added/removed filters.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the applyFiltersmethod. $("#dataTable").jqxDataTable('applyFilters');
 | 
                
                    | beginUpdate | Method |  | 
                
                    | 
                            
                                Begins an update and stops all refreshes.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the beginUpdatemethod. $("#dataTable").jqxDataTable('beginUpdate');
 | 
                
                    | beginRowEdit | Method |  | 
                
                    | 
                            
                                Begins a row edit operation when editableis set to true. 
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  Code example
                            
                                Invoke the beginRowEditmethod. $("#dataTable").jqxDataTable('beginRowEdit',0);
 | 
                
                    | beginCellEdit | Method |  | 
                
                    | 
                            
                                Begins a cell edit operation when editableis set to true. 
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  
                                            | dataField | String |  |  Code example
                            
                                Invoke the beginCellEditmethod. $("#dataTable").jqxDataTable('beginCellEdit',0, 'FirstName');
 | 
                
                    | clearSelection | Method |  | 
                
                    | 
                            
                                Clears the selection.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the clearSelectionmethod. $("#dataTable").jqxDataTable('clearSelection');
 | 
                
                    | clearFilters | Method |  | 
                
                    | 
                            
                                Clears the filters.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the clearFiltersmethod. $("#dataTable").jqxDataTable('clearFilters');
 | 
                
                    | clear | Method |  | 
                
                    | 
                            
                                Clears the jqxDataTable.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the clearmethod. $("#dataTable").jqxDataTable('clear');
 | 
                
                    | destroy | Method |  | 
                
                    | 
                            
                                Destroys jqxDataTable and removes it from the DOM.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the destroymethod. $("#dataTable").jqxDataTable('destroy');
 | 
                
                    | deleteRow | Method |  | 
                
                    | 
                            
                                Deletes a row. For synchronization with a server, please look also the jqxDataAdapter plug-in's help documentation.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  Code example
                            
                                Invoke the deleteRowmethod. $("#dataTable").jqxDataTable('deleteRow', 0);
 | 
                
                    | endUpdate | Method |  | 
                
                    | 
                            
                                Ends the update and resumes all refreshes.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the endUpdatemethod. $("#dataTable").jqxDataTable('endUpdate');
 | 
                
                    | ensureRowVisible | Method |  | 
                
                    | 
                            
                                Moves the vertical scrollbar to a row index.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  Code example
                            
                                Invoke the ensureRowVisiblemethod. $("#dataTable").jqxDataTable('ensureRowVisible', 20);
 | 
                
                    | endRowEdit | Method |  | 
                
                    | 
                            
                                Ends a row edit when editableis set to true. 
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  
                                            | cancelChanges | Boolean(optional) |  |  Code example
                            
                                Invoke the endRowEditmethod. $("#dataTable").jqxDataTable('endRowEdit', 0);
 
                                Invoke the endRowEditmethod and cancel changes. $("#dataTable").jqxDataTable('endRowEdit', 0, true);
 | 
                
                    | endCellEdit | Method |  | 
                
                    | 
                            
                                Ends a cell edit operation when editableis set to true. 
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  
                                            | dataField | String |  |  Code example
                            
                                Invoke the endCellEditmethod. $("#dataTable").jqxDataTable('endCellEdit',0, 'FirstName');
 | 
                
                    | exportData | Method |  | 
                
                    | 
                            
                                Exports jqxDataTable's data to Excel, HTML, XML, JSON, CSV or TSV. See also the exportSettingsproperty 
                                
                                    
                                        Return Value 
                                Object(optional)
                                            | Parameter | Type | Description |  
                                            | exportDataType | String | 'xls', 'html', 'xml', 'json', 'csv', 'tsv' or 'pdf' |   - depends on whether the export is to a file or not.
                             Code example
                            
                                Invoke the exportDatamethod. $("#dataTable").jqxDataTable('exportData','xls');
 
                            Export to Excel works with the ExcelML format. ExcelML is XML-based file format. It complies to the Microsoft XMLSS specification  and is supported in Microsoft Office 2003 and later.
                                                                                     
                            * When you open export to Excel, you may receive the following message: "The file you are trying to open, 'file_name.xls', is in a different format than specified by the file extension. Verify that the file is not corrupted and is from a trusted source before opening this file. Do you want to open the file now?"
                                                                                     
                            The reason of this warning message is explained in details in the following post: excel-2007-extension-warning.aspx | 
                
                    | focus | Method |  | 
                
                    | 
                            
                                Focus jqxDataTable.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the focusmethod. $("#dataTable").jqxDataTable('focus');
 | 
                
                    | getColumnProperty | Method |  | 
                
                    | 
                            
                                Gets a property value of a column.
                             
                                
                                    
                                        Return Value 
                                Object
                                            | Parameter | Type | Description |  
                                            | dataField | String |  |  
                                            | propertyName | String |  |  Code example
                            
                                Invoke the getColumnPropertymethod. var value = $("#dataTable").jqxDataTable('getColumnProperty', 'firstName', 'width');
 | 
                
                    | goToPage | Method |  | 
                
                    | 
                            
                                Navigates to a page when pageableis set to true. 
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | pageIndex | Number |  |  Code example
                            
                                Invoke the goToPagemethod. $("#dataTable").jqxDataTable('goToPage', 2);
 | 
                
                    | goToPrevPage | Method |  | 
                
                    | 
                            
                                Navigates to a previous page when pageableis set to true. 
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the goToPrevPagemethod. $("#dataTable").jqxDataTable('goToPrevPage');
 | 
                
                    | goToNextPage | Method |  | 
                
                    | 
                            
                                Navigates to a next page when pageableis set to true. 
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the goToNextPagemethod. $("#dataTable").jqxDataTable('goToNextPage');
 | 
                
                    | getSelection | Method |  | 
                
                    | 
                            
                                Returns an array of selected rows.
                             
                                
                                    
                                        Return Value 
                                Array
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the getSelectionmethod. $("#dataTable").jqxDataTable('getSelection');
 Invoke the getSelectionand loop through the selected rows 
var selection = $("#table").jqxDataTable('getSelection');
for (var i = 0; i < selection.length; i++) {
    // get a selected row.
	var rowData = selection[i];
}
                         
 | 
                
                    | getRows | Method |  | 
                
                    | 
                            
                                Returns an array of all rows loaded in the widget.
                             
                                
                                    
                                        Return Value 
                                Array
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the getRowsmethod. $("#dataTable").jqxDataTable('getRows');
 Invoke the getRowsand loop through the rows 
var rows = $("#table").jqxDataTable('getRows');
for (var i = 0; i < rows.length; i++) {
    // get a row.
	var rowData = rows[i];
}
                         
 | 
                
                    | getView | Method |  | 
                
                    | 
                            
                                Returns an array of all rows displayed in the view. This method takes into account the Sorting Order and returns the Filtered Set of Rows, if Filtering is applied. The method is different from getRows, because getRows returns a Rows array in their data binding order and that array is not affected by filtering and sorting.
                             
                                
                                    
                                        Return Value 
                                Array
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the getViewmethod. $("#dataTable").jqxDataTable('getView');
 Invoke the getViewand loop through the rows 
var rows = $("#table").jqxDataTable('getView');
for (var i = 0; i < rows.length; i++) {
    // get a row.
	var rowData = rows[i];
}
                         
 | 
                
                    | getCellValue | Method |  | 
                
                    | 
                            
                                Returns a value of a cell.
                             
                                
                                    
                                        Return Value 
                                Object
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  
                                            | dataField | String |  |  Code example
                            
                                Invoke the getCellValuemethod. var value = $("#dataTable").jqxDataTable('getCellValue', 0, 'firstName');
 | 
                
                    | hideColumn | Method |  | 
                
                    | 
                            
                                Hides a column.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | dataField | String |  |  Code example
                            
                                Invoke the hideColumnmethod. $("#dataTable").jqxDataTable('hideColumn','firstName');
 | 
                
                    | hideDetails | Method |  | 
                
                    | 
                            
                                Hides the details of a row.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Boolean |  |  Code example
                            
                                Invoke the hideDetailsmethod. $("#dataTable").jqxDataTable('hideDetails', 0);
 | 
                
                    | isBindingCompleted | Method |  | 
                
                    | 
                            
                                Returns whether the binding is completed and if the result is true, this means that you can invoke methods and set properties. Otherwise, if the binding is not completed and you try to set a property or invoke a method, the widget will throw an exception.
                             
                                
                                    
                                        Return Value 
                                Boolean
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                                                                    
                                Invoke the isBindingCompletedmethod. var isCompleted = $("#dataTable").jqxDataTable('isBindingCompleted');
 | 
                
                    | lockRow | Method |  | 
                
                    | 
                            
                                Locks a row i.e editing of the row would be disabled.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  Code example
                            
                                Invoke the lockRowmethod. $("#dataTable").jqxDataTable('lockRow', 0);
 | 
                
                    | refresh | Method |  | 
                
                    | 
                            
                                Performs a layout and updates the HTML elements position and size.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the refreshmethod. $("#dataTable").jqxDataTable('refresh');
 | 
                
                    | render | Method |  | 
                
                    | 
                            
                                Renders jqxDataTable.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the rendermethod. $("#dataTable").jqxDataTable('render');
 | 
                
                    | removeFilter | Method |  | 
                
                    | 
                            
                                Removes a filter.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | dataField | String |  |  Code example
                            
                                Invoke the removeFiltermethod. $("#dataTable").jqxDataTable('removeFilter','firstName');
 | 
                
                    | scrollOffset | Method |  | 
                
                    | 
                            
                                Scrolls to a position.
                             
                                
                                    
                                        Return Value 
                                Object
                                            | Parameter | Type | Description |  
                                            | top | Number |  |  
                                            | left | Number |  |   - object.left and object.top
                             Code example
                            
                                Invoke the scrollOffsetmethod. $("#dataTable").jqxDataTable('scrollOffset', 10, 10);
 
                                Get the scroll position.
                             
var offset = $("#dataTable").jqxDataTable('scrollOffset');
var left = offset.left;
var top = offset.top;                                                        
                        
 | 
                
                    | setColumnProperty | Method |  | 
                
                    | 
                            
                                Sets a property of a column. See the columnsproperty for more information. 
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | dataField | String |  |  
                                            | propertyName | String |  |  
                                            | propertyValue | Object |  |  Code example
                            
                                Invoke the setColumnPropertymethod. $("#dataTable").jqxDataTable('setColumnProperty', 'firstName', 'width', 200);
 | 
                
                    | showColumn | Method |  | 
                
                    | 
                            
                                Shows a column.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | dataField | String |  |  Code example
                            
                                Invoke the showColumnmethod. $("#dataTable").jqxDataTable('showColumn', 'firstName');
 | 
                
                    | selectRow | Method |  | 
                
                    | 
                            
                                Selects a row.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  Code example
                            
                                Invoke the selectRowmethod. $("#dataTable").jqxDataTable('selectRow', 0);
 | 
                
                    | showDetails | Method |  | 
                
                    | 
                            
                                Shows a row details.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  Code example
                            
                                Invoke the showDetailsmethod. $("#dataTable").jqxDataTable('showDetails', 0);
 | 
                
                    | setCellValue | Method |  | 
                
                    | 
                            
                                Sets a value of a cell.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  
                                            | dataField | String |  |  
                                            | value | Object |  |  Code example
                            
                                Invoke the setCellValuemethod. $("#dataTable").jqxDataTable('setCellValue', 0, 'firstName', 'New Value');
 | 
                
                    | sortBy | Method |  | 
                
                    | 
                            
                                Sorts a column, if sortableis set to true. 
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | dataField | String |  |  
                                            | sortOrder | String | 'asc', 'desc' or null |  Code example
                            
                                Invoke the sortBymethod. $("#dataTable").jqxDataTable('sortBy', 'firstName', 'asc');
 | 
                
                    | updating | Method |  | 
                
                    | 
                            
                                Gets a boolean value which determines whether jqxDataTable is in update state i.e the beginUpdatemethod was called and theendUpdatemethod is not called yet. 
                                
                                    
                                        Return Value 
                                Boolean
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the updatingmethod. var isUpdating = $("#dataTable").jqxDataTable('updating');
 | 
                
                    | updateBoundData | Method |  | 
                
                    | 
                            
                                Performs a data bind and updates jqxDataTable with the new data.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                            
                                Invoke the updateBoundDatamethod. $("#dataTable").jqxDataTable('updateBoundData');
 | 
                
                    | unselectRow | Method |  | 
                
                    | 
                            
                                Unselects a row.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  Code example
                            
                                Invoke the unselectRowmethod. $("#dataTable").jqxDataTable('unselectRow', 0);
 | 
                
                    | updateRow | Method |  | 
                
                    | 
                            
                                Updates the row's data. For synchronization with a server, please look also the jqxDataAdapter plug-in's help documentation.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  
                                            | rowData | Object |  |  Code example
                            
                                Invoke the updateRowmethod. $("#dataTable").jqxDataTable('updateRow', 0, {firstName: "New First Name", lastName: "New Last Name"});
 | 
                
                    | unlockRow | Method |  | 
                
                    | 
                            
                                Unlocks a row.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | rowIndex | Number |  |  Code example
                            
                                Invoke the unlockRowmethod. $("#dataTable").jqxDataTable('unlockRow', 0);
 |