closeAllPopups function

dynamic closeAllPopups()

Implementation

closeAllPopups(){
  for (var item in _popups)
    if (item.comboPopupShow == true) {
      item.comboPopupShow = false;
      item.setValue(item.data.value);
    }
}