Re: create non-form widgets like a ajax driven table

2009-09-07 Thread Hinnack
that sems to be build on templates... but if I do not want to uses templates? is there already something like forms? -- hinnack 2009/9/7 Ben Davis > In django terms, a table is not a widget. Widgets are basically different > input methods for form fields. Django's admin app has a built-in l

Re: create non-form widgets like a ajax driven table

2009-09-07 Thread Ben Davis
In django terms, a table is not a widget. Widgets are basically different input methods for form fields. Django's admin app has a built-in list view (I think it's called changelist) which you can customize or override. It basically just takes some effort to dig into the admin contrib app to se

create non-form widgets like a ajax driven table

2009-09-07 Thread hinnack
Hi, is there a standard way, how to create non form widgets - e.g. a table - just showing data, no edit possible - therefore no form? I know I can create an object, put in a method toHTML or render that returns the safe HTML/JS code... But how should it be done? -- Hinanck --~--~-~--~--