jQWidgets Forums

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: Export to Excel Export to Excel #84777

    mdols
    Participant

    Hello,

    I, also, just started experiencing similar behavior, using your server installation, when trying to export from a grid. I am being redirected to http://jquerygrid.net/export_server/save-file.php, which displays documentation for “jqxGrid – modern HTML5 data grid built with jQuery.” This is for a very small data set. I was wondering if this is a configuration change, or if I need to upgrade to a newer version. If this is something that may be resolved soon, please let me know. If not, I will start working on configuring a local IIS environment to serve up the PHP file.

    Thank you,
    Mike


    mdols
    Participant

    Another vote for the Tree Grid drag and drop feature.


    mdols
    Participant

    For those interested, removing the binding on sort and filter, resolved my issue.
    var billingSource = {
    datatype: “json”,
    dataFields: [
    { name: ‘Checked’, type: ‘bool’ },
    { name: ‘Group’, type: ‘string’ },
    { name: ‘Lab’, type: ‘string’ },

    { name: ‘SequenceId’, type: ‘number’ }
    ],
    id: ‘TaskId’,
    url: url,
    // Causes vanishing checkboxes when grid is filtered and checkbox is clicked with mouse
    //////filter: function () {
    ////// grid.jqxGrid(‘updatebounddata’, ‘filter’);
    //////},
    //////sort: function () {
    ////// grid.jqxGrid(‘updatebounddata’, ‘sort’);
    //////},
    root: ‘Rows’,
    beforeprocessing: function (data) {
    billingSource.totalrecords = data.TotalRows;
    }
    };

    var billingDataAdapter = new $.jqx.dataAdapter(billingSource, {
    loadError: function (xhr, status, error) {
    metAlert(‘Error’, error, _theme);
    }
    });


    mdols
    Participant

    Hello,

    Is there an example available with keyboard navigation for a grid with grouping enabled?

    Thank you,
    Mike Dols


    mdols
    Participant

    Peter,

    I am implementing dynamic, computed columns in a grid and would like to update dependent row columns when the selected index is changed in a column with a dropdownlist without having to change focus. Is there any way to fire the endcelledit event when the selected index is changed on the column’s dropdownlist or can you suggest an alternate approach?

    Thanks in advance,
    Mike


    mdols
    Participant

    Please disregard, .jqx-fill-state-focus satisfies the requirement. Thank you, Mike

Viewing 6 posts - 1 through 6 (of 6 total)