> > Hello, > > In-line editing is listed as a feature of powertable. Would it be > possible for you to include a working example of this in your demo? >
Yes, I am working to finish some features and the most important (server side processing) In my plan is a tutorial, documentations and a video. I am also including a Comet Queue as datasource The in-line editing works but I did not finish yet the server side callback, look this example: http://datatables.net/examples/api/editable.html When a cell is edited the table calls an ajax function and passes the row key + new value, I just need to implement the server side part. if you want to enable this feature just do: plugins.powerTable.extra = dict(editable={'editablecallback':'yourfunction'}) where 'yourfuntion' should be a function to receive 'newvalue' and 'row_id' as parameters, in that function you have to implement the table update. I'll try to put an example online very soon. Thanks. Bruno. <http://datatables.net/examples/api/editable.html>