jQWidgets Forums
Forum Replies Created
-
Author
-
November 30, 2020 at 1:17 pm in reply to: Grid Group selection and single row selection of checkbox Grid Group selection and single row selection of checkbox #113712
Hi Hristo,
Thank you for the demo links. what I need can be achieved from the second demo link (jqxtreegrid) provided. Thank you
August 23, 2020 at 7:20 am in reply to: LoadServerData sending current row value LoadServerData sending current row value #112798This cannot be used inside the loadServerData function. This cannot be used inside an adapter.
var countriesAdapter = new $.jqx.dataAdapter(countriesSource, { autoBind: true, loadServerData: function (serverdata, source, callback) { $.ajax({ dataType: source.datatype, url: "https://my-json-server.typicode.com/typicode/demo/comments", data: serverdata, success: function (data, status, xhr) { // send the loaded records to the jqxDataAdapter plug-in. callback({ records: data }); } }); } });
I need to pass the Url as
https://my-json-server.typicode.com/typicode/demo/comments?id = 1
for second rowhttps://my-json-server.typicode.com/typicode/demo/comments?id = 2
id value contain inside current rows another column.August 22, 2020 at 3:49 pm in reply to: LoadServerData sending current row value LoadServerData sending current row value #112794Hi admin,
This is not regarding the dropdownList Issue. The issue was in the Grid. How to send the current row values to loadServerData. This example doesn’t relate to the question. There are two columns one column value contain a Id value and other column contains a dropdownList, dropdownList data will load from a server to load from server i need to send current row Id column value in loadServerData.
Thanx a lot you saved my day
But cannot use the saveLayout or loadLayout , because i need to select OutputPanel or ErrorPanel based on some bit i using. i have been stucked in jqxLayout
-
AuthorPosts