I have a SQL DataSource with isUnique validator:
and I expected that checkComponentData=none would disable this warning in console:
but it still appears. Validator is sent correctly from backend, i.e. DSField on client contains checkComponentData=none:
Using serverOnly=true does what I want (and is shorter), so it's a minor nitpicking from me. Also, the message should have a space before field name, and single space after comma.
"v13.1p_2025-08-06/PowerEdition Deployment"
Code:
<validator type="isUnique" errorMessage="Name already exists" checkComponentData="none"/>
*20:47:05.294:MUP5:INFO:Log:DataSource testDS does not appear to have all rows loaded. Skipping client-side isUnique validation on itemname
Code:
clientGroupsDS.fields.name.validators[2] Object { checkComponentData: "none", criteriaFields: "tenant_id,name", type: "isUnique", ID: "_35" }
"v13.1p_2025-08-06/PowerEdition Deployment"
Comment