Gabi Rusu

Results 5 comments of Gabi Rusu

you can rewrite the default actions: defaultActions: [ { name : 'Action 1', event: function (oNode, oManager) { } // code to execute }, { name : 'Action 2', event:...

you can do something like this ``` $('#start_time').datetimepicker().on('changeDate', function (ev) { $('#end_time').datetimepicker('setStartDate', ev.date); }); $('#end_time').datetimepicker().on('changeDate', function (ev) { $('#start_time').datetimepicker('setEndDate', ev.date); }); ```

add this line to your .htaccess file: RewriteRule ^theme/.*.(blade.php|php)$ - [F,L,NC]

you can move them by changing the "config/theme.php" (before generating any themes) like so: 'themeDir' => '../resources/themes', but this will affect asset manager because it will try to fetch the...