Hi All
I am working on an interactive grid which is editable , I want to validate the a column for each rows using dynamic action .
Col1 : Avl_Amount
Col2: Input Amount
If input amount is higher than avl_amount then the validation error message should be shown on change event of input amount highlighting the cell with red and showing inline error message.
Issues :Not able to set validity using
model.setValidity(rec, col, {
valid: false,
message: "Amount cannot be greater than available amount.",
type: "error"
});
not able to get the current row which is affteced in interactive grid.
Regards
Anchal