Search
2900 results 831-840
Forum
- 12th May 2015How can I make Inline Edit in datatablesThanks for the help i really appreciate your work. Once again thank you very much..!
- 10th Apr 2015Editor: Inline Editing - Can you see the old and new values?Thanks Allan. That works.
- 30th Mar 2015Anyone have problems with the Editor feature, when using inline editing and tabbing and IdScrHi guys, Allan pointed me to the right spot - http://editor.datatables.net/manual/server#Server-to-client I was not returning the "row" object correctly in my response data. Thanks Allan.
- 20th Feb 2015Unable to disable date field(datepicker) inline data tableFixed! Thanks! Chris
- 28th Jan 2015permanent inline checkboxGreat - thanks for the update! Allan
- 23rd Jan 2015permanent inline checkboxesThanks again for your help.
- 28th Aug 2014IE9 & IE10 inline table editing not workingInteresting one! I've not come across this specific issue before, but it sounds like the entry button is triggering another event for some reason. Are you able to link to the page you are working on so I can take a look and debug it? Thanks, Allan
- 16th Oct 2013Consider removing inline styles on table headers?hrome seem to handle rendering of datatables more or less the same when the width styles attached to the th elements are disabled Its a Chrome 30 bug - see the discussion here: http://datatables.net/forums/discussion/17714 . The good news is that they've fixed it - we are just waiting from them to push up the update. Allan
- 10th Dec 2012Inline Move Up/Downwow I'm lazy, I should have updated this post sooner. Allan and philse thank you for the input. Given in our case we don't need at this point to absolutely control the numbering, i.e. if you click up that means you want this item to take the position field value of the one above it (regardless if that is a larger or smaller number) so we don't disable filtering. Or to put it another way the numbers in this instance mean nothing other than ordering data for display, 'this before that', 'that after this', so a number sequence might end up being along the lines of: 1,2,10,15 etc. It just means things are where we need them with minimal processing. To that end I found this snippet of code in the docs for editor. [code]// Automatically submit an edit without showing the user the form editor.edit( TRnode, null, null, false ); editor.set( 'name', 'Updated name' ); editor.set( 'access', 'Read only' ); editor.submit();[/code] Using this and what I had previously managed, which was knowing the position I wanted a record to be I could submit that change silently via the form and have our DB procedure work out the rest. Really happy with the result. Thanks.
- 1st Dec 2012Inline editing and adding rowsI can't speak for the Editable plug-in, but: I've seen Editor but it seems to favor PHP for the server-side end Editor does indeed ship with a complete PHP server-side implementation, but the client-server communication protocol is fully documented here: http://editor.datatables.net/server/ - allowing it to work with any server-side environment. We have plans for C# and Node.js server-side implementations in future. Regards, Allan