jQWidgets Forums
Forum Replies Created
-
Author
-
Hi Mariya,
Thanks a lot, ive used bindingcomplete and call selectallrows like you suggested. Here mycode :
$(“#jqxgrid”).on(“bindingcomplete”, function (event) {
$(‘#jqxgrid’).jqxGrid(‘selectallrows’);
});Best regards
May 22, 2015 at 6:51 am in reply to: Set checkboxes of loaded jqxtree to false Set checkboxes of loaded jqxtree to false #71448Hi All,
Its works case closed :D, i’m so sorry for my bad typo
May 22, 2015 at 6:43 am in reply to: Set checkboxes of loaded jqxtree to false Set checkboxes of loaded jqxtree to false #71446Hi All,
Just want to know this feature is available in the latest version or not, i just trying to set the selected: true, but it didnt work. any suggestion ?
Best regard’s
January 24, 2015 at 3:04 pm in reply to: How to get row index problem How to get row index problem #65957Hi Peter,
Thank you for the quick reply. I’ve read the documentation & i changed my code like this :
`var selectedrowindex = -1;
$(“#jqxgrid”).on(‘cellselect’, function (event) {
selectedrowindex = event.args.rowindex;
});$(“#removebutton”).on(‘click’, function () {
var rowscount = $(“#jqxgrid”).jqxGrid(‘getdatainformation’).rowscount;
if (selectedrowindex >= 0 && selectedrowindex < rowscount) {
var id = $(“#jqxgrid”).jqxGrid(‘getrowid’, selectedrowindex);
var commit = $(“#jqxgrid”).jqxGrid(‘deleterow’, id);
}
});`Am i doing this right ? Thanks again peter.
Best regards
Joe -
AuthorPosts