CKEditor and custom

CKEditor loading and custom field types.


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);
}

Orders

#OrderdateRequireddateShippeddateStatusCommentsCustomernumber 
12003-05-08 00:00:0013.05.2003 00:00:0013.05.2003 09:14:44Shipped mmm353
22003-05-08 00:00:0016.05.2003 00:00:0013.05.2003 00:00:00Shipped350
32003-05-20 00:00:0029.05.2003 00:00:0022.05.2003 00:00:00Shipped103
42003-05-21 00:00:0029.05.2003 00:00:0025.05.2003 00:00:00ShippedCustomer very concerned about the exact color of…112
52003-05-21 00:00:0027.05.2003 00:00:0024.05.2003 00:00:00Shipped114
62003-05-28 00:00:0007.06.2003 00:00:0002.06.2003 00:00:00Shippedegehg458
72003-06-03 00:00:0009.06.2003 00:00:0006.06.2003 00:00:00ShippedCustomer requested special shippment. The…151
82003-06-06 00:00:0012.06.2003 00:00:0011.06.2003 00:00:00Shipped141
92003-06-12 00:00:0018.06.2003 00:00:0014.06.2003 00:00:00Shipped324
102003-06-16 00:00:0024.06.2003 00:00:0021.06.2003 00:00:00Shipped198
Search