Re: Editable datagrid

2011-11-24 Thread Javier Guerra Giraldez
On Thu, Nov 24, 2011 at 6:28 AM, Gabriel - Iulian Dumbrava wrote: > I have successfully used jqgrid. It's very customizable and you have > inline editing and form editing. same here. slicktables looks very good too, but documentation is lacking, so i haven't really

Re: Editable datagrid

2011-11-24 Thread Gabriel - Iulian Dumbrava
Hi Vikas, I have successfully used jqgrid. It's very customizable and you have inline editing and form editing. Best regards, Gabriel On 21 nov., 13:46, Vikas Rawal wrote: > I am new to django and to web programming. I am trying to build a > database application

Re: Editable datagrid

2011-11-22 Thread Mike Seidle
On Monday, November 21, 2011 03:46:49 AM Vikas Rawal wrote this and sent it to To: Django users :: > I am new to django and to web programming. I am trying to build a > database application for entering/querying/viewing data from a mysql > database. The data entry

Re: Editable datagrid

2011-11-21 Thread Ivo Brodien
> Can't this be done in django itself? Without resorting to java, ajax > and other fancy stuff? Yes, it does. Did you try the tutorials? the admin is probably what you are looking for but should only be used by staff. -- You received this message because you are subscribed to the Google

Re: Editable datagrid

2011-11-21 Thread Jeff Heard
You have multiple licensing options. One of those licenses is the GPL. How that translates to "open source" is the source of an eternal flamewar that we'll quietly skip. If your organization permits GPL then you're fine. -- Jeff On Mon, Nov 21, 2011 at 11:43 PM, Vikas Rawal <

Re: Editable datagrid

2011-11-21 Thread Vikas Rawal
> I would look at Sencha. Does not seem open-source. Is it? Vikas -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to

Re: Editable datagrid

2011-11-21 Thread Vikas Rawal
> I would look at Sencha. They seem to have a nice clean grid > control. It uses > a RESTful interface for importing / exporting data from local data > models via > an AJAX proxy. You use JSON to ship data back and forth. I'd > think you could > use something like django-piston to expose

Re: Editable datagrid

2011-11-21 Thread Jeff Heard
I would look at Sencha. They seem to have a nice clean grid control. It uses a RESTful interface for importing / exporting data from local data models via an AJAX proxy. You use JSON to ship data back and forth. I'd think you could use something like django-piston to expose your models to the

Editable datagrid

2011-11-21 Thread Vikas Rawal
I am new to django and to web programming. I am trying to build a database application for entering/querying/viewing data from a mysql database. The data entry module needs to have datagrids where users can enter multiple rows of data belonging to a particular set. Would be grateful for pointers