Search
3636 results 381-390
Forum
- 7th Apr 2023Editor - row callback disable editor in specific cellHere is a solution I pulled together combining the info from this forum thread and another forum thread. editor.on('preOpen', function (e, mode, action) { if (editor.field('poType').val() == "child") { editor.field('PoNumber').disable(); } else { editor.field('PoNumber').enable(); } });
- 3rd Apr 2023Problem to add html Tags in editor templatesin the Editor Standalone mode? Andreas
- 28th Mar 2023where using MATCH()...AGAINST()Did you try it with AGAINST not in the binding like I suggested? $editor->where( function( $q ) use( $vts ){ $q->where( 'MATCH( TEXTCOL )', 'AGAINST( :binding IN BOOLEAN MODE )', '', false ); $q->bind( ':binding', $vts); }); That, I think should do it. Allan
- 24th Mar 2023Can't change page on certain mobile browsersChrome in mobile compatibility mode, and on Android Chrome
- 23rd Mar 2023How can I set a WHERE condition on UPDATE and DELETE?database: MY_CARS: id, make, model, plate, vin, owner_id 1,
- 23rd Mar 2023Column visibility and order exampleThat's wicked - nice one! It's something I've wanted to do for quite a while that, and will likely be how ColReorder 2 (if it ever happens) will operate (or at least one mode perhaps). Allan
- 22nd Mar 2023How to view an uploaded image, like in editor?file_id ).web_path+'"/>'; }, } ] } ); editor3.on('open', function(e, mode, action) { $('div.modal-dialog', editor2.displayNode()).addClass('modal-xl'); editor3.field(
- 22nd Mar 2023Datatables serverside and searchPanes issueYou are correct. If you disable server side processing then Datatables is in client side processing mode and expects all the data at the client. The server side processing parameters are not sent in the ajax request. Kevin
- 18th Mar 2023Is there a way to put a dynamic message in the datatables editor?editor.on( 'open', function ( e, mode, action ) { editor.field( 'name' ).message(
- 16th Mar 2023Duplicate background color disappearedexisting', className: 'btn btn-primary' } } ) .mode( 'create' ); Is that what