Search
2900 results 841-850
Forum
- 29th Nov 2012Edit Inline by double clic in Editor ?Please do not cross post: http://datatables.net/forums/discussion/12157 . It specifically says that in the 'New Discussion' instructions. Allan
- 3rd Oct 2012Removing the width inline style on the tableIf you set the width to 100% that will retain fluid layout: http://datatables.net/release-datatables/examples/basic_init/flexible_width.html . However, without that, no currently the width must be set by DataTables, otherwise the columns can jump on paging and it causes a raft of issues in IE. Allan
- 25th Aug 2012inline form commands example is not workingHi, This is a bug in 1.2.0 - thanks for pointing it out. A fix will be included in 1.2.1, which will be released next week. The problem is that TableTools isn't loaded on that page, and although Editor should work just fine without TableTools, the bug is that there is a reference to TableTools, when out checking for its existence first. For the moment, if you look int he _constructor function, you'll find var ttButtons = window.TableTools.BUTTONS; . That, and the block below it should be enclosed by if ( window.TabelTools ) . Regards, Allan
- 16th Aug 2012Inline Edit - Cell UpdateYou would need to bind a blur event to your text box and then use the fnUpdate method to update the cell. Allan
- 11th Jul 2012Custom Column and 'inline' PHPThanks for your reply, Allan. Whilst I understand some of your reply, I can't seem to put it in to practice. Upon searching the forums some more I come across this thread: http://datatables.net/forums/discussion/1581/problem-to-adding-a-custom-column/p1 Which seems to be part of what I'm looking for, however it seems that this is for an older version of DataTables. Is: [code]$sOutput .= '"column value",';[/code] still working/allowed to be used? Because I've managed to add the additional column heading called 'options'. I figure for each [code]$sOutPut[/code] I add would be an additional column? So theoretically I could do the following: [code]$sOutput .= [/code]
- 21st Nov 2011Inline Row EditingAllan, unfortunately going the DOM route is going to make it so that I have to rewrite all methods for save, restore, edit, etc. I have to do this because using jquery and the dom when edit/save/restore rows are called it has no idea of the data because fnGetData. Thanks for the information I am going to be working on a rewrite for this that will not use the DT API. Unless it can be done using server side processing. The one thing I am having a bit of trouble understanding is how I will restore the row since the data will not be stored in the DT internal data. Upon clicking Edit row I think I need to create an array of the real data, that way restore row has the "real" data to restore.
- 18th Oct 2010Ajax like performance on inline data (I have 3,000 records and dataTables is being slow)Not quite following - you want to use 2'800 rows of data, but only have it use the 10 or so which it is actually displaying? But how then will it support sorting / filtering etc. DataTables itself needs to know about all of the data, or if using server-side processing, the server will need to perform all of the operations (which you say you can't do just yet). So I'm not quite clear on what you mean about using it like remote data, but it not being remote data? Allan
- 3rd Nov 2017Editor inline.Is possible edit a cell and when press enter key pass to edit cell below?
- 10th Aug 2017Inline edit - how navigate with arrows keycode =38/40I got the tab button to work with `var dataTable = $('#racedata').DataTable({ "processing" : true, "serverSide" : true, "keys" : true, "order" : [], "ajax" : { url:"fetch.php", type:"POST" } }); table.keys.enable( 'navigation-only' ); } ` How to i get the arrows keycode=38/40 to function? Please be so kind to advise
- 28th Jul 2016[Solved]Highlight value based on value, inline editing does not saveSolved