treegrid

DHTMLXtree Grid Caching

I'd like to disable Row Caching in DHTMLXTreeGrid such that every time a row is opened it is realoaded from the server, and not fetched from cache. Is this at all possible? ...

ExtJs TreeGrid with checkable nodes

If possible, how use? ...

How to make SmartGWT TreeGrid reparent selectively allowed depending on nodes

I have the following data in a SmartGWT TreeGrid object. Home |-Room 1 |-Room 2 |-Table |-Chair Reparenting is allowed by calling treeGrid.setCanReparentNodes(true); I want to allow selectiv reparenting only: for example, it should be possible to move (drag&drop) the Table to Room 1, but it should not be possible to move t...

Does anybody know how to load data in ExtJS TreeGrid on demand?

Hi! I have found a good TreeGrid control in ExtJS library. But there is one thing, I have very big tree and I need the loading on demand. Does anybody know how to load data in ExtJS TreeGrid on demand? My code is here: Ext.onReady(function () { Ext.QuickTips.init(); var tree = new Ext.ux.tree.TreeGrid({ title: 'Encyclopedia'...

How to use JqGrid TreeGrid in MVC.NET 2?

Hi, theres not that much information over internet on how to use Trirand JqGrid TreeGrid option with MVC2. Anybody with an example? ...

Dojo datagrid and treegrid help - datagrid has a reformating flash?

Hi stackers, I'm having a bit of a time trying to get Dojo grids (1.5) to play nice. Specifically I've spent about two weeks of work trying to implement a grid that allows for our result set data to collapse into rows, where rows can be expanded. Data comes in as a full set in JSON format, using ItemFileReadStore as the store. Any sub...

Where can I find examples on creating a custum TreeGrid and datastore in Dojo 1.5?

Hello stackers, I would like to create a dojo grid with expandable/collapsible rows. Each page will have 25 collapsed rows, but each collapsed row can contain any number of items (for example, 100 items). TreeGrid looks like a good option, but the default layout of TreeGrid is not what I need - the current 1.5 implementations show a '...

Can I set up a jqgrid treegrid so that it fetches the child data on row open? How?

The example treegrid implementation isn't exactly crystal clear. I've got a grid like: ID Name Val + 1 Foo 45 + 2 Bar 30 Which I'm populating from a json object. When you click on the +, I want to go to the server and get the data associated with that row's id: ID Name Val - 1 FooBar 45 - Foo 20...

How to enable Multiple Selection on dojox TreeGrid ?

Hi I am looking for TreeGrid which enables multiple Selection using CheckBoxes. I saw the Dojox TreeGrid looks promising but lacks the Multiple Selection capabilities. I saw a Tree with checkboxes at: http://www.thejekels.com/dojo/Dijit_Tree_Chkbox.html But I haven't figure out is there easy way to enable the same on TreeGrid ? thx tsema...