New to PHP Grid.
When I add a column parameter such as $col["editrules"] = set to number.It makes every subsequent column following this field to the same edit rules.
1 Answers
you're not posting any code sample, so it's difficult to know, but when i started with this grid i had a similar problem.
Do you have at the end of every column: $cols[] = $col;
and at the beginning of each column: $col = array();
If you don't you will experience what you describe.
otherwise, post some sample code.
Your Answer