jQWidgets Forums
Forum Replies Created
-
Author
-
Why when you bind a grid to a CSV that was created this way are the quotes included then?
Thanks, I totally missed that…
Here is the message I get back
SyntaxError: JSON Parse error: Unexpected EOFI 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.
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’);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….December 3, 2014 at 10:23 pm in reply to: updatebounddata within tab/gird issue updatebounddata within tab/gird issue #63746I get no errors…
September 29, 2014 at 1:38 pm in reply to: Possible Issue with latest release Possible Issue with latest release #60257I 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.
I have included the directories
jqwidgets
jqwidgets/styles
jqwidgets/styles/jqx.base.css
jqwidgets/styles/imagesThe png files are in the images folder but do not show up in notification…
All other images seem to work…
September 26, 2014 at 4:14 pm in reply to: Possible Issue with latest release Possible Issue with latest release #60172In 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)thanks
something like your Excel type filters with no “Select All” and by default no columns selected would work great I think
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
Can anyone help me with this?
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,
April 3, 2014 at 6:13 pm in reply to: jqxTreeGrid enhancement request for cell edit jqxTreeGrid enhancement request for cell edit #52531I agree, cell editing is my requirement as well….
-
AuthorPosts