jQWidgets Forums
Forum Replies Created
-
Author
-
January 5, 2013 at 5:33 am in reply to: Cell editing in jqxgrid using asp.net and sql database Cell editing in jqxgrid using asp.net and sql database #13168
Hello,
I have seen that documentation and added the updaterow function in my aspx page. Also I am able to get the data of the edited row but how to pass the data in the web method as the method is not being called.
Below is the code which is there in the documentation:
$.ajax({
dataType: ‘json’,
url: ‘Employees/UpdateEmployee’,
data: data,
success: function (data, status, xhr) {
// update command is executed.
}
});I have created web method and passing the method name in url field but tell me how to check whether the data is being sent to the aspx.vb page through the above code… I want this functionality in aspx page not in asp.net MVC3.
Kindly suggest.
January 1, 2013 at 6:43 am in reply to: binding data to grid on button click binding data to grid on button click #12963Can anybody suggest me how to export the data of a grid locally without using the server side script. I am able to get the data in a variable but not getting any way to download it in excel sheet.
December 27, 2012 at 4:47 am in reply to: binding data to grid on button click binding data to grid on button click #12825Hello,
On using a variable, data is coming in the variable but how to open it up in a excel file so that it can be saved.
December 26, 2012 at 9:46 am in reply to: binding data to grid on button click binding data to grid on button click #12804Hello Peter,
I have added the below given code :
$(“#excelExport”).click(function () {
$(“#jqxgrid”).jqxGrid(‘exportdata’, ‘xls’);
});But now nothing is happening when I click on the button.
I have seen the export data method which is having five parameters. The second parameter is the filename which is undefined now.
December 24, 2012 at 4:33 am in reply to: binding data to grid on button click binding data to grid on button click #12769Hello,
I want to know when can I use export to excel feature of grid locally on my system. Currently it is accessing your server so I am not able to use this utility in my project.
-
AuthorPosts