public function ckeditor_and_custom()
{
$xcrud = get_xcrud();
// helper function set_xcrud_config()
// set url to editor. can also be set in config file
set_xcrud_config('editor_url', base_url('assets/vendor/editors/ckeditor/ckeditor.js'));
// set_xcrud_config('editor_url', base_url('assets/vendor/editors/tinymce/tinymce.min.js'));
$xcrud->table('orders');
$xcrud->change_type('status','select','','On Hold,In Process,Resolved,Shipped,Disputed,Cancelled');
$xcrud->change_type('orderDate','none');
$data['content'] = $xcrud->render();
return view('demos', $data);
}