Subversion Repositories wpShopGermany4

Rev

Rev 7868 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7868 Rev 8040
Line 249... Line 249...
249
 
249
 
250
	function wpsg_mod_productindex_goPage(page)
250
	function wpsg_mod_productindex_goPage(page)
251
	{
251
	{
252
 
252
 
253
		jQuery('#wpsg_mod_productindex_filter_page').val(page);
253
		jQuery('#wpsg_mod_productindex_filter_page').val(page);
254
		jQuery('#wpsg_mod_productindex_form').submit();
254
		jQuery('#wpsg_mod_productindex_form').trigger('submit');
255
 
255
 
256
		return false;
256
		return false;
257
 
257
 
258
	} // function wpsg_mod_productindex_goPage(page)
258
	} // function wpsg_mod_productindex_goPage(page)
259
 
259
 
260
	function wpsg_mod_productindex_viewselect(template)
260
	function wpsg_mod_productindex_viewselect(template)
261
	{
261
	{
262
 
262
 
263
		jQuery('#wpsg_mod_productindex_template').val(template);
263
		jQuery('#wpsg_mod_productindex_template').val(template);
264
		jQuery('#wpsg_mod_productindex_form').submit();
264
		jQuery('#wpsg_mod_productindex_form').trigger('submit');
265
 
265
 
266
		return false;
266
		return false;
267
 
267
 
268
	} // function wpsg_mod_productindex_viewselect(template)
268
	} // function wpsg_mod_productindex_viewselect(template)
269
 
269
 
Line 271... Line 271...
271
 
271
 
272
		jQuery('.wpsg_mod_productindex_filter_order').bind('change', function() {
272
		jQuery('.wpsg_mod_productindex_filter_order').bind('change', function() {
273
 
273
 
274
			jQuery('#wpsg_mod_productindex_filter_order').val(jQuery(this).find('option:selected').attr('value'));
274
			jQuery('#wpsg_mod_productindex_filter_order').val(jQuery(this).find('option:selected').attr('value'));
275
			jQuery('#wpsg_mod_productindex_filter_page').val('1');
275
			jQuery('#wpsg_mod_productindex_filter_page').val('1');
276
			jQuery('#wpsg_mod_productindex_form').submit();
276
			jQuery('#wpsg_mod_productindex_form').trigger('submit');
277
 
277
 
278
		} );
278
		} );
279
 
279
 
280
	} );
280
	} );
281
 
281