Questions tagged [treegrid]

A graphical user interface element that presents data in tree view.

A graphical user interface element that presents data in tree view.

282 questions
2
votes
1 answer

how to increase the Infragistics igTreeGrid performance

I am using the "Infragistics igTreeGrid" in my application to display the records.Every thing works fine when i provide less number of records to the grid, but my requirement is to display around 40,000 records at a time. so when i provide these…
2
votes
1 answer

How to remove the empty folder in the tree grid

My treegrid looks like this: but there is also an empty folder in the beginning. I don't want this to be there. So what is wrong with my json: { "children": [ { "type": "Videotechnicus", "prijs": "35", "children": [ …
Rick Weller
  • 1,258
  • 9
  • 35
  • 54
2
votes
5 answers

I want to hide checkboxes on non-leaf nodes in a treegrid (treepanel with columns)

In an Ext JS app I have a tree panel with a checkbox column (xtype: 'checkcolumn'). But I only want to display the checkbox on the leaf nodes. In the parent nodes I want to hide the checkboxes (or at least disable them). How can I achieve this?
Eugene Gill
  • 339
  • 4
  • 15
2
votes
3 answers

ASP.NET MVC + jqGrid without AJAX

I have an ASP.NET MVC application which is executing a search against a products database. I want to display the results in a jqGrid using the TreeGrid module. I don't really need the grid to be AJAX-y because the data is static and it is small…
RationalGeek
  • 9,425
  • 11
  • 62
  • 90
2
votes
2 answers

ExtJs 3 TreePanel Sorting not working

I am using Ext.ux.tree.TreeGrid for tree grid panel. All is working fine except sort. I have 3 level of hierarchy in it like - parent - child - grand child. I want to make sorting based on text of parent only. But I am getting random result every…
Ved
  • 8,577
  • 7
  • 36
  • 69
2
votes
1 answer

JQuery EasyUI Treegrid cannot display json object data correctly using formatter

I have jsondata something as follows: "rows":[ {"code":"001","name":"Name 1","addr":"Address 11","col4":{"data":"col4 data","value":"col4 value"}}, {"code":"002","name":"Name…
RahulK
  • 25
  • 4
2
votes
1 answer

How can I hide rows in jqGrid treegrid, triggered after the expandNode event?

I have a basic treegrid with 2 levels, and I want some rows hidden and others visible; I do this with $("#" + rowId).hide() and $("#" + rowId).show() programatically, as which rows are visible is dependent on data outside the grid. That part works…
ZeroK
  • 378
  • 3
  • 9
2
votes
0 answers

jqGrid TreeGrid with checkboxes, check in parent, mark all child checkboxes

I have a TreeGrid with checkboxes in both parent and child nodes. Checking a checkbox in parent node should mark all checkboxes in child nodes. My TreeGrid works ok, I tried to bind an event only to parent node in a custom formatter. It also…
HelpMeOleg
  • 21
  • 2
2
votes
0 answers

JSON model for TreeGrid Treecolumn component in c#

How can I build a dynamic JSON model for ExtJs TreeGrid Treecolumn component in c# format response: root: { text: 'Root', expanded: true, children: [ { text: 'Child 1', leaf: true }, { …
Mohammad Zargarani
  • 1,422
  • 2
  • 12
  • 19
2
votes
2 answers

ExtJS 4.0.7: Tree grid not showing

I have been unable to make a dynamic tree grid show up as it should - the data behind the grid is working and I can see the result being printed to the FireBug Console. Yet none of it is showing in the ExtJS Tree Grid, none except the Root node…
GauteR
  • 360
  • 7
  • 28
2
votes
0 answers

Trying to auto expand tree grid to the 3rd level with jqGrid

We are currently having a difficult time trying to auto expand a jqGrid treegrid to the 3rd level of the tree so that all children are visible. The current data set is thousands or rows deep and we were forced to dynamically load each node when…
mservais
  • 570
  • 1
  • 7
  • 20
2
votes
1 answer

Changing TreeGrid Styling in ExtJs 4

I am trying to change the styling with alternate rows having different color for the sample treegrid : http://docs.sencha.com/ext-js/4-0/#!/example/tree/treegrid.html . How can i achieve this?
srikanth
  • 53
  • 7
1
vote
1 answer

Is it possible to search locally in jqGrid with treeGrid installed

I am using jqGrid with treeGrid. I have added a filterToolbar. I would like to search locally instead of having a server call. The treegrid docs say that, "When we initialize the grid and the data is read, the datatype is automatically set to…
Nehal Damania
  • 8,671
  • 9
  • 37
  • 52
1
vote
1 answer

TreeGrid in jqGrid not working properly

I am using treegrid with jqGrid and am quite new to this plugin. I am not able to get the treegrid feature working properly. The first time when I click the expand button it works fine. The next time, when I click to collapse, it gives me javascript…
Nehal Damania
  • 8,671
  • 9
  • 37
  • 52
1
vote
1 answer

SmartGwt : How to provide xml data to TreeGrid-DataSource?

How to provide xml data to TreeGrid-DataSource ? I have string which contains data in xml format. String xmlData = 4 1 Charles…
StackOverFlow
  • 4,486
  • 12
  • 52
  • 87