-
Notifications
You must be signed in to change notification settings - Fork 920
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changing column heading text #117
Comments
Hi @PhouvanhKCSV , In your entity's EntityCrudController, you've added the columns using So: $this->crud->addColumn([
'name' => 'name', // The db column name
'label' => "Fullname", // Table column heading
'type' => 'text
]); |
Thank you so much @tabacitu, it work!. Because i am using:
and what i do now is to remove and re-add the columns, it would be better to have some function to modify the label. |
Hi @PhouvanhKCSV , Glad it worked for you. Cheers! |
I've searching for the solution but could not found any, Could you please help me how can i change column heading text? Like i want to change column "Name" to "Fullname".
Thanks
The text was updated successfully, but these errors were encountered: