Skip to main content
June 29, 2026
Question

How to configure custom validations, enable a readonly filed while editing in Grid plus component?

  • June 29, 2026
  • 1 reply
  • 0 views

I am building POC using a grid plus component, i need help solving below two issues

1. when i try to add custom validations like preparerDueDate<RevieweDueDate it does not validate properly. Even if one row has the validation to true, the message shows on all row for that field.

2. I have a column that cannot be edited when once added, when creating a new record i need the column to be editable. how can i achieve this functionality?

Thanks in Advance.

    1 reply

    shubhama926776
    June 29, 2026

    In GridPlus, do cross-field validation row-by-row outside columnConfigs, because column-level validators can show the same error across all rows.

    For editable-on-create and readonly-after-save, use id = null for new rows and id not null for saved rows, but per-row readonly may require a custom workaround because standard GridPlus column config does not natively support it