Search
3636 results 571-580
Forum
- 14th Oct 2020PreCreate event on dblclic... no row selected$('#dataTbl').on( 'dblclick','tbody tr', function (e) { editor .title('Some title (Edit mode)') .edit( this ) .buttons ([ {text: 'Save', action: function () {this.submit();}}, {text: 'Cancel', action: function () {this.close();}} ]) ; } ) Hope this will help
- 9th Oct 2020How do you make a ckeditorClassic (textarea field) read only.out: editor .on('preOpen', function(e, mode, action) { if (action === 'create')
- 7th Oct 2020How to display data containing french characters sorted correctly ?is there in display mode but it isn't in all other modes which makes the plugin
- 1st Oct 2020Editor: how to display a string when field ist emptyAlternatively client side - doing just the same thing: editor .on('open', function (e, mode, action) { if ( this.val('yourField') <= '' ) { this.set( {'yourField': '---'} ); } }) .on('initSubmit', function ( e, action ) { if ( this.val('yourField') === '---' ) { this.set( {'yourField': ''} ); } })
- 30th Sep 2020Responsive with Child RowsThis is the normal mode display And this is the ebixition with the responsive mode
- 30th Sep 2020colReorder inconsistent javascript files?In minified version strict mode is skipped. Is it
- 25th Sep 2020MJoin Alias - Records deleted in lookup table when updatinghad thought that debug mode was enabled in your
- 25th Sep 2020Looking for 2 linked tables examplesHi, I'm looking for a way without using the editor server side librairy. I'm not using Datatables server-side processing mode.
- 23rd Sep 2020Different sized modals for different button functionsevent: editor.on('open', function (e, mode, action) { var container = $(editor.displayNode());
- 23rd Sep 2020Cancel preremove eventworks: editor.on('preOpen', function (e, mode, action) { if(action == 'remove') { let