datagrid: any good one that can be used?

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
bghayad
Forum Newbie
Posts: 9
Joined: Thu Oct 29, 2009 1:13 pm

datagrid: any good one that can be used?

Post by bghayad »

Hi All;

I am looking for a datagrid (something open source) that is good enough and enable me to use it with some kind of rich features to display the query result in a grid and having the ability to select some rows in displayed in the grid and then click on submit button to do an action for those who are selected.

Any one advise?
Appreciate your kindly help.

Regrads
Bilal
User avatar
tr0gd0rr
Forum Contributor
Posts: 305
Joined: Thu May 11, 2006 8:58 pm
Location: Utah, USA

Re: datagrid: any good one that can be used?

Post by tr0gd0rr »

Ext JavaScript has some crazy amazing grids. One that might meet your needs is the second grid demo here. Also see the page with all ExtJS Demos.

I've used ExtJS a fair amount. It is great if they have exactly the module you need, but it is a bit unweildy to do anything custom.
alex.barylski
DevNet Evangelist
Posts: 6267
Joined: Tue Dec 21, 2004 5:00 pm
Location: Winnipeg

Re: datagrid: any good one that can be used?

Post by alex.barylski »

It is great if they have exactly the module you need, but it is a bit unweildy to do anything custom
Amazing framework isnt it? However, what do you mean by unweidly?
User avatar
tr0gd0rr
Forum Contributor
Posts: 305
Joined: Thu May 11, 2006 8:58 pm
Location: Utah, USA

Re: datagrid: any good one that can be used?

Post by tr0gd0rr »

PCSpectra wrote:Amazing framework isnt it? However, what do you mean by unweidly?
So many configuration options that it isn't clear how to change default behavior. When you find that you can't change the behavior you want, you have to extend a class and learn even more about the configuration options and methods so that it works properly.

I've spent so many hours looking at Ext API Docs compared to time spent with docs on widgets for jQuery or Prototype because Ext is so complex and interwoven. For example, here is the class heirarchy for Ext.form.TimeField:

Observable > Component > BoxComponent > Field > TextField > TriggerField > ComboBox > TimeField

Makes for great code re-use but is hard to follow :D
alex.barylski
DevNet Evangelist
Posts: 6267
Joined: Tue Dec 21, 2004 5:00 pm
Location: Winnipeg

Re: datagrid: any good one that can be used?

Post by alex.barylski »

It is hard to take it all in, but the payoff is incredible, the best framework I have ever worked with, outside of Qt for C++. Jack is a very talented software architect (as well as his crew).

It also does waaaay more than jQuery so obviously the learning curve is much greater :)
Post Reply