
Announcements
According to the docs
attribute.isValid returns true if the column value is valid; false otherwise.
But how is the validity of the data determined ?
Hi @Rutu01,
Good question! It checks if the unsaved data is correct based on the data type and format of the Dataverse column. For example, if the attribute is a whole number with a min of 0 and a max 100 (max length for text). If the data in the field is 1000, isValid will be false. If the data is a char (eg "abc"), isValid will be false. If the data is 2, it will return true. So it always checks against the configuration of the Dataverse column:
Hope this helps!