DEMO SITE v1.7.24

Labels and classes Bootstrap 4.5 theme

Label() method will change all field names in all screens, column_name() - only grid headers.

HIDE CODE
<?php
	$xcrud = Xcrud::get_instance();
    $xcrud->table('employees');
    $xcrud->label('lastName','Surname');
    $xcrud->label('firstName','Name');
    $xcrud->label('officeCode','Office code')->label('reportsTo','Reports to')->label('jobTitle','Job title');
    $xcrud->column_name('firstName', 'NaMe!'); // only column renaming
    $xcrud->column_class('extension','align-center font-bold'); // any classname
    // predefined classnames: align-left, align-right, align-center, font-bold, font-italic, text-underline
    echo $xcrud->render();
?>

Employees

#SurnameNaMe!ExtensionEmailOffice codeReports toJob title 
1TsengFoon Yueo225ftseng@classicmodelcars.com21143Sales Rep View Edit Remove
2VanaufGeorge Nx4102gvanauf@classicmodelcars.com81143Sales Rep View Edit Remove
3BondurLouix6493lbondur@classicmodelcars.com41102Sales Rep View Edit Remove
4HernandezGerardx2028ghernande@classicmodelcars.com41102Sales Rep View Edit Remove
5CastilloPamela2x2759pcastillo@classicmodelcars.com41102Sales Rep View Edit Remove
6BottLarryx2311lbott@classicmodelcars.com71102Sales Rep View Edit Remove
7JonesBarryx102bjones@classicmodelcars.com71102Sales Rep View Edit Remove
8FixterAndyx101afixter@classicmodelcars.com61088Sales Rep View Edit Remove
9Marsh123Peterx102pmarsh@classicmodelcars.com61088Sales Rep View Edit Remove
10KingTomx103tking@classicmodelcars.com61088Sales Rep View Edit Remove
Search