Home > OS >  How to access value from filter in angular
How to access value from filter in angular

Time:03-01

I am using Kendo Grid 3.6.0 and Angular 6

Below is the filter I am trying to enter for AssetName column in Kendo Grid

Kendo Grid Column

How to get value of A254 in the screenshot above into a new variable

CodePudding user response:

const newVariable = ((<any>(<CompositeFilterDescriptor>filter.filters[0]).filters[0]).value);
  • Related