ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: omerix on October 26, 2017, 04:50:36 am
-
Hello,
How do I implement the following code in the wrong lines.
if (XXXX.prkod == 0) {
$grid.pqGrid("addClass", {rowIndx: rowIndx,cls: 'ui-state-error'});
}
I use this: https://paramquery.com/pro/demos/editing_batch
-
I'm not clear on your post and its title.
But if your question is how to flag invalid values, then validations are used for that.
e.g.,
validations: [
{ type: 'minLen', value: 1, msg: "Required." },
{ type: 'maxLen', value: 20, msg: "length should be <= 20" }
]
-
Hi, I do not want verification.
If it is an invalid "update" I want to add the line "ui-state-error" class.
If it is invalid, I understand the values called "changes.updateList".
I have to make a sentence like the following.
if (changes.updateList['PRKOD']!= 0) {
grid.pqGrid("addClass", {rowIndx: rowIndx,cls: 'ui-state-error'});
}
-
There are 2 ways to call pq methods: https://paramquery.com/pro/tutorial#topic-methods
If grid is grid instance in your code, then it's
grid.addClass({rowIndx: rowIndx,cls: 'ui-state-error'});