Forum Post: [beta 4.0.4.] Kendo Combobox Replacing By Dropdownlist

  • Thread starter Thread starter Meryk
  • Start date Start date
Status
Not open for further replies.
M

Meryk

Guest
Hi Siraj, As I was saying in that previous post: https://community.progress.com/community_groups/rollbase/f/25/p/21725/76816#76816, it is a bit frustrating for us to change our code again, although your changes make sense. FYI, the main reason we are manipulating the kendoComboBox widget is for filtering, which we could not do with a RB API. So the way we did that is the following : var comboBox= $("#opportunityType").data("filedIntName"); var _flt = { logic: "or", filters: [] }; _flt.filters.push({ field: 'code', operator: "contains", value: "myValue" }); comboBox.dataSource.filter(_flt); Are you providing a rb API for filtering that goes with this change now ?If no, can you please suggest a way we could achieve that, ideally something we wouldn't need to change in future upgrades? Thank you Meryem

Continue reading...
 
Status
Not open for further replies.
Back
Top