ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: hirehop on May 18, 2023, 09:18:05 pm
-
Hello
i have small Issue with summary in Top its not editable but its allow to enter the cell
how to disable to enter the cell
-
Could you please share a small test case in jsfiddle.
-
Here I have sent you jsfiddle link
i think i have got the issue but i dont know the solution
issue is i am tring to set max character 45 that is the issue
jsfiddle js_line_no : 23
https://jsfiddle.net/hirakwebguru/nsfvb51h/36/
-
1. Please use editor.type = "textbox" instead of "input"
2. Add editable callback to prevent editing of summary row in your case:
editable: function(ui) {
return !ui.rowData.pq_gtitle;
},
https://jsfiddle.net/vm4j0orb/
-
thanks a lot