blob: 6f87b0d18c117aae3fe09191a05e1385da64ab75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?= $this->app->component('select-dropdown-autocomplete', array(
'name' => 'boardId',
'placeholder' => t('Display another project'),
'items' => $board_selector,
'redirect' => array(
'regex' => 'PROJECT_ID',
'url' => $this->url->to('BoardViewController', 'show', array('project_id' => 'PROJECT_ID')),
),
'onFocus' => array(
'board.selector.open',
)
)) ?>
|