Hi Abu,
I have some fields that I do not want to show in the grid, and I want them to appear in the add form. It’s possible? Can you help me out? Thank you
1 Answers
For those columns, you can set:
$col[“show”][“list”] = false;
$col[“show”][“add”] = true;
you can also use edit,view too in second index.
Your Answer