Search
2900 results 821-830
Forum
- 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
- 17th Jan 2016Can we do inline edit for whole data table at the same time.Sorry no. As I say, it is not a feature that Editor currently has. There isn't some magic option to enable that feature. Allan
- 12th Jan 2016Inline editing primary key column / DT_RowId updatedIt will depend upon your forum settings, which you can access by clicking your user name above. Allan
- 8th Dec 2015Selection not firing with dataTables and inline dataApologies, I forgot I'm wrapping the dataTable initialization so I can have the select event option there, because there is no option in the dataTables initializing options and you have to do the "on function" call after. The problem is in my wrapping logic.
- 24th Aug 2015Having problem doing editor inline if the DOM: does not have i (information summary)Hi, This is an error in the Select 1.0.0 release I'm afraid. This commit fixed the issue and you can use the file from that repo, or the nightly version which contains that fix. Allan
- 18th Aug 2015Does Inline editing support the submit:all parameter?Hi, Currently no as you say. I think I'm going to need to review this for the next release. Allan
- 31st Jul 2015Using Editor inline with Ajax ..Okay - sounds good :-) Allan
- 28th Jul 2015Example of trapping enter key when using inline editbump