Labels and classes

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
Actions
1Firrelli2Jox9273asdjo.firrelli2@myoffice.com71002VP Marketing View Edit Remove
2Patterson123x4645wpatterson@classicmodelca.com71056Sales Manager (APAC) View Edit Remove
3BondurGerard2x540gbondur@classicmodelcars.com31050Sale Manager (EMEA) View Edit Remove
4BowAnthony8x5428abow@classicmodelcars.com11056Sales Manager (NA) View Edit Remove
5JenningsLesliex540ljennings@classicmodelcars.com51143Sales Rep 2 View Edit Remove
6ThompsonLesliex4065lthompson@classicmodelcars.com11143Sales Rep 3 View Edit Remove
7FirrelliJuliex2173jfirrelli@classicmodelcars.com21143Sales Rep View Edit Remove
8PattersonStevex4334spatterson@classicmodelcars.com21143Sales Rep View Edit Remove
9TsengFoon Yueo224ftseng@classicmodelcars.com1231143Sales Rep View Edit Remove
10VanaufGeorge Nx4102gvanauf@classicmodelcars.com31143Sales Rep View Edit Remove
Search