jQWidgets Forums
Forum Replies Created
-
Author
-
Dimitar thanks !
Is there any way to limit user can check only one checkbox from multi-level category tree?
Dimitar thanks,
I need expandAll to show which category are checked (checkbox). Perhaps is other way to present for a user which category are checked from fourth level deep ?
December 6, 2013 at 9:23 am in reply to: Error after upgrade from v2.6.0 to v3.0.4 Error after upgrade from v2.6.0 to v3.0.4 #46062Dimitar You are correct
I had included one more js file that makes me problem
Thanks !December 4, 2013 at 8:34 am in reply to: Error after upgrade from v2.6.0 to v3.0.4 Error after upgrade from v2.6.0 to v3.0.4 #45974But I haven’t used jqxNavigationBar in code…
below is my code
var source = { datatype: "json", datafields: [ { name: 'indeks'}, { name: 'name'}, { name: 'description'}, { name: 'grp'}, { name: 'quantity'}, { name: 'options'} ], url:'/include/main.php', filter: function() { $("#jqxgridDB").jqxGrid('updatebounddata', 'filter'); }, sort: function() { $("#jqxgridDB").jqxGrid('updatebounddata', 'sort'); }, root: 'Rows', cache: false, beforeprocessing: function(data) { source.totalrecords = data[0].TotalRows; } }; var dataAdapter = new $.jqx.dataAdapter(source); $("#jqxgridDB").jqxGrid( { width: 1230, height: 600, pagesize:20, pagesizeoptions: ['20', '50', '100'], source: dataAdapter, sortable: true, columnsresize: true, pageable: true, autoheight: false, virtualmode: true, showfilterrow: true, filterable: true, rendergridrows: function() { return dataAdapter.records; }, columns: [ { text: 'No. ', datafield: 'indeks', width: 100 }, { text: 'Name', datafield: 'name', width: 380 }, { text: 'Desc', datafield: 'description', width: 380 }, { text: 'Group', datafield: 'grp', width: 230,filtertype: 'list', filteritems:items}, { text: 'mag.', datafield: 'quantity', width: 65, filterable: false,cellsalign: 'center'}, { text: 'Zak', datafield: 'options', width: 75, sortable: false, filterable: false } ] }); });
December 3, 2013 at 7:50 am in reply to: Can't click into button or link in table row (tablet touch screen) Can't click into button or link in table row (tablet touch screen) #45909hi Peters,
thanks for your reply.
I have set both options true. Hmm , I’ve just seen this postMy jQWidgets is v2.6.0 , so I think that is a problem…. but I can’t upgrade to newest 3.0.4 v (too many modifications for my app). Can I try it with v2.8.3 ? If yes, where I can download it ?
February 7, 2013 at 1:10 pm in reply to: Tabs and Grid display problem Tabs and Grid display problem #14857thanks for you help. just set widht: 780 , slove this problem
February 7, 2013 at 10:59 am in reply to: Tabs and Grid display problem Tabs and Grid display problem #14855thanks for your reply . I have used
$('#jqxTabs2').jqxTabs({ animationType: 'none', initTabContent: initWidgets });
and everything works ok but when I’m using button to reload json data
$("#jqxgridCarData").jqxGrid("updatebounddata");
get same problem
-
AuthorPosts