DataGrid Class

Scrollable table with a fixed header. Supports remote loading, sorting, and infinite scroll via HTTP.
Here's a simple example of how to instantiate a DataGrid that will render a list of users returned from a REST endpoint:
    var grid = new javaxt.dhtml.DataGrid(parent, {

      //Set style
        style: config.style.table,

      //Define columns
        columns: [
            {header: 'ID', hidden:true},
            {header: 'Name', width:'100%'},
            {header: 'Role', width:'240'},
            {header: 'Enabled', width:'75', align:'center'},
            {header: 'Last Active', width:'175', align:'right'}
        ],

      //Set path to REST endpoint to get list of users
        url: "/manage/users",

      //Define function used to parse the response
        parseResponse: function(request){
            return JSON.parse(request.responseText);
        },

      //Define function used to render data for individual rows
        update: function(row, user){
            row.set('Name', user.fullname);
            row.set('Role', user.role);
            var status = user.status;
            if (status===1){
                row.set('Enabled', createElement("i", "fas fa-check"));
            }
        },

      //Set flag to automatically load data once the component is rendered
        autoload: true
    });  
Once the grid is instantiated you can call any of the public methods. You can also add event listeners by overriding any of the public "on" or "before" methods like this:
    grid.onRowClick = function(row, e){
        console.log(row.record);
    };  

Constructors

DataGrid( parent, config )
Used to instantiate this class
parentDOM element in which to render this component
configConfiguration settings (optional). See config options for more information.

Config Options

style
Style config. See default styles in javaxt.dhtml.Table for a list of options. In addition to the table styles, you can also specify a checkbox style.
columns
Used to define columns to display. Each entry in the array should include a "header" label (see example above) along with a "width". Note that one of the columns should have a width of 100%. Additional options include "align" and "field". If a "field" is provided it will be used to construct a "fields" parameter to that is sent to the server (see "fields" config). Fially, you can specify a checkbox column by setting the "header" to "x" (e.g. header: 'x'). If a checkbox column is defined, a checkbox will be created in the header and in individual rows. The checkbox is typically used to support multi-select operations.
url
The URL endpoint that this component uses to fetch records
params
JSON object with key/value pairs that are appended to the URL
payload
Data to send in the body of the request. This parameter is optional. If payload is not null, the component executes a POST request.
post
If true, and if the payload is empty, will sent params as a URL encoded string in a POST request. Otherwise the params will be appended to the query string in the request URL. Default is false.
limit
Used to specify the page size (i.e. the maximum number records to fetch from the server at a time). Default is 50.
count
If true, the server will be asked to return a total record count by setting the "count" parameter to true when requesting the first page. Otherwise, the count parameter is set to false. Note that the count is NOT required for pagination and is not used internally in any way. Rather it is for informational purposes only. Default is false.
autoload
If true, the grid will automatically fetch records from the server on start-up. Default is false.
localSort
If true, the grid will sort values in the grid locally using whatever data is available. If fetching data from a remote server, recommend setting localSort to false (default)
fields
Optional list of field names used to specify which database fields should be returned from the server. If not provided, uses the "field" attributes in the column definition. If both are provided, the list of fields are merged into a unique list.
hideHeader
If true, will hide the header row. Default is false.
multiselect
If true, the table will allow users to select multiple rows using control or shift key. Default is false (only one row is selected at a time).
getResponse
Default method used to get responses from the server. Typically, you do not need to override this method.
payload
contentType
success
failure
parseResponse
Default method used to parse responses from the server. Should return an array of rows with an array of values in each row. Example: [["Bob","12/30","$5.25"],["Jim","10/28","$7.33"]]
update
Default method used to update a row with values. This method can be overridden to render values in a variety of different ways (e.g. different fonts, links, icons, etc). The row.set() method accepts strings, numbers, and DOM elements.
mask
DOM element with custom show() and hide() methods. The mask is typically rendered over the grid control to prevent users from interacting with the grid during load events. It is rendered before load and is hidden after data is rendered. If a mask is not defined, a simple mask will be created automatically using the "mask" style config.

Events

onScroll( )
Called whenever the client scrolls within the table.
onPageChange( currPage, prevPage )
Called whenever the table advances to the next page of records or scrolls to a previous page.
onSelectionChange( )
beforeLoad( page )
Called immediately before fetching records from the server.
onLoad( )
Called immediately after fetching records from the server.
onError( request )
Called whenever there is an issue fetching records from the server.
onRowClick( row, e )
Called whenever the client clicks or taps on a row in the table.
onKeyEvent( keyCode, modifiers )
Called whenever a keyboard event is initiated from the table.
onCheckbox( value, checked, checkbox )
Called whenever a client clicks on a checkbox, either in the header or one of the rows. Columns with checkboxes are defined in the "columns" config (e.g. header: 'x'),
onSort( idx, sortDirection )
Called whenever a client clicks on a header.

Public Methods

setFilter( newFilter )
Used to update the filter with new params
getFilter( )
Returns the current filter
getParams( )
getCurrPage( )
Returns the current page number
getScrollInfo( )
Returns scroll position and dimenstions for the visible area.
enableScroll( )
Used to enable scrolling.
disableScroll( )
Used to disable scrolling.
isScrollEnabled( )
Returns true if scrolling is enabled.
forEachRow( callback )
Used to traverse all the rows in the table using a callback function. The first argument in the callback is a DOM element with a record. Example:
    grid.forEachRow(function(row){
        console.log(row, row.record);
    });    
Note that you can return true in the callback function if you wish to stop processing rows. Example:
    grid.forEachRow(function(row, content){
        //Do something with the row

        //Stop iterating once some contition is met
        if (1>0) return true;
    });    
select( row )
Used to select a given row in the grid
selectAll( )
Selects all the rows in the grid
deselectAll( )
Deselects all the rows in the grid
clear( )
Removes all the rows from the grid
remove( row )
Removes a row from the grid
show( )
Used to unhide the grid if it is hidden
hide( )
Used to hide the grid
focus( )
Used to set browser focus on the table.
refresh( callback )
Used to clear the grid and reload the first page.
callbackOptional callback function called after the grid has been refreshed and loaded with data.
load( )
Used to load records from the remote store. Optionally, you can pass an array of records, along with a page number, to append rows to the table.
setLimit( limit )
Used to update the number of records to load per page.
scrollTo( obj )
Scrolls to the top of a page or to a row in the table
objPage number (integer) or row in the grid (DOM element)
getSelectedRecords( key, callback )
Returns an array of selected records from the grid.
keyOptional field name or index (e.g. 'id' or 0). If given, the output array will only contain values for the given key. This can be useful for limiting the amount of data returned in the array. For example, you might only need selected IDs instead of a full record.
callbackCallback function. If the table has a checkbox header, and the check box is checked, then the user expects to get back ALL "selected" records, even those that have yet to load. In this case, we will fetch records from the server and invoke the callback with additional data.
setSortIndicator( idx, sortDirection )
Used to update the sort indicator for a given column
idxColumn number, starting with 0
sortDirection"ASC" or "DESC"