Hi Abu,
Is there any option when defining columns of PhpGrid to prevent focus it in add or edit dialog form without make it disabled or hidden.Because It is text can be changed if needed.
Regards…
2 Answers
If you are using tab to focus field, you can define large value of tab index, so that it get skipped duration tab selection.
e.g.
$col["editoptions"] = array("tabindex"=>9999)
However, when you focus using mouse click, it would work as expected.
Your Answer