jQWidgets Forums
Forum Replies Created
-
Author
-
March 28, 2013 at 11:28 am in reply to: Issue of custom row selection (using checkbox) in editable row GRID Issue of custom row selection (using checkbox) in editable row GRID #18203
Hi Peter,
I have used “cellbeginedit” to get what column has being edited. Can I use something like “return false;” which can stop the
editing of column and don’t let “updaterow” event to fire ?Ravi Joshi
February 28, 2013 at 8:22 pm in reply to: Error : Invalid JSON primitive Error : Invalid JSON primitive #16101Don’t worry I got it working now. There was a mistake from my side.
Ravi J
February 28, 2013 at 3:47 pm in reply to: Error : Invalid JSON primitive Error : Invalid JSON primitive #16087Hi Peter,
I have changed my SOURCE object as following :
source = { datatype: "json", type: 'POST', datafields: [ { name: 'Kontonummer', type: 'string' }, { name: 'Navn', type: 'string' }, { name: 'Adresse1', type: 'string' }, { name: 'Adresse2', type: 'string' }, { name: 'Adresse3', type: 'string' }, { name: 'UserCount', type: 'string' }, { name: 'CCOrderEmail', type: 'string' } ], formatdata: function (data) { $('#page').BlockUI('Loading....'); var num = parseInt(data.pagenum) + parseInt(1); var checked = $('#chkBrugere').is(':checked'); return "{'Kontonummer': '" + $('#txtKontonummer').val() + "', 'WebShopBrugere': '" + checked + "', 'Navn': '" + $('#txtNavn').val() + "', 'FreeText': '" + $('#txtFreeText').val() + "', 'Department': '" + $('#ddlAfdelinglist').val() + "', 'PageSize': '" + data.pagesize + "', 'PageNumber': '" + num + "'}"; }, cache: false, root: 'Debitors', url: '/ajax/webshop-helper.aspx/GetDebtors' };
But getting same error.
It’s only working when I have blank values in input controls.Thanks.
February 2, 2013 at 7:04 pm in reply to: Issue while updating Grid based on Searching Issue while updating Grid based on Searching #14552Thanks Peter, I have removed the “updatebounddata” from the script.
I have one more requirement within Grid but don’t know whether its there or not. Sometime I am loading around 1000 Records
in the Grid with Page Size 250 or 500 or many be more then I need to scroll down the page to hit next page button from paging
section. Is there any way to duplicate the same paging section at the top of Grid ? So I don’t have to go at the bottom.Thanks,
Ravi JoshiFebruary 2, 2013 at 5:32 pm in reply to: Issue while updating Grid based on Searching Issue while updating Grid based on Searching #14550I got it working after resigning the Value of “dataAdapter” to the grid again under Update section.
$("#accountlist").jqxGrid({ source: dataAdapter }); $("#accountlist").jqxGrid('updatebounddata');
Thanks.
-
AuthorPosts