Search
2927 results 821-830
Forum
- 13th Oct 2016I am unable to use the Select Box in Inline editing.I got the answer. I was missing select: true in my datatable Thanks.. Love Dhaka
- 9th Aug 2016Inline editor, Fixed column is not working on edit with scroll barLooks correct to me. Can you link to a page showing the issue (per the forum rules). Allan
- 2nd Aug 2016Fixed Columns not Automatically Resizing on Inline Editor ErrorAwesome! That gives me a direction to go on at least. Thanks!
- 8th Jul 2016Editor - inline submit optionthank you !
- 30th May 2016freeware is not availbale for inline editable js?Do you mean Editor? If so, then you are correct, it is commercial software, the proceeds from which enable the rest of DataTables to be open source software. Allan
- 19th Apr 2016Handling select booleans in an inline editor.Out of curiosity there any way to apply the function to all select boxes in one go? yes - using the node() method. That will give you the container nodes for the selected fields, and then you can pick the select elements from that: $( 'select', editor.node( [ 'field1', 'field2', ... ] ) ).on( 'change', function ... ); Regards, Allan
- 5th Apr 2016inline edit for custom field typeHi, I've just added a reply in that thread. If you could provide a link to a page showing an issue, in that thread, that would be great. Thanks, Allan
- 24th Mar 2016Issue with calendar in inline editor.
- 21st Mar 2016Inline editor with multiple checkboxesHi Allan, You can close this ticket. None of the solution above worked, so I handled differently. Basically, rather than calling the editor edit() method, I build the ajax call myself and post exactly the data as I want them presented to the server. $('#dt_permissions').on('change', 'input.editor-active-read', function () { $.ajax({ type: "POST", method: "PATCH", data: { usergroup_id: $(this).attr("usergroup_id"), id: $(this).prop('id'), value: $(this).prop('checked') ? 1 : 0 }, url: "API/v1/AdminPermissions/update" }); }); Rgds Sébastien
- 1st Feb 2016Inline editor: Get current row data in setData eventYou can use modifier() to get whatever was used to trigger the edit - a row index or node for example. You could perhaps use: var modifier = editor.modifier(); var data = table.row( modifier ).data(); Note that in postSubmit the data will be the new data for the row. By that time the row has been updated. Allan