Re: datatables tapestry-jquery refresh

2013-01-31 Thread rosecorp
Thanks Manu, I'll give it a go and write what was a result. -- View this message in context: http://tapestry.1045711.n5.nabble.com/datatables-tapestry-jquery-refresh-tp5719681p5719697.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: datatables tapestry-jquery refresh

2013-01-31 Thread Emmanuel DEMEY
In your page, you can maybe use the AjaxResponseRenderer and its addCallback(JavaScriptCallBack) method. In your JavaScriptCallBack implementation, you will call the fnDeleteRow method of the DataTable widget : http://www.datatables.net/api 2013/1/31 rosecorp > Hi Manu, > > Sorry I wasn't acc

Re: datatables tapestry-jquery refresh

2013-01-31 Thread rosecorp
Hi Manu, Sorry I wasn't accurate enough. I Java code I listent to the event: @OnEvent(value = "removeItem") boolean onAd(String id) { service.deleteItem(id); return true; } in tml: <#>

Re: datatables tapestry-jquery refresh

2013-01-31 Thread Emmanuel DEMEY
Hi, can you explain more in details how you remove your row ?? in order to find the best solution to your problem. You can maybe return a JavaScriptCallBack to your Ajax Request, that will delete the row with the DataTable API. Manu 2013/1/30 rosecorp > Guys, > > I have functionality on plac