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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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>

Empty

Furthermore if the last column has [allowFiltering]=false then the last column is disabled correctly but when filtering the first column then this is not possible.