Subversion Repositories wpShopGermany4

Rev

Rev 6948 | Rev 7529 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6948 Rev 7486
Line 6... Line 6...
6
	
6
	
7
		<div class="wpsg_field_wrap">
7
		<div class="wpsg_field_wrap">
8
			<input 
8
			<input 
9
				type="<?php echo wpsg_getStr($this->view['field_config']['type'], 'text'); ?>"
9
				type="<?php echo wpsg_getStr($this->view['field_config']['type'], 'text'); ?>"
10
				class="form-control input-sm" 
10
				class="form-control input-sm" 
11
				name="<?php echo $this->view['field_name']; ?>" 
11
				name="<?php echo $this->view['field_name']; ?>"  
12
				tabindex="<?php
12
				tabindex="<?php
13
 
13
 
14
					if (!isset($GLOBALS['wpsg']['tabindex']))
14
					if (!isset($GLOBALS['wpsg']['tabindex']))
15
					{
15
					{
16
 
16
 
Line 49... Line 49...
49
		</div>
49
		</div>
50
				
50
				
51
	</div>
51
	</div>
52
 
52
 
53
    <?php if (wpsg_isTrue($this->view['field_config']['datepicker'])) { ?>
53
    <?php if (wpsg_isTrue($this->view['field_config']['datepicker'])) { ?>
54
    <script type="text/javascript">/* <![CDATA[ */
54
    <script>
55
 
55
 
56
        jQuery(document).ready(function() {
56
        jQuery(document).ready(function() {
57
 
57
 
58
            jQuery('#<?php echo $this->view['field_id']; ?>').datepicker( { dateFormat: 'dd.mm.yy' } );
58
            jQuery('#<?php echo $this->view['field_id']; ?>').datepicker( { dateFormat: 'dd.mm.yy' } );
59
 
59
 
60
        } );
60
        } );
61
 
61
 
62
    /* ]]> */</script>
62
    </script>
63
    <?php } ?>
63
    <?php } ?>
64
 
64
 
65
	<div class="clearfix wpsg_clear"></div>
65
	<div class="clearfix wpsg_clear"></div>
66
	
66
	
67
</div>
67
</div>
68
68