Hi,
I need to change the "startswith" operator filter into "contains" for my filter bar in my grid
This is my code
@{
object op = new {@operator = "contains" };
}
<ejs-grid id="Grid" dataSource="@ViewBag.source" allowFiltering="true" allowPaging="true" allowSelection="false">
<e-grid-filterSettings operators="@op"></e-grid-filterSettings>
[...]
</ejs-grid>
But it doesn't work.
How can I fix?
Thanks