コード例 #1
0
 public function attach($identifier)
 {
     parent::attach($identifier);
     $this->js->addClass($identifier, "modal", true);
     $this->js->attr($identifier, "role", "dialog", true);
     $this->js->attr($identifier, "aria-labelledby", "myModalLabel", true);
     $this->js->attr($identifier, "aria-hidden", true, true);
 }
コード例 #2
0
 public function attach($identifier)
 {
     parent::attach($identifier);
     $this->js->attr($identifier, "data-toggle", "collapse", true);
 }
コード例 #3
0
ファイル: Tabs.php プロジェクト: aleboisselier/phalcon-jquery
 public function __construct(JsUtils $js)
 {
     parent::__construct($js);
     $this->tabs = array();
 }
コード例 #4
0
ファイル: Tab.php プロジェクト: aleboisselier/phalcon-jquery
 public function __construct(JsUtils $js)
 {
     parent::__construct($js);
     $this->uiName = "tab";
 }
コード例 #5
0
 public function attach($identifier)
 {
     parent::attach($identifier);
 }
コード例 #6
0
 public function attach($identifier)
 {
     parent::attach($identifier);
     $this->js->attr($identifier, "data-toggle", $this->uiName, true);
 }