Thanks for the information about dojo. Actually I wanted to have to meet two specific goals wrt to table views. 1) Infinitely scrollable list (as promised by dojotable) 2) clicking on the headers should sort the table on that order (one click-increasing order, another click- decreasing order) Any idea on this or probably I should ask it on sprox mailing list.
On Feb 5, 3:38 pm, Alessandro Molina <[email protected]> wrote: > Actually we should probably remove the dojo part from the > documentation as it is currently unmaintained and some of the packages > like tw.dojo have been abandoned. I would suggest you not to use the > dojo based widgets. > They have been disabled by default a few releases ago and there is a > reason for that :) > > > > > > > > On Sat, Feb 4, 2012 at 6:42 PM, alind <[email protected]> wrote: > > I tried a simple application bu tit also dose not work. :( > > #from sprox.tablebase import TableBase > > from sprox.dojo.tablebase import DojoTableBase as TableBase > > class BTable(TableBase): > > __model__ = BookTable > > b_table = BTable(DBSession) > > > #from sprox.fillerbase import TableFiller > > from sprox.dojo.fillerbase import DojoTableFiller as TableFiller > > class BTableFiller(TableFiller): > > __model__ = BookTable > > b_table_filler = BTableFiller(DBSession) > > > from tgext.crud import CrudRestController > > class BController(CrudRestControl > > ler): > > > from tgext.crud import CrudRestController > > class BController(CrudRestController): > > model = BookTable > > table = b_table > > table_filler = b_table_filler > > > And here is the traceback > >http://pylonshq.com/tracebacks/0c78af75b7dea53bf8fe3ebb13a6dc1f > > > -- > > You received this message because you are subscribed to the Google Groups > > "TurboGears" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]. > > For more options, visit this group > > athttp://groups.google.com/group/turbogears?hl=en. -- You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/turbogears?hl=en.

