
Font colorpicker is now built right into the phpGrid Wysiwyg editor for both inline and form edit mode. By default, a text field is a simple plain textarea. Call set_col_wysiwyg() to enable the Wysiwyg feature.
Note that the field must be a text data type. You can use set_col_edittype() function to change the edit type to “textarea” first.
1
| $dg -> set_col_wysiwyg('comments'); |
Run Demo
Related Posts
set_col_wysiwyg()* Only available in the Premium & Ultimate version. Parameters: $col_name: column name Description: Turns simple text…
Datagrid CaptionBy default, phpGrid displays table name as the caption. You can change the datagrid caption using…
Datagrid PaginationBy default, the pagination size is 20. It means maximum of 20 records can be displayed…