jQWidgets Forums

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • Ahh ok thanks i understand.

    But can you tell me how to create a custom Status Bar or Aggregates. or do you have any tutorial for the same.

    Thanks, appreciate you help

    Thanks for you reply but

    when i enable both showaggregates and statusbar it will only showed aggregates not status bar. below is my code.

    $("#jqxgrid").jqxGrid(
    {
    width: '80%',
    source: dataAdapter,
    showfilterrow: true,
    filterable: true,
    pageable: true,
    autoheight: true,
    sortable: true,
    altrows: true,
    showaggregates: true,
    showstatusbar: true,
    renderstatusbar: function (statusbar) {
    // appends buttons to the status bar.
    var container = $("<div style='overflow: hidden; position: relative; margin: 5px;'></div>");
    var reloadButton = $("<div style='float: left; margin-left: 5px;'><span style='margin-left: 4px; position: relative; top: -3px;'>Reload</span></div>");
    var deleteButton = $("<div style='float: left; margin-left: 5px;'><span style='margin-left: 4px; position: relative; top: -3px;'>Delete</span></div>");
    var searchButton = $("<div style='float: left; margin-left: 5px;'><span style='margin-left: 4px; position: relative; top: -3px;'>Find</span></div>");
    container.append(deleteButton);
    container.append(reloadButton);
    container.append(searchButton);
    statusbar.append(container);
    deleteButton.jqxButton({ theme: theme, width: 65, height: 20 });
    reloadButton.jqxButton({ theme: theme, width: 65, height: 20 });
    searchButton.jqxButton({ theme: theme, width: 50, height: 20 });
    // reload grid data.
    reloadButton.click(function (event) {
    $("#jqxgrid").jqxGrid({ source: dataAdapter });
    });
    // delete selected row.
    deleteButton.click(function (event) {
    var selectedrowindex = $("#jqxgrid").jqxGrid('getselectedrowindex');
    var rowscount = $("#jqxgrid").jqxGrid('getdatainformation').rowscount;
    var id = $("#jqxgrid").jqxGrid('getrowid', selectedrowindex);
    $("#jqxgrid").jqxGrid('deleterow', id);
    });
    // search for a record.
    searchButton.click(function (event) {
    var offset = $("#jqxgrid").offset();
    $("#jqxwindow").jqxWindow('open');
    $("#jqxwindow").jqxWindow('move', offset.left + 30, offset.top + 30);
    });
    },
    statusbarheight: 25,
    theme: theme,
    columns: [
    { text: 'Employee Number', datafield: 'employeeNumber', width: 100 },
    { text: 'First Name', datafield: 'firstName', width: 100 },
    { text: 'Last Name', datafield: 'lastName', width: 100 },
    { text: 'Extension', datafield: 'extension', width: 180 },
    { text: 'Email', datafield: 'email', width: 180 },
    { text: 'Office Code', datafield: 'officeCode', width: 100, aggregates: ['sum'] },
    { text: 'File Url', datafield: 'file_url', width: 140 }
    ]
    });
Viewing 2 posts - 1 through 2 (of 2 total)