Ejemplo n.º 1
0
 function render()
 {
     $this->js(true)->_load('wizard')->_Selector('.wizard')->wizard();
     $this->js('finished', $this->form->js()->submit())->_selector('.wizard');
     $this->app->jui->addStylesheet('compiled/wizard');
     parent::render();
 }
Ejemplo n.º 2
0
Archivo: runner.php Proyecto: xepan/hr
 function render()
 {
     // $this->js(true)->_load('masonry.pkgd.min')->masonry(['itemSelector'=>'.widget'])->_selector('.widget-grid');
     $this->app->js('chart_rendered', 'console.log(123)');
     //->masonry(['itemSelector'=>'.widget'])->_selector('.widget-grid');
     return parent::render();
 }
Ejemplo n.º 3
0
 function render()
 {
     // $this->app->jui->addStaticInclude('jquery.easypiechart.min');
     parent::render();
 }
Ejemplo n.º 4
0
 function render()
 {
     $campaign_id = $this->app->stickyGET('campaign_id');
     $m = $this->add('xepan/marketing/Model_Campaign')->load($campaign_id);
     $event = array();
     $event = json_decode($m['schedule'], true);
     $this->js(true)->_css('libs/fullcalendar')->_css('compiled/calendar');
     $this->js(true)->_load('moment.min')->_load('fullcalendar.min')->_load('xepan-scheduler');
     $this->js(true)->_selector('#calendar')->univ()->schedularDate($event);
     parent::render();
 }
Ejemplo n.º 5
0
 function render()
 {
     $campaign_id = $this->app->stickyGET('campaign_id');
     $m = $this->add('xepan/marketing/Model_Campaign')->load($campaign_id);
     $event = array();
     $event = json_decode($m['schedule'] ?: "[]", true);
     $this->js(true)->_load('subscriptioncalendar');
     $this->js(true)->_selector('#daycalendar')->xepan_subscriptioncalander(['days' => $event]);
     parent::render();
 }