-
Couldn't load subscription status.
- Fork 156
Closed
Labels
🐛 bugAny issue that describes a bugAny issue that describes a bug✅ status: resolvedApplies to issues that have pending PRs resolving them, or PRs that have already merged.Applies to issues that have pending PRs resolving them, or PRs that have already merged.
Description
Description
Validations now working when there is a dot (".") in field property
- igniteui-angular version: 19.2
- browser: Chrome
Steps to reproduce
- Create a grid
- Add a column
- Add validation, for example minlength
- Add field property with a "." in the value, doesn't matter if it's a real one
Result
The validation is not working
Expected result
Validation should be working
Attachments
Attach a sample if available, and screenshots, if applicable.
<igx-grid [data]="northwindSwaggerEmployeeDto" primaryKey="employeeId" [allowFiltering]="true" filterMode="excelStyleFilter" class="grid" rowEditable="true">
<igx-column field="title" dataType="string" header="title" [filterable]="true" [minlength]="5" [sortable]="true" [maxlength]="10" [selectable]="false"></igx-column>
<igx-column field="address.street" dataType="string" header="addressstreet" [filterable]="true" [sortable]="true" [minlength]="5" [maxlength]="10" [selectable]="false"></igx-column>
<igx-column field="test.1" dataType="string" header="test1" [filterable]="true" [sortable]="true" [minlength]="5" [maxlength]="10" [selectable]="false"></igx-column>
<igx-column field="test2" dataType="string" header="test2" [filterable]="true" [sortable]="true" [minlength]="5" [maxlength]="10" [selectable]="false"></igx-column>
</igx-grid>Metadata
Metadata
Assignees
Labels
🐛 bugAny issue that describes a bugAny issue that describes a bug✅ status: resolvedApplies to issues that have pending PRs resolving them, or PRs that have already merged.Applies to issues that have pending PRs resolving them, or PRs that have already merged.