Welcome to the JavaScript feedback portal. We’re happy you’re here! If you have feedback on how to improve the JavaScript, 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

When using the excel filter. If you select a single item ("In Review") and then hit 'Enter' (instead of ok). The query that is generated is incorrect. It creates a query of "on" instead of the expected 



Generated when pressing "Enter"
{
   "requiresCounts":true,
   "where":[
      {
         "isComplex":true,
         "ignoreAccent":false,
         "condition":"and",
         "predicates":[
            {
               "isComplex":false,
               "field":"Status",
               "operator":"contains",
               "value":"on",
               "ignoreCase":true,
               "ignoreAccent":false
            }
         ]
      }
   ],
   "skip":0,
   "take":25
}


Expected (same as clicking "Ok")
{
   "requiresCounts":true,
   "where":[
      {
         "isComplex":true,
         "ignoreAccent":false,
         "condition":"and",
         "predicates":[
            {
               "isComplex":false,
               "field":"Status",
               "operator":"equal",
               "value":"In Review",
               "ignoreCase":true,
               "ignoreAccent":true
            }
         ]
      }
   ],
   "skip":0,
   "take":25
}