Search
2900 results 1481-1490
Forum
- 24th Apr 2017Create new table record without opening a modal and instead use input field under table?Currently no - sorry. That feature will require multiple inline editing capabilities in Editor, which isn't currently possible I'm afraid. Inline editing is limited to a single field at a time, so it isn't really suitable for adding multiple records. Allan
- 19th Apr 2017Different Create, Edit, Delete Error and Success Functionsuse nameofeditor.error() in an inline function in the statusCode
- 18th Apr 2017How to pass a render function in a JSON string?I cannot create an inline function, because the column
- 15th Apr 2017Changing fields based on field in dropdown in editortype": "select" } ] } ); // Activate an inline edit on click of
- 13th Apr 2017Enter op 'submit' buttonNot sure if this is the error I'm thinking of but is that column excluded from the inline editor columns in your event listener? Kevin
- 12th Apr 2017Excel export and newlinesand found this: The inline string Datatables uses looks
- 6th Apr 2017Exception error in postEdit eventI'm not able to inline edit once I get
- 28th Mar 2017Hook a Lookup table for select box control typeUse Editor with inline editing and the options instance as described above. That will allow you to set the value for each cell in the column also with a select box I guess. Should be no problem at all.
- 27th Mar 2017Quill - saving the formatted textand not updating using inline editing. The problem I
- 26th Mar 2017Checkbox doesn't hold valueI missed it the first time but you aren't submitting the inline changes. Try changing to this: $('#example').on( 'click', 'tbody td:not(:first-child),:nth-child(4)', function (e) { editor.inline( this, { onBlur: 'submit' } ); } ); Looks like the column should be 4 :-) Kevin