Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Filtering issue when having multiple columns bound to a field with specifig name. See the following sample: I have data with a property Name. That data has foreign key properties and the related data has a foreignKeyValue with property name.
Now when I filter within the first column then something weird happens: The last name column gets a undefined value
<e-column field="name" headerText="Name"></e-column>
<e-column [dataSource]="ds1" field="costCenterId" foreignKeyField="oid" foreignKeyValue="name" headerText="Kostenstelle"></e-column>
<e-column [dataSource]="ds2" field="timeTypeId" foreignKeyField="id" foreignKeyValue="name" headerText="Einheit"></e-column>
