Bug report
Filter component operators are always rendered in the initial order, regardless of the specified order
Reproduction of the problem
This code:
.Fields(f =>
{
f.Add(p=>p.FirstName).Operators(o =>
o.String(n =>n
.Contains("Contains")
.Eq("Is equal to")
.Custom("john", c => c.Text("John").Handler("oddNumbersHandler"))
)
);
Renders to this:
Expected/desired behavior
The order of the operators shall be in the predefined order.
Environment
Kendo UI version: [all]
Browser: [all]