Subversion Repositories wpShopGermany4

Rev

Rev 6314 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6165 hartmut 1
 
5767 daniel 2
    function wpsg_mod_productvariants_reload(event)
3
    {
4
 
6314 daniel 5
        var template_index = jQuery(event.target).closest('.wpsg_mod_productvariants_product_wrap').attr('wpsg-productindex');
6319 hartmut 6
 
6314 daniel 7
        wpsg_blockProductTemplate(template_index);
8
 
5767 daniel 9
		jQuery.ajax( {
10
			'url': wpsg_ajax.ajaxurl,
11
			'method': 'get',
12
			'data': {
13
				'action': 'wpsg_productvariants_switch',
6314 daniel 14
				'wpsg_post_id': jQuery('#wpsg_produktform_' + template_index + ' input[name="wpsg_post_id"]').val(),
15
				'form_data': jQuery('#wpsg_produktform_' + template_index).serialize(),
16
				'product_index': template_index
5767 daniel 17
			},
18
			'success': function(data) {
19
 
6314 daniel 20
				jQuery('#wpsg_produktform_' + template_index).replaceWith(data);
5767 daniel 21
 
22
			}
23
		} );
24
 
25
    } // function wpsg_mod_productvariants_reload(event)