jQWidgets Forums

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • in reply to: expandAll – depth level expandAll – depth level #49374

    jasne
    Participant

    Dimitar thanks !

    Is there any way to limit user can check only one checkbox from multi-level category tree?

    in reply to: expandAll – depth level expandAll – depth level #49308

    jasne
    Participant

    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 ?


    jasne
    Participant

    Dimitar You are correct 😉 I had included one more js file that makes me problem 🙂
    Thanks !


    jasne
    Participant

    But 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 }
    				]
                });
         
    	
    	
    	
    	
    	});

    jasne
    Participant

    hi Peters,
    thanks for your reply.
    I have set both options true. Hmm , I’ve just seen this post

    My 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 ?

    in reply to: Tabs and Grid display problem Tabs and Grid display problem #14857

    jasne
    Participant

    thanks for you help. just set widht: 780 , slove this problem 🙂

    in reply to: Tabs and Grid display problem Tabs and Grid display problem #14855

    jasne
    Participant

    thanks 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

Viewing 7 posts - 1 through 7 (of 7 total)