Search
3636 results 831-840
Forum
- 18th Mar 2018compare old / new values?like this: editor.on(`open`, function(e, mode, action) { fieldOldValue = this.field(`yourField`).val(); }); editor.on(`preSubmit`,
- 14th Mar 2018Multi-row editor doesn't render valueit happens. In multi-edit mode it doesn't call "set"
- 26th Feb 2018Buttons as Dropdpwnsconfig) { // Start in edit mode, and then change to
- 26th Feb 2018Issue with 1 - n combinationyou enable Editor's debug mode (add ->debug(true) before the
- 23rd Feb 2018Hide Duplicate Example FormOops! I forgot the submit() call: { extend: "selected", text: 'Duplicate', action: function ( e, dt, node, config ) { editor .edit( table.rows( {selected: true} ).indexes(), false, { title: 'Duplicate record', buttons: 'Create from existing' } ) .mode( 'create' ) .submit(); } }, That should do it. Allan
- 21st Feb 2018Field display styling options with Bootstrap 4I ended up using some jQuery to fix this: editor.on('open', function(e, mode, action) { $( ".DTE_Field.form-group.row" ).each(function(){ $( this ).removeClass('row') }) })
- 20th Feb 2018Debug Environment for DT/Editor/PHPtable.row( {selected: true} ).id().substring(4)) .mode( 'create' ); }], ... My expectation would
- 20th Feb 2018Submit button not working with responsive layoutwith the save button mode enabled). It works on
- 14th Feb 2018Adding/submitting dynamic fieldsis already in edit mode or not. If so,
- 12th Feb 2018AutoFill and KeyTable together with option: editOnFocusalready being in edit mode, causing overlap. I'll look