Advertisement
Guest User

Untitled

a guest
May 20th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. define (['app'], function (){
  2.  
  3. webix.ui.datafilter.selectFilter.originalRefresh = webix.ui.datafilter.selectFilter.refresh;
  4. webix.ui.datafilter.selectFilter.refresh = function (master, node, value) {
  5. this.originalRefresh.apply(this, arguments);
  6. var node = this.getInputNode(node);
  7. if (node && node.options) node.options[0].text = value.$emptyString || '';
  8. };
  9.  
  10. return window.$emptyString;
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement