jQWidgets Forums

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 120 total)
  • Author
    Posts
  • in reply to: Export CSV Question Export CSV Question #68905

    DavidSimmons
    Participant

    Why when you bind a grid to a CSV that was created this way are the quotes included then?

    in reply to: Grid Export Request Grid Export Request #68415

    DavidSimmons
    Participant

    Thanks, I totally missed that…

    in reply to: Grid record size issue Grid record size issue #68383

    DavidSimmons
    Participant

    Here is the message I get back
    SyntaxError: JSON Parse error: Unexpected EOF

    I also found other post dealing with this and I’m finding some of the same results. I have this running on a production server with no issues. Using a copy of the database running on my local machine I get this error. The Code and data our exact duplicates. JSON is exact on both.

    Is there anyway to test this different way to possibly seeking the error. Seems on other post people have experience singular situations.

    in reply to: Grid save state issue Grid save state issue #66925

    DavidSimmons
    Participant

    Using your example. This never works for me…..
    var gridstate = $(jqxgrid).jqxGrid(‘getstate’);
    if (gridstate) {
    $(jqxgrid).jqxGrid(‘loadstate’, gridstate);
    } else {
    $(jqxgrid).jqxGrid(‘loadstate’);
    }

    This works unless you sort columns before you save.. There is a bug in the save grid state, no way around it..
    $(jqxgrid).jqxGrid(‘loadstate’);

    in reply to: Grid save state issue Grid save state issue #66834

    DavidSimmons
    Participant

    I found one of my issues. I use a blank column name at the end of my grids which seem to cause my issue.
    datafields: [
    { name: ‘ID’, type: ‘int’},
    { name: ‘Content’, type: ‘text’},
    { name: ‘Created’, type: ‘text’},
    { name: ‘CreatedBy’, type: ‘text’},
    { name: ‘Updated’, type: ‘text’},
    { name: ‘UpdatedBy’, type: ‘text’},
    { name: ”}
    ],
    After correcting this, I still have an issue if I show a filter bar by default….


    DavidSimmons
    Participant

    I get no errors…


    DavidSimmons
    Participant

    I think it would be impossible to reproduce this issue in a static environment by its own nature. Running this on my local computer it works fine but add the network / internet into the mix which we adds to the latency I start having the issue. The code never changes, just JQWidgets version.

    Is there any suggestions on how to use grid load events to test what or where it might be failing. Again using the old release it works fine, with new release the loading icon does not complete.

    in reply to: Notification Icons Notification Icons #60173

    DavidSimmons
    Participant

    I have included the directories
    jqwidgets
    jqwidgets/styles
    jqwidgets/styles/jqx.base.css
    jqwidgets/styles/images

    The png files are in the images folder but do not show up in notification…

    All other images seem to work…


    DavidSimmons
    Participant

    In Safari I am getting this error when the loading icon does not complete… Not sure if this is helpful.

    [Error] TypeError: undefined is not an object (evaluating ‘this.columnsheader.height’)
    _render (jqxgrid.js, line 7)
    update (jqxgrid.js, line 7)
    z (jqxgrid.js, line 7)
    k (jqxgrid.js, line 7)
    callDownloadComplete (jqxdata.js, line 7)
    success (jqxdata.js, line 7)
    j (jquery-1.11.1.min.js, line 2)
    fireWith (jquery-1.11.1.min.js, line 2)
    S (jqxdata.js, line 7)
    H (jqxdata.js, line 7)

    in reply to: Notification question Notification question #59709

    DavidSimmons
    Participant

    thanks

    in reply to: Force or Required Filters Force or Required Filters #58950

    DavidSimmons
    Participant

    something like your Excel type filters with no “Select All” and by default no columns selected would work great I think

    in reply to: Group Issues Group Issues #58632

    DavidSimmons
    Participant

    I don’t really understand why there has been no response to this issue. Did I ask an improper question or something? You should be able to click on a grid row and get the correct row, RIGHT? Event in group of rows.

    $(jqxgrid).on(‘rowclick’, function (event) {
    var args = event.args;
    var row = args.rowindex;

    selectedID = $(jqxgrid).jqxGrid(‘getcellvalue’, row, “ID”);
    });

    Please help

    in reply to: Group Issues Group Issues #58593

    DavidSimmons
    Participant

    Can anyone help me with this?

    in reply to: cellsrenderer question cellsrenderer question #58110

    DavidSimmons
    Participant

    In this example how can I keep the cells align: ‘right’, cells format: ‘c2’, properties of the cell?

    var cellsrenderer = function (row, columnfield, value, defaulthtml, columnproperties, rowdata) {
    return ‘<span style=”margin: 4px; float: ‘ + columnproperties.cellsalign + ‘; color: #0b49cf;”>’ + value + ‘</span>’;
    }

    text: ‘Total09’, dataField: ‘Total09’, width: 100, editable: false, filterable: true, cellsalign: ‘right’, cellsformat: ‘c2’, cellsrenderer: cellsrenderer,


    DavidSimmons
    Participant

    I agree, cell editing is my requirement as well….

Viewing 15 posts - 1 through 15 (of 120 total)