Inline Editing (Enter to Save) Default theme
Inline Editing with no button to save, Enter to save
HIDE CODE
<?php $xcrud = Xcrud::get_instance(); $xcrud->table('employees'); $xcrud->table_name('Employees - Single click cell to edit! Save by Enter only'); $xcrud->validation_required('lastName',2)->validation_required('firstName',2)->validation_required('jobTitle'); $xcrud->validation_required('email'); $xcrud->validation_pattern('email','email')->validation_pattern('extension','alpha_numeric')->validation_pattern('officeCode','natural'); $xcrud->relation('officeCode','offices','officeCode','city'); $xcrud->limit(10); $xcrud->fields_inline('lastName,firstName,extension,email,officeCode,reportsTo,jobTitle');//set the fields to allow inline editing $xcrud->inline_edit_save('enter_only');// Can be 'enter_only' or 'button_only' or 'enter_button_only' $xcrud->set_logging(true); echo $xcrud->render(); ?>
Employees - Single click cell to edit! Save by Enter only
# | Lastname | Firstname | Extension | Officecode | Reportsto | Jobtitle | ||
---|---|---|---|---|---|---|---|---|
1 | Albert | Gerard | ssdsd | 56756 | ||||
2 | lwerwe | fsdf | asdsafcdsa | dwswe@fdg.sdd | 9 | asdasd | ||
3 | Test | Kim | 234 | Kim@g.com | London | 678 | Senior Manager | |
4 | John | Doe | M | John@cf.com | London | 123 | Manager | |
5 | Hellen | Rechael | X234 | r@d.com | Boston | 987 | Manager |