jQWidgets Forums
Forum Replies Created
-
Author
-
I want a file browser to choose a directory, so I can choose where to save the gird, similar to fileUploader, but save not upload. Here is the code of export.
var exportInfo = GridDom.jqxGrid(‘exportdata’, ‘xls’);
$.post(‘ExportToFile’,{‘FilePath’:”d:\\grid.xls”, ‘FileContent’:exportInfo, ‘FileFormat’:’xls’},
function(rtData,status,xhr){
rtData = JSON.parse(rtData);
ShowTopTips(rtData.msg);
});Thanks.
September 15, 2015 at 3:09 am in reply to: How to set the return data to grid in virtualmode? How to set the return data to grid in virtualmode? #758331.I have pass the total count when render the page, it is “var transientCnt = <%-: transientCnt %>;”.
2.I have checked similar demo, the demo is different from my situation, the demo’s data is already exsit after page render finish, just get it by random function, so it is synchronous, my situation is after page rendered, when click the page, ajax(get) data by ‘startindex’ and ‘endindex’ which come from ‘rendergridrows’, so it is asynchronous, I wondered is how to set the asynchronous data to grid. Thanks.September 15, 2015 at 1:06 am in reply to: How to insert row to specific positon in grid ? How to insert row to specific positon in grid ? #75831Thanks!
September 14, 2015 at 8:26 am in reply to: How to insert row to specific positon in grid ? How to insert row to specific positon in grid ? #75803here is the property of my grid which I have set:
$(“#jqxgrid”).jqxGrid({
width: ‘99%’,
height: ‘95%’,
filterable: true,
pageable: true,
pagermode: “simple”,
pagesize: 30,
pagerbuttonscount: 10,
source: dataAdapter,
theme: g_theme,
groupable: true,
sortable: true,
editable: true,
columnsresize: true,
showstatusbar: true,September 8, 2015 at 2:55 am in reply to: How to show the row count of grid? How to show the row count of grid? #75617OK. Thank you!
September 7, 2015 at 2:57 am in reply to: How to show the row count of grid? How to show the row count of grid? #75560Thanks, I could use getrows() to get grid count now, I am care of the notification more, is there a kind of event or way to monitor the grid’s row count change, no matter filtering or deleting row or adding row, I will get a notification, so I can show the row count in real-time, I have check the document and demos, but there isn’t any suitable, it is a tough problem for me, thank you sincerely.
September 2, 2015 at 11:35 am in reply to: grid filterable, how to change the Localization of dropdownlist? grid filterable, how to change the Localization of dropdownlist? #75397Thank you for your kindness and patient.
-
AuthorPosts