Hi All,
I want to show a custom error message while inserting a record.
Ex:-
$crud->required_fields('projectName','projectPriority','projectCost','projectTimeline','projectEffortEstimate',
'projectEffortConsumed','projectStartDate','projectsStatus','projectSprintSheet','clientId','typeId');
When user try to insert leaving every field empty, It shows a list of error messages and the input fields become red.
The Projectname Feild is required.
The projectPriorityFeild is required.
The projectCostFeild is required.
.
.
.and so on.
Now, I want it show a single message that fields marked red are mandatory.
How to do this.?