jQWidgets Forums
Forum Replies Created
-
Author
-
October 17, 2017 at 8:10 pm in reply to: Changing auto-generated filters programmatically? Changing auto-generated filters programmatically? #96775
Thank you, Hristo, but it looks like this question has been answered in the past. You simply need to create a filtergroup for the corresponding column and set the values you want; that will automatically check/uncheck the entries in the checkbox list:
May 7, 2015 at 5:16 pm in reply to: Virtual mode and data export? Virtual mode and data export? #70806Peter,
That’s not true. The file jqx-all.js was updated on your site on May 5th, and it is different from the version included in the 3.8.0 download. (Dated Apr 28th.)
May 6, 2015 at 4:33 pm in reply to: Virtual mode and data export? Virtual mode and data export? #70719This is good news; it looks like your hosted copy got fixed yesterday (http://jqwidgets.com/public/jqwidgets/jqx-all.js) although it still shows ver. 3.8.0 at the top. When do you think the fix will be incorporated into JQWidgets download?
Thanks!
May 5, 2015 at 4:43 pm in reply to: Virtual mode and data export? Virtual mode and data export? #70679Peter,
Thank you for addressing this. The broken fiddle could be due to mix of http and https (if you’re using IE, it may display a warning). You may want to try it via http:// as follows:
May 4, 2015 at 5:06 pm in reply to: Virtual mode and data export? Virtual mode and data export? #70607To clarify, here is the code:
https://jsfiddle.net/onky/j0j5v9zd/16/
It is based on the Virtual Mode with Ajax example (http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxtreegrid/javascript-tree-grid-load-on-demand.htm?arctic)
Thanks!
May 4, 2015 at 4:19 pm in reply to: Virtual mode and data export? Virtual mode and data export? #70605Peter,
You are stating the obvious, but the I trying to export when the data IS loaded already into the TreeGrid.
January 2, 2015 at 9:41 pm in reply to: Difference between 'refreshdata' and 'updatebounddata'? Difference between 'refreshdata' and 'updatebounddata'? #64916Peter,
Sorry, you did not answer my question. Instead, you provided a curt and arrogant response that benefited no one, even you.
The API documentation for jQWidgets is rather poorly written, and a lot of things are missing or not explained well. That leaves users to finding answers by themselves, by hunting crumbs of information here and there and trying to make some sense of what they find. I would like to see the documentation being updated and taken to a next level, but it looks like it is not happening. So, the forum is the next place to look, but even here I am getting nowhere ultimately.
Regards.
December 30, 2014 at 6:58 pm in reply to: Difference between 'refreshdata' and 'updatebounddata'? Difference between 'refreshdata' and 'updatebounddata'? #64848Peter,
It is still not clear to me what you mean by that. If you’re not sure, could you get someone else to answer this question, please?
Thank you.
December 26, 2014 at 5:28 pm in reply to: Difference between 'refreshdata' and 'updatebounddata'? Difference between 'refreshdata' and 'updatebounddata'? #64719Peter,
Sorry, but the explanations provided in the documentation are insufficient:
refreshdata – refreshes the data.
updatebounddata – updates the bound data and refreshes the grid.The above makes very little sense to me. Could you, please, explain these two methods in detail?
Thank you!
Hi Peter,
Thank you for the example. Here is a render function I came up with:
var renderer = function (row, dataField, cellValue, cellText, rowData) {
// HTML-encode a string
var encodedValue = $(‘<div/>’).text(cellValue).html();
return $(cellText).text(encodedValue).prop(‘outerHTML’);
}It works fine, yet I am facing another issue: with the same grid I am allowing users to add or modify rows (using scripts similar to what you have in the examples), and to my surprise, such values already come through as encoded. The custom renderer encodes them again, causing double-encoding.
-
AuthorPosts