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
3
votes
2 answers

JqGrid Treegrid sorting issue

I hope you can help me, I have a structure like this: - root A -child_A1 -child_A1_1 -child_A1_2 -child_A1_3 -child_A2 -child_A2_1 -child_A2_2 -child_A2_3 - root B - child_B1 …
verofairy
  • 77
  • 3
  • 13
3
votes
1 answer

Vaadin TreeGrid has no expand or collapse icon

I use Vaadin to create a simple Web Application that contains a single TreeGrid. The TreeGrid shows up, but there is no handle to expand or collapse a root element ("Year 2010" or "Year 2011") although there are children. When I use expand(..)…
user1119859
  • 669
  • 2
  • 9
  • 20
3
votes
1 answer

How to navigate through Vaadin grid and select an item using keyboard?

I'd like to know if it's possible to navigate through Vaadin grid or treegrid and select an item using only keyboard arrow keys? From what i've seen while testing the components, the default behavior seems to be either to move only to one specific…
James A
  • 137
  • 1
  • 1
  • 13
3
votes
2 answers

Gxt tree grid double click to show pop up

How do I catch double click event in gxt tree grid? I already try this from : Click Handlers for Trees in GXT 3? tree.getSelectionModel().setSelectionMode(SelectionMode.SINGLE); tree.getSelectionModel().addSelectionHandler(new…
user608293
3
votes
1 answer

Extjs treepanel store.load() issue

I have found many examples of tree that have been loaded via root data in store which is static or via tree store that loads data tree view appears, ultimately loading the tree in advance. My requirement is the tree is initially empty, with no data…
Ameya
  • 1,914
  • 4
  • 29
  • 55
3
votes
1 answer

Load treegrid data dyanamically from a json property file in extjs

Treegrid is not getting rendered properly. Here is the code: treeGrid.js : Ext.define('App.view.DBStatusGrid', { extend : 'Ext.container.Container', xtype : 'app-DB-grid', layout : 'vbox', items : [ { xtype :…
Dev
  • 3,922
  • 3
  • 24
  • 44
3
votes
1 answer

Synchronization between onRowHover and onDragMove events

I'm working on Java, SmartGWT 2.5 & Mozilla FF 3.6.x. I'm using Tree, TreeGrid & TreeNode in my application. I have these events: addDragMoveHandler(new DragMoveHandler() { @Override public void onDragMove(DragMoveEvent event) { …
Katerina
  • 364
  • 6
  • 22
3
votes
1 answer

jqgrid loading json datas from server into treegrid doesn't display datas

I'm newbie with jqGrid and I have build a jqGrid treeGrid with local datas and all is fine. But now I'm trying to do same thing with remote JSON datas and I can't obtain treeGrid display my datas. Here is treeGrid conf…
JiheL
  • 167
  • 1
  • 5
  • 13
3
votes
3 answers

how to add css to selected row in treegrid GXT 3

I created a treegrid using GXT 3.now iwant to change background color of selected row and also i want to change the background of root node(leaf row i.e Parent row). iam using GXT 3.0 and eclipse 3.7 Thanks in advance
GLN
  • 161
  • 3
  • 14
2
votes
0 answers

SmartGWT TreeGrid field filter with SelectItem

I am using SmartGwt 3.0, GWT 2.4.0 in IE9. I have a smartgwt treeGrid in which i customize a field filter to be a SelectItem as follows: ... TreeGridField field = new TreeGridField(); SelectItem selectItem = new SelectItem(); selectItem…
mif
  • 21
  • 2
2
votes
1 answer

How to change leaf icon in TreeGrid

How can I set an icon for some column in dojox.grid.TreeGrid / LazyTreeGrid ? In dijit.Tree I can overload getIconClass method to acomplish this.
Sebastian Dusza
  • 2,470
  • 2
  • 30
  • 54
2
votes
2 answers

Custom Ext.Net TreeGrid nodes?

I'm gonna create an Ext.Net's TreeGrid with custom nodes. e.g : All of TreeGrid's nodes should have a textbox at the front of itself and users should write a number at it. See the below image : Also, I have to get each nodes' textbox values in code…
Mohammad Dayyan
  • 21,578
  • 41
  • 164
  • 232
2
votes
1 answer

GXT: How to set Checkbox TreeGrid item initially checked?

I'm developing an GIS app which can have map layers turned on by default. When layer is on, the checkbox of the Checkbox TreeGrid should be checked. I've tried to add "checked" field to my tree's BaseModel: public boolean getChecked() { return…
denu
  • 2,170
  • 2
  • 23
  • 28
2
votes
2 answers

Sorting of jqGrid (v4.1.2) treegrid not working with Ajacency Model

I have been working with jqGrid and there are some useful questions and answers regarding the Adjacency model and I have got everything I need hooked up and working except sorting. The problem is actually replicated in the answer link above. Can…
Peter Samuel
  • 282
  • 1
  • 4
  • 11
2
votes
1 answer

Nebular Tree Grid Drag and Drop rearranging Nodes

I'm looking for a solution for Nebular Tree Grid drag and drop option for rearranging hierarchical table data. Example for nested Nodes (in my case the hierarchy is a little bigger): 1 Chapter 1.1 Element 1.2 Element 2 Chapter 2.1 Element My…
CrazyEight
  • 147
  • 1
  • 18
1
2
3
18 19