示例#1
0
 /**
  * getJS
  * 
  * get the javascript file for the correct operation of the selection box.
  * 
  * @param type $method
  * @return array
  */
 public function getJS($method)
 {
     $array_js = parent::getJS($method);
     $select_js1 = JS::getPath("11-ui.multiselect.js");
     $select_js2 = JS::getPath("12-ui-multiselect-es.js");
     $array_js[] = $select_js1;
     $array_js[] = $select_js2;
     return $array_js;
 }