5922 |
hartmut |
1 |
<div class="form-group form-group-sm <?php echo ((wpsg_isSizedString($this->view['field_config']['help']))?'has-feedback':''); ?>">
|
|
|
2 |
|
|
|
3 |
<label class="col-sm-6 control-label" for="<?php echo $this->view['field_id']; ?>"><?php echo $this->view['field_label']; ?></label>
|
|
|
4 |
|
|
|
5 |
<div class="col-sm-6">
|
|
|
6 |
|
|
|
7 |
<div class="wpsg_field_wrap" style="padding-top:3px;">
|
|
|
8 |
<a href="#"
|
|
|
9 |
class="<?php echo wpsg_getStr($this->view['field_config']['class']) ?>"
|
6464 |
daniel |
10 |
name="<?php echo $this->view['field_name']; ?>"
|
5922 |
hartmut |
11 |
tabindex="<?php
|
|
|
12 |
|
|
|
13 |
if (!isset($GLOBALS['wpsg']['tabindex']))
|
|
|
14 |
{
|
|
|
15 |
|
|
|
16 |
$GLOBALS['wpsg']['tabindex'] = 10;
|
|
|
17 |
|
|
|
18 |
}
|
|
|
19 |
else
|
|
|
20 |
{
|
|
|
21 |
|
|
|
22 |
$GLOBALS['wpsg']['tabindex'] += 10;
|
|
|
23 |
|
|
|
24 |
}
|
|
|
25 |
|
|
|
26 |
echo $GLOBALS['wpsg']['tabindex'];
|
|
|
27 |
|
|
|
28 |
?>"
|
|
|
29 |
id="<?php echo $this->view['field_id']; ?>"
|
|
|
30 |
><?php echo $this->view['field_link']; ?></a>
|
|
|
31 |
|
|
|
32 |
<?php if (wpsg_isSizedString($this->view['field_config']['help'])) { ?>
|
6005 |
hartmut |
33 |
<a href="#" data-wpsg-tip="<?php echo $this->view['field_config']['help']; ?>" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=<?php echo $this->view['field_config']['help']; ?>" class="glyphicon glyphicon glyphicon-question-sign form-control-feedback" aria-hidden="true"></a>
|
5922 |
hartmut |
34 |
<?php } ?>
|
|
|
35 |
</div>
|
|
|
36 |
|
|
|
37 |
</div>
|
|
|
38 |
|
|
|
39 |
<div class="clearfix wpsg_clear"></div>
|
|
|
40 |
|
|
|
41 |
</div>
|