How do I prevent capitalisation of field/column names. First letter of all field names are being capitalised even though in the database its small case
3 Answers
Find this line in lib, and remove ucwords.
$col["title"] = ucwords(str_replace("_"," ",$c));
You can also define each column title. see demo example-full.php
in which file under lib folder should i make this replacement?
it would have been great if this was a settable parameter
My field names are case sensitive
Your Answer