jQuery UI Widgets Forums Grid TotalRecords ignored, Pager with wrong data

This topic contains 3 replies, has 2 voices, and was last updated by  TDS 6 years, 10 months ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author

  • TDS
    Participant

    To calculate correct pagesize we initialize data later. When binding data later after initialization the pager won’t work correctly anymore.

    Correct: 103 total records
    Current: 22 total records (the row count itself of the grid), but source “total” is 103

    We use jQWidgets v5.6.0 (2018-Feb).

    var containerMenu = $("<div/>");
    var gridReady = false;
    
    function calcPagesize(grid) {
    	var row_height = grid.jqxGrid("rowsheight");
    	var height = grid.height()
    		-containerMenu.height()
    		-$(".jqx-grid-header", grid).height()
    		-$("#horizontalScrollBargrid.jqx-scrollbar", grid).height()
    		-$(".jqx-grid-pager", grid).height();
    	var oldPageSize = grid.jqxGrid("pagesize");
    	var newPageSize = Math.floor(Math.max(1, height / row_height));
    	if (oldPageSize != newPageSize) {
    		grid.jqxGrid("pagesize", newPageSize);
    		grid.jqxGrid("pagesizeoptions", [newPageSize]);
    		grid.jqxGrid("updatebounddata", "data");
    	}
    }
    
    $(document).ready(function() {
    	$.post("", {
    		mod: "",
    		file: "products.ajax",
    		action: "source",			
    	}, function(data) {
    		var grid = $("#grid");
    		var source = {
    			root: "rows",
    			datatype: "json",
    			datafields: data,
    			cache: false,
    			url: "?file=products.ajax&action=data",			
    			filter: function() {
    				// update the grid and send a request to the server.
    				grid.jqxGrid("updatebounddata", "filter");
    			},
    			sort: function() {
    				// update the grid and send a request to the server.
    				grid.jqxGrid("updatebounddata", "sort");
    			},
    			beforeprocessing: function(data) {		
    				if (data != null) {
    					source.totalrecords = data[0].total;
    				}
    			}
    		};
    		var dataadapter = new $.jqx.dataAdapter(source, {
    			loadError: function(xhr, status, error) {
    				alert(error);
    			}
    		});
    		$.post("", {
    			mod: "",
    			file: "products.ajax",
    			action: "columns",			
    		}, function(data) {
    			// initialize jqxGrid
    			grid.jqxGrid({
    				width: "100%",
    				height: "100%",
    //				autoheight: true,
    //				autorowheight: true,
    				updatedelay: 1,
    				enableanimations: false,
    				enabletooltips: false,		
    				filterable: true,
    				sortable: true,
    				pageable: true,
    				virtualmode: false,
    				columns: data.c,
    				columngroups: data.g.length > 0 ? data.g : null,
    				columnsresize: true,
    				columnsreorder: false,
    				selectionmode: "multiplerowsextended",
    				showfilterrow: true,
    				showtoolbar: true,
    	            localization: getLocalization("de"),
    				rendertoolbar: function (statusbar) {
    					// appends buttons to the status bar.
    					var container = $("<div style='overflow: hidden; position: relative;'></div>");
    					containerMenu = $("#containerMenu");
    					container.append(containerMenu);
    					statusbar.append(container);
    					containerMenu.jqxMenu({ showTopLevelArrows: true, clickToOpen: true }).css("display", "block");
    					containerMenu.on("itemclick", function(event) {
    						var args = event.args;
    						return false;
    					});
    					// toolbar is rendered AFTER "ready"
    					calcPagesize(grid);
    					grid.jqxGrid({ source: dataadapter });
    					gridReady = true;
    				},	                
    				rendergridrows: function(obj) {
    					return obj.data;    
    				},
    				rendered: function() {
    					if (gridReady) {
    						calcPagesize(grid);
    					}
    				},
    				ready: function () {
    				}
    			});
    			grid.on("bindingcomplete", function(event) {
    				grid.jqxGrid("autoresizecolumns");
    			});
    /*
    			grid.on("mouseover", function(event) {
    				if (gridReady) {
    					var cell = grid.jqxGrid("getcellatposition", event.pageX, event.pageY);
    					console.log(cell);
    					var cell2 = grid.jqxGrid("getcell", cell.row, cell.column);
    					console.log(cell2);
    					return;
    					var cellValue = cell.value;
    					var div = $("<div>" + cellValue + "</div>");
    					$("body").append(div);
    					div.hide();
    					if (div.height() > grid.jqxGrid("rowsheight") || div.width() > $(cell).width()) {
    						grid.jqxTooltip({ content: cellValue });
    						grid.jqxTooltip("open", pageX + 15, pageY + 15);
    					}
    					div.remove();
    				}
    			});
    */
    		}, "json");
    	}, "json");
    });
    

    source:

    
    [{"name":"1_type","type":"int"},{"name":"1_name","type":"string"},{"name":"1_dimension_outer","type":"string"},{"name":"1_x_outer","type":"int"},{"name":"1_y_outer","type":"int"},{"name":"1_z_outer","type":"int"},{"name":"1_dimension_inner","type":"string"},{"name":"1_x_inner","type":"int"},{"name":"1_y_inner","type":"int"},{"name":"1_z_inner","type":"int"},{"name":"1_volume","type":"float"},{"name":"1_weight_empty","type":"float"},{"name":"1_weight_loading","type":"float"},{"name":"1_corpus","type":"string"},{"name":"1_corpus_material","type":"string"},{"name":"1_corpus_color","type":"string"},{"name":"1_cover","type":"string"},{"name":"1_cover_material","type":"string"},{"name":"1_cover_color","type":"string"},{"name":"1_cars","type":"string"},{"name":"1_customer","type":"string"},{"name":"1_tpl","type":"int"},{"name":"1_public","type":"int"},{"name":"1_status","type":"string"},{"name":"1_title","type":"string"},{"name":"1_subtitle","type":"string"},{"name":"1_description","type":"string"},{"name":"1_details","type":"string"}]
    

    columns:

    
    {"c":[{"text":"Typ","datafield":"1_type"},{"text":"Name","datafield":"1_name"},{"text":"x","datafield":"1_x_outer","columngroup":"1_dimension_outer"},{"text":"y","datafield":"1_y_outer","columngroup":"1_dimension_outer"},{"text":"z","datafield":"1_z_outer","columngroup":"1_dimension_outer"},{"text":"x","datafield":"1_x_inner","columngroup":"1_dimension_inner"},{"text":"y","datafield":"1_y_inner","columngroup":"1_dimension_inner"},{"text":"z","datafield":"1_z_inner","columngroup":"1_dimension_inner"},{"text":"Ladevolumen in l","datafield":"1_volume"},{"text":"Eigengewicht in kg","datafield":"1_weight_empty"},{"text":"Zuladung in kg","datafield":"1_weight_loading"},{"text":"Material","datafield":"1_corpus_material","columngroup":"1_corpus"},{"text":"Farbe","datafield":"1_corpus_color","columngroup":"1_corpus"},{"text":"Material","datafield":"1_cover_material","columngroup":"1_cover"},{"text":"Farbe","datafield":"1_cover_color","columngroup":"1_cover"},{"text":"Fahrzeuge","datafield":"1_cars"},{"text":"Kunde","datafield":"1_customer"},{"text":"Vorlage","datafield":"1_tpl"},{"text":"Frei verf&uuml;gbar","datafield":"1_public"},{"text":"Status","datafield":"1_status"},{"text":"Titel","datafield":"1_title"},{"text":"Untertitel","datafield":"1_subtitle"}],"g":[{"text":"Au\u00dfenma\u00df in mm","name":"1_dimension_outer"},{"text":"Innenma\u00df in mm","name":"1_dimension_inner"},{"text":"Korpus","name":"1_corpus"},{"text":"Deckel","name":"1_cover"}]}
    

    data:

    
    [{"total":103,"rows":[{"data_id":1,"lft":1,"rgt":2,"root":1,"parent":0,"lvl":1,"ord":1,"template_id":1,"status":0,"time":"2017-01-16 10:29:59","1_type":"Staubox","1_name":"STB001","1_cars":"Volkswagen T4","1_title":"%car%","1_subtitle":"Stauboxen von KAMEI automotive \u2013 praktisch, robust und sicher.","1_description":"<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:33%\">KAMEI hat Stauboxen speziell f&uuml;r Pritschenwagen bzw. Doppelkabinen entwickelt. Sie dienen zur sicheren Aufbewahrung von Werkzeug, Kleinmaterial etc. Kurzum f&uuml;r alles, was sicher verstaut werden muss.<br>\r\nDer Grundk&ouml;rper ist hergestellt aus GFK, einem Kunststoffmaterial, das besonders stabil und bruchfest ist. Der schwarze Deckel besteht aus hochwertigem ABS, ist UV-best&auml;ndig, der Fahrzeugkontur<\/td>\r\n<td style=\"width:33%\">angepasst und kann problemlos in Wagenfarbe lackiert werden. Umlaufende Gummiprofile sch&uuml;tzen vor Spritzwasser, zwei Sicherheitsschl&ouml;sser verhindern unbefugten Zugriff.<br>\r\nBei Bestellung eines Boxenpaares haben beide Boxen gleiche Schl&uuml;ssel. Eine ausf&uuml;hrliche Montageanleitung sowie alle erforderlichen Montageteile geh&ouml;ren zum<br>\r\nLieferumfang.<\/td>\r\n<td style=\"width:33%\">Der Unterbau ist nicht m&ouml;glich bei Kipperfahrzeugen, tiefergelegten und verbreiterten Ladefl&auml;chen.<br>\r\n<br>\r\n<strong>Stauboxen - der zus&auml;tzliche Stauraum<\/strong>\r\n<ul>\r\n<li>2 Sicherheitsschl&ouml;sser<\/li>\r\n<li>einfache Montage<\/li>\r\n<li>Material:<br>\r\n>UP-GF<, >ABS<, schwarz<\/li>\r\n<li>T&Uuml;V-frei<\/li>\r\n<\/ul>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n","1_details":"<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"1\"><\/td>\r\n<td style=\"width:55%\"><strong>VW T4, <\/strong>9\/90<br>\r\nInnenma&szlig;e: B x T x H = 1105 x 395 x 330 mm<br>\r\nInhalt 100 Liter, Eigengewicht 18 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>Pritsche<\/strong>\r\n\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 2920 mm<\/strong>, passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>001<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 2920 mm<\/strong>, passt vorne rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>002<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>VW T4, <\/strong>9\/90<br>\r\nStaubox mit zus&auml;tzlich einer montierten<br>\r\nStahl-Aufprall-St&uuml;tzstrebe<br>\r\nInnenma&szlig;e: B x T x H = 690 x 395 x 330 mm<br>\r\nInhalt 70 Liter, Eigengewicht 11 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>Pritsche<\/strong>\r\n\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt hinten links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt Mitte links mit Stahl-Aufprall-Schutzstrebe 003L<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt 2x links, wobei eine Holz-Aufprallstrebe entfernt werden muss<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt Mitte rechts, mit Stahl-Aufprall-Schutzstrebe 003R<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt hinten rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>VW T4, <\/strong>9\/90<br>\r\nInnenma&szlig;e: B x T x H = 690 x 395 x 330 mm<br>\r\nInhalt 70 Liter, Eigengewicht 11 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\">Doppelkabine\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n\r\n","1_dimension_outer":"00 0","1_x_outer":0,"1_y_outer":0,"1_z_outer":0,"1_dimension_inner":"1105 395 330","1_x_inner":1105,"1_y_inner":395,"1_z_inner":330,"1_volume":100,"1_weight_empty":18,"1_weight_loading":40,"1_corpus":"4 1","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 1","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":2,"lft":3,"rgt":4,"root":2,"parent":0,"lvl":1,"ord":2,"template_id":1,"status":0,"time":"2017-01-16 10:29:59","1_type":"Staubox","1_name":"STB002","1_cars":"Volkswagen T4","1_title":"%car%","1_subtitle":"Stauboxen von KAMEI automotive \u2013 praktisch, robust und sicher.","1_description":"<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:33%\">KAMEI hat Stauboxen speziell f&uuml;r Pritschenwagen bzw. Doppelkabinen entwickelt. Sie dienen zur sicheren Aufbewahrung von Werkzeug, Kleinmaterial etc. Kurzum f&uuml;r alles, was sicher verstaut werden muss.<br>\r\nDer Grundk&ouml;rper ist hergestellt aus GFK, einem Kunststoffmaterial, das besonders stabil und bruchfest ist. Der schwarze Deckel besteht aus hochwertigem ABS, ist UV-best&auml;ndig, der Fahrzeugkontur<\/td>\r\n<td style=\"width:33%\">angepasst und kann problemlos in Wagenfarbe lackiert werden. Umlaufende Gummiprofile sch&uuml;tzen vor Spritzwasser, zwei Sicherheitsschl&ouml;sser verhindern unbefugten Zugriff.<br>\r\nBei Bestellung eines Boxenpaares haben beide Boxen gleiche Schl&uuml;ssel. Eine ausf&uuml;hrliche Montageanleitung sowie alle erforderlichen Montageteile geh&ouml;ren zum<br>\r\nLieferumfang.<\/td>\r\n<td style=\"width:33%\">Der Unterbau ist nicht m&ouml;glich bei Kipperfahrzeugen, tiefergelegten und verbreiterten Ladefl&auml;chen.<br>\r\n<br>\r\n<strong>Stauboxen - der zus&auml;tzliche Stauraum<\/strong>\r\n<ul>\r\n<li>2 Sicherheitsschl&ouml;sser<\/li>\r\n<li>einfache Montage<\/li>\r\n<li>Material:<br>\r\n>UP-GF<, >ABS<, schwarz<\/li>\r\n<li>T&Uuml;V-frei<\/li>\r\n<\/ul>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n","1_details":"<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"1\"><\/td>\r\n<td style=\"width:55%\"><strong>VW T4, <\/strong>9\/90<br>\r\nInnenma&szlig;e: B x T x H = 1105 x 395 x 330 mm<br>\r\nInhalt 100 Liter, Eigengewicht 18 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>Pritsche<\/strong>\r\n\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 2920 mm<\/strong>, passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>001<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 2920 mm<\/strong>, passt vorne rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>002<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>VW T4, <\/strong>9\/90<br>\r\nStaubox mit zus&auml;tzlich einer montierten<br>\r\nStahl-Aufprall-St&uuml;tzstrebe<br>\r\nInnenma&szlig;e: B x T x H = 690 x 395 x 330 mm<br>\r\nInhalt 70 Liter, Eigengewicht 11 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>Pritsche<\/strong>\r\n\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt hinten links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt Mitte links mit Stahl-Aufprall-Schutzstrebe 003L<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt 2x links, wobei eine Holz-Aufprallstrebe entfernt werden muss<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt Mitte rechts, mit Stahl-Aufprall-Schutzstrebe 003R<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt hinten rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>VW T4, <\/strong>9\/90<br>\r\nInnenma&szlig;e: B x T x H = 690 x 395 x 330 mm<br>\r\nInhalt 70 Liter, Eigengewicht 11 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\">Doppelkabine\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n\r\n","1_dimension_outer":"","1_x_outer":0,"1_y_outer":0,"1_z_outer":0,"1_dimension_inner":"1105 395 330","1_x_inner":1105,"1_y_inner":395,"1_z_inner":330,"1_volume":100,"1_weight_empty":18,"1_weight_loading":40,"1_corpus":"4 10","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 10","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":3,"lft":5,"rgt":6,"root":3,"parent":0,"lvl":1,"ord":3,"template_id":1,"status":0,"time":"2017-01-16 10:29:59","1_type":"Staubox","1_name":"STB003","1_cars":"Volkswagen T4","1_title":"%car%","1_subtitle":"Stauboxen von KAMEI automotive \u2013 praktisch, robust und sicher.","1_description":"<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:33%\">KAMEI hat Stauboxen speziell f&uuml;r Pritschenwagen bzw. Doppelkabinen entwickelt. Sie dienen zur sicheren Aufbewahrung von Werkzeug, Kleinmaterial etc. Kurzum f&uuml;r alles, was sicher verstaut werden muss.<br>\r\nDer Grundk&ouml;rper ist hergestellt aus GFK, einem Kunststoffmaterial, das besonders stabil und bruchfest ist. Der schwarze Deckel besteht aus hochwertigem ABS, ist UV-best&auml;ndig, der Fahrzeugkontur<\/td>\r\n<td style=\"width:33%\">angepasst und kann problemlos in Wagenfarbe lackiert werden. Umlaufende Gummiprofile sch&uuml;tzen vor Spritzwasser, zwei Sicherheitsschl&ouml;sser verhindern unbefugten Zugriff.<br>\r\nBei Bestellung eines Boxenpaares haben beide Boxen gleiche Schl&uuml;ssel. Eine ausf&uuml;hrliche Montageanleitung sowie alle erforderlichen Montageteile geh&ouml;ren zum<br>\r\nLieferumfang.<\/td>\r\n<td style=\"width:33%\">Der Unterbau ist nicht m&ouml;glich bei Kipperfahrzeugen, tiefergelegten und verbreiterten Ladefl&auml;chen.<br>\r\n<br>\r\n<strong>Stauboxen - der zus&auml;tzliche Stauraum<\/strong>\r\n<ul>\r\n<li>2 Sicherheitsschl&ouml;sser<\/li>\r\n<li>einfache Montage<\/li>\r\n<li>Material:<br>\r\n>UP-GF<, >ABS<, schwarz<\/li>\r\n<li>T&Uuml;V-frei<\/li>\r\n<\/ul>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n","1_details":"<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"1\"><\/td>\r\n<td style=\"width:55%\"><strong>VW T4, <\/strong>9\/90<br>\r\nInnenma&szlig;e: B x T x H = 1105 x 395 x 330 mm<br>\r\nInhalt 100 Liter, Eigengewicht 18 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>Pritsche<\/strong>\r\n\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 2920 mm<\/strong>, passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>001<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 2920 mm<\/strong>, passt vorne rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>002<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>VW T4, <\/strong>9\/90<br>\r\nStaubox mit zus&auml;tzlich einer montierten<br>\r\nStahl-Aufprall-St&uuml;tzstrebe<br>\r\nInnenma&szlig;e: B x T x H = 690 x 395 x 330 mm<br>\r\nInhalt 70 Liter, Eigengewicht 11 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>Pritsche<\/strong>\r\n\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt hinten links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt Mitte links mit Stahl-Aufprall-Schutzstrebe 003L<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt 2x links, wobei eine Holz-Aufprallstrebe entfernt werden muss<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt Mitte rechts, mit Stahl-Aufprall-Schutzstrebe 003R<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt hinten rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>VW T4, <\/strong>9\/90<br>\r\nInnenma&szlig;e: B x T x H = 690 x 395 x 330 mm<br>\r\nInhalt 70 Liter, Eigengewicht 11 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\">Doppelkabine\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n\r\n","1_dimension_outer":"","1_x_outer":0,"1_y_outer":0,"1_z_outer":0,"1_dimension_inner":"690 395 330","1_x_inner":690,"1_y_inner":395,"1_z_inner":330,"1_volume":70,"1_weight_empty":11,"1_weight_loading":40,"1_corpus":"4 10","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 10","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":4,"lft":7,"rgt":8,"root":4,"parent":0,"lvl":1,"ord":4,"template_id":1,"status":0,"time":"2017-01-16 10:29:59","1_type":"Staubox","1_name":"STB004","1_cars":"Volkswagen T4","1_title":"%car%","1_subtitle":"Stauboxen von KAMEI automotive \u2013 praktisch, robust und sicher.","1_description":"<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:33%\">KAMEI hat Stauboxen speziell f&uuml;r Pritschenwagen bzw. Doppelkabinen entwickelt. Sie dienen zur sicheren Aufbewahrung von Werkzeug, Kleinmaterial etc. Kurzum f&uuml;r alles, was sicher verstaut werden muss.<br>\r\nDer Grundk&ouml;rper ist hergestellt aus GFK, einem Kunststoffmaterial, das besonders stabil und bruchfest ist. Der schwarze Deckel besteht aus hochwertigem ABS, ist UV-best&auml;ndig, der Fahrzeugkontur<\/td>\r\n<td style=\"width:33%\">angepasst und kann problemlos in Wagenfarbe lackiert werden. Umlaufende Gummiprofile sch&uuml;tzen vor Spritzwasser, zwei Sicherheitsschl&ouml;sser verhindern unbefugten Zugriff.<br>\r\nBei Bestellung eines Boxenpaares haben beide Boxen gleiche Schl&uuml;ssel. Eine ausf&uuml;hrliche Montageanleitung sowie alle erforderlichen Montageteile geh&ouml;ren zum<br>\r\nLieferumfang.<\/td>\r\n<td style=\"width:33%\">Der Unterbau ist nicht m&ouml;glich bei Kipperfahrzeugen, tiefergelegten und verbreiterten Ladefl&auml;chen.<br>\r\n<br>\r\n<strong>Stauboxen - der zus&auml;tzliche Stauraum<\/strong>\r\n<ul>\r\n<li>2 Sicherheitsschl&ouml;sser<\/li>\r\n<li>einfache Montage<\/li>\r\n<li>Material:<br>\r\n>UP-GF<, >ABS<, schwarz<\/li>\r\n<li>T&Uuml;V-frei<\/li>\r\n<\/ul>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n","1_details":"<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"1\"><\/td>\r\n<td style=\"width:55%\"><strong>VW T4, <\/strong>9\/90<br>\r\nInnenma&szlig;e: B x T x H = 1105 x 395 x 330 mm<br>\r\nInhalt 100 Liter, Eigengewicht 18 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>Pritsche<\/strong>\r\n\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 2920 mm<\/strong>, passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>001<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 2920 mm<\/strong>, passt vorne rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>002<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>VW T4, <\/strong>9\/90<br>\r\nStaubox mit zus&auml;tzlich einer montierten<br>\r\nStahl-Aufprall-St&uuml;tzstrebe<br>\r\nInnenma&szlig;e: B x T x H = 690 x 395 x 330 mm<br>\r\nInhalt 70 Liter, Eigengewicht 11 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>Pritsche<\/strong>\r\n\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt hinten links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt Mitte links mit Stahl-Aufprall-Schutzstrebe 003L<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt 2x links, wobei eine Holz-Aufprallstrebe entfernt werden muss<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt Mitte rechts, mit Stahl-Aufprall-Schutzstrebe 003R<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt hinten rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>VW T4, <\/strong>9\/90<br>\r\nInnenma&szlig;e: B x T x H = 690 x 395 x 330 mm<br>\r\nInhalt 70 Liter, Eigengewicht 11 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\">Doppelkabine\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n\r\n","1_dimension_outer":"","1_x_outer":0,"1_y_outer":0,"1_z_outer":0,"1_dimension_inner":"690 395 330","1_x_inner":690,"1_y_inner":395,"1_z_inner":330,"1_volume":70,"1_weight_empty":11,"1_weight_loading":40,"1_corpus":"4 10","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 10","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":5,"lft":9,"rgt":10,"root":5,"parent":0,"lvl":1,"ord":5,"template_id":1,"status":0,"time":"2017-01-16 10:29:59","1_type":"Staubox","1_name":"STB005","1_cars":"Citro\u00ebn Jumper <br>Fiat Ducato <br>Peugeot Boxer","1_title":"%car%","1_subtitle":"Stauboxen von KAMEI automotive \u2013 praktisch, robust und sicher.","1_description":"<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:33%\">KAMEI hat Stauboxen speziell f&uuml;r Pritschenwagen bzw. Doppelkabinen entwickelt. Sie dienen zur sicheren Aufbewahrung von Werkzeug, Kleinmaterial etc. Kurzum f&uuml;r alles, was sicher verstaut werden muss.<br>\r\nDer Grundk&ouml;rper ist hergestellt aus GFK, einem Kunststoffmaterial, das besonders stabil und bruchfest ist. Der schwarze Deckel besteht aus hochwertigem ABS, ist UV-best&auml;ndig, der Fahrzeugkontur<\/td>\r\n<td style=\"width:33%\">angepasst und kann problemlos in Wagenfarbe lackiert werden. Umlaufende Gummiprofile sch&uuml;tzen vor Spritzwasser, zwei Sicherheitsschl&ouml;sser verhindern unbefugten Zugriff.<br>\r\nBei Bestellung eines Boxenpaares haben beide Boxen gleiche Schl&uuml;ssel. Eine ausf&uuml;hrliche Montageanleitung sowie alle erforderlichen Montageteile geh&ouml;ren zum<br>\r\nLieferumfang.<\/td>\r\n<td style=\"width:33%\">Der Unterbau ist nicht m&ouml;glich bei Kipperfahrzeugen, tiefergelegten und verbreiterten Ladefl&auml;chen.<br>\r\n<br>\r\n<strong>Stauboxen - der zus&auml;tzliche Stauraum<\/strong>\r\n<ul>\r\n<li>2 Sicherheitsschl&ouml;sser<\/li>\r\n<li>einfache Montage<\/li>\r\n<li>Material:<br>\r\n>UP-GF<, >ABS<, schwarz<\/li>\r\n<li>T&Uuml;V-frei<\/li>\r\n<\/ul>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n","1_details":"<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"1\"><\/td>\r\n<td style=\"width:55%\"><strong>VW T4, <\/strong>9\/90<br>\r\nInnenma&szlig;e: B x T x H = 1105 x 395 x 330 mm<br>\r\nInhalt 100 Liter, Eigengewicht 18 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>Pritsche<\/strong>\r\n\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 2920 mm<\/strong>, passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>001<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 2920 mm<\/strong>, passt vorne rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>002<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>VW T4, <\/strong>9\/90<br>\r\nStaubox mit zus&auml;tzlich einer montierten<br>\r\nStahl-Aufprall-St&uuml;tzstrebe<br>\r\nInnenma&szlig;e: B x T x H = 690 x 395 x 330 mm<br>\r\nInhalt 70 Liter, Eigengewicht 11 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>Pritsche<\/strong>\r\n\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt hinten links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt Mitte links mit Stahl-Aufprall-Schutzstrebe 003L<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt 2x links, wobei eine Holz-Aufprallstrebe entfernt werden muss<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt Mitte rechts, mit Stahl-Aufprall-Schutzstrebe 003R<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt hinten rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\"><strong>VW T4, <\/strong>9\/90<br>\r\nInnenma&szlig;e: B x T x H = 690 x 395 x 330 mm<br>\r\nInhalt 70 Liter, Eigengewicht 11 kg, Zuladung 40 kg\r\n<hr noshade=\"noshade\" size=\"1\" width=\"100%\">Doppelkabine\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne links<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>003<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:70%;\"><strong>Radstand 3320 mm, <\/strong>passt vorne rechts<\/td>\r\n<td style=\"width:30%; text-align:right\"><strong>Art.-Nr. <\/strong><b>STB<\/b><strong>004<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n\r\n","1_dimension_outer":"00 0","1_x_outer":0,"1_y_outer":0,"1_z_outer":0,"1_dimension_inner":"860 275 400","1_x_inner":860,"1_y_inner":275,"1_z_inner":400,"1_volume":80,"1_weight_empty":15,"1_weight_loading":40,"1_corpus":"4 1","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 1","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":6,"lft":1,"rgt":4,"root":6,"parent":0,"lvl":1,"ord":6,"template_id":1,"status":0,"time":"2017-01-16 10:29:59","1_type":"Staubox","1_name":"STB006","1_cars":"Mercedes-Benz Sprinter <br>Volkswagen LT","1_title":"%car%","1_subtitle":"Stauboxen von KAMEI automotive \u2013 praktisch, robust und sicher.","1_description":"<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:33%\">\r\nKAMEI hat Stauboxen speziell f&uuml;r Pritschenwagen bzw. Doppelkabine entwickelt. Sie dienen zur sicheren Aufbewahrung von Werkzeug, Kleinmaterial etc. Kurzum f&uuml;r alles, was sicher verstaut werden muss.<br>\r\nDer Grundk&ouml;rper ist hergestellt aus GFK, einem Kunststoffmaterial, das besonders stabil und bruchfest ist. Der schwarze Deckel besteht aus hochwertigem ABS, ist UV-best&auml;ndig, der Fahrzeugkontur<\/td>\r\n<td style=\"width:33%\">\r\nangepasst und kann problemlos in Wagenfarbe lackiert werden. Umlaufende Gummiprofile sch&uuml;tzen vor Spritzwasser, zwei Sicherheitsschl&ouml;sser verhindern unbefugten Zugriff.<br>\r\nBei Bestellung eines Boxenpaares haben beide Boxen gleiche Schl&uuml;ssel. Eine ausf&uuml;hrliche Montageanleitung sowie alle erforderlichen Montageteile geh&ouml;ren zum<br>\r\nLieferumfang.<\/td>\r\n<td style=\"width:33%\">\r\nDer Unterbau ist nicht m&ouml;glich bei Kipperfahrzeugen, tiefergelegten und verbreiterten Ladefl&auml;chen.<br>\r\n<br>\r\n<strong>Stauboxen - der zus&auml;tzliche Stauraum<\/strong>\r\n<ul>\r\n<li>\r\n2 Sicherheitsschl&ouml;sser<\/li>\r\n<li>\r\neinfache Montage<\/li>\r\n<li>\r\nMaterial:<br>\r\n>UP-GF<, >ABS<, schwarz<\/li>\r\n<li>\r\nT&Uuml;V-frei<\/li>\r\n<\/ul>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n","1_details":"<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nStauboxen f&uuml;r Volkswagen LT - Pritsche mit Einfachkabine<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"1\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3000 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB008<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"2\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3550 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB008<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"3\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 4025 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB008A<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<div style=\"page-break-after:always\">&nbsp;<\/div>\r\n<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nStauboxen f&uuml;r Volkswagen LT - Pritsche mit Doppelkabine<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"4\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3550 mm<\/strong>- Doppelkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB006<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"5\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 4025 mm<\/strong>- Doppelkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB006<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<div style=\"page-break-after: always\">\r\n&nbsp;<\/div>\r\n<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nStauboxen f&uuml;r Volkswagen LT - Pritsche mit Einfachkabine<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"6\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3550 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox rechts<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB011<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"7\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 4025 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox rechts<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB011<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nStauboxen f&uuml;r Volkswagen LT - Pritsche mit Doppelkabine<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"8\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3550 mm<\/strong>- Doppelkabine ab 12\/96<br>\r\nStaubox rechts<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB011<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"9\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 4025 mm<\/strong>- Doppelkabine ab 12\/96<br>\r\nStaubox rechts<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB011<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","1_dimension_outer":"750 370 390","1_x_outer":750,"1_y_outer":370,"1_z_outer":390,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":100,"1_weight_empty":13,"1_weight_loading":40,"1_corpus":"4 1","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 1","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":1},{"data_id":43,"lft":2,"rgt":3,"root":6,"parent":6,"lvl":2,"ord":1,"template_id":1,"status":0,"time":"2017-03-07 10:07:15","1_type":"Staubox","1_name":"STB006 MB","1_cars":"","1_title":"%car%","1_subtitle":"","1_description":"","1_details":"","1_dimension_outer":"750 370 390","1_x_outer":750,"1_y_outer":370,"1_z_outer":390,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":100,"1_weight_empty":13,"1_weight_loading":40,"1_corpus":"4 10","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 10","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":7,"lft":13,"rgt":20,"root":7,"parent":0,"lvl":1,"ord":7,"template_id":1,"status":0,"time":"2017-01-16 10:29:59","1_type":"Staubox","1_name":"STB008","1_cars":"Mercedes-Benz Sprinter <br>Volkswagen LT","1_title":"%car%","1_subtitle":"Stauboxen von KAMEI automotive \u2013 praktisch, robust und sicher.","1_description":"<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:33%\">\r\nKAMEI hat Stauboxen speziell f&uuml;r Pritschenwagen bzw. Doppelkabine entwickelt. Sie dienen zur sicheren Aufbewahrung von Werkzeug, Kleinmaterial etc. Kurzum f&uuml;r alles, was sicher verstaut werden muss.<br>\r\nDer Grundk&ouml;rper ist hergestellt aus GFK, einem Kunststoffmaterial, das besonders stabil und bruchfest ist. Der schwarze Deckel besteht aus hochwertigem ABS, ist UV-best&auml;ndig, der Fahrzeugkontur<\/td>\r\n<td style=\"width:33%\">\r\nangepasst und kann problemlos in Wagenfarbe lackiert werden. Umlaufende Gummiprofile sch&uuml;tzen vor Spritzwasser, zwei Sicherheitsschl&ouml;sser verhindern unbefugten Zugriff.<br>\r\nBei Bestellung eines Boxenpaares haben beide Boxen gleiche Schl&uuml;ssel. Eine ausf&uuml;hrliche Montageanleitung sowie alle erforderlichen Montageteile geh&ouml;ren zum<br>\r\nLieferumfang.<\/td>\r\n<td style=\"width:33%\">\r\nDer Unterbau ist nicht m&ouml;glich bei Kipperfahrzeugen, tiefergelegten und verbreiterten Ladefl&auml;chen.<br>\r\n<br>\r\n<strong>Stauboxen - der zus&auml;tzliche Stauraum<\/strong>\r\n<ul>\r\n<li>\r\n2 Sicherheitsschl&ouml;sser<\/li>\r\n<li>\r\neinfache Montage<\/li>\r\n<li>\r\nMaterial:<br>\r\n>UP-GF<, >ABS<, schwarz<\/li>\r\n<li>\r\nT&Uuml;V-frei<\/li>\r\n<\/ul>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n","1_details":"<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nStauboxen f&uuml;r Volkswagen LT - Pritsche mit Einfachkabine<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"1\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3000 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB008<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"2\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3550 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB008<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"3\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 4025 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB008A<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<div style=\"page-break-after:always\">&nbsp;<\/div>\r\n<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nStauboxen f&uuml;r Volkswagen LT - Pritsche mit Doppelkabine<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"4\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3550 mm<\/strong>- Doppelkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB006<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"5\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 4025 mm<\/strong>- Doppelkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB006<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<div style=\"page-break-after: always\">\r\n&nbsp;<\/div>\r\n<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nStauboxen f&uuml;r Volkswagen LT - Pritsche mit Einfachkabine<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"6\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3550 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox rechts<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB011<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"7\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 4025 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox rechts<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB011<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nStauboxen f&uuml;r Volkswagen LT - Pritsche mit Doppelkabine<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"8\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3550 mm<\/strong>- Doppelkabine ab 12\/96<br>\r\nStaubox rechts<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB011<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"9\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 4025 mm<\/strong>- Doppelkabine ab 12\/96<br>\r\nStaubox rechts<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB011<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","1_dimension_outer":"750 370 390","1_x_outer":750,"1_y_outer":370,"1_z_outer":390,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":100,"1_weight_empty":13,"1_weight_loading":40,"1_corpus":"4 1","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 1","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":3},{"data_id":56,"lft":14,"rgt":15,"root":7,"parent":7,"lvl":2,"ord":1,"template_id":1,"status":0,"time":"2017-03-07 13:58:39","1_type":"Staubox","1_name":"STB008 MB","1_cars":"","1_title":"%car%","1_subtitle":"","1_description":"","1_details":"","1_dimension_outer":"750 370 390","1_x_outer":750,"1_y_outer":370,"1_z_outer":390,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":100,"1_weight_empty":13,"1_weight_loading":40,"1_corpus":"4 10","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 10","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":55,"lft":16,"rgt":17,"root":7,"parent":7,"lvl":2,"ord":2,"template_id":1,"status":0,"time":"2017-03-07 13:58:23","1_type":"Staubox","1_name":"STB008 A MB","1_cars":"","1_title":"%car%","1_subtitle":"","1_description":"","1_details":"","1_dimension_outer":"750 370 390","1_x_outer":750,"1_y_outer":370,"1_z_outer":390,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":100,"1_weight_empty":13,"1_weight_loading":40,"1_corpus":"4 10","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 10","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":54,"lft":18,"rgt":19,"root":7,"parent":7,"lvl":2,"ord":3,"template_id":1,"status":0,"time":"2017-03-07 13:53:28","1_type":"Staubox","1_name":"STB008 A","1_cars":"","1_title":"%car%","1_subtitle":"","1_description":"","1_details":"","1_dimension_outer":"750 370 390","1_x_outer":750,"1_y_outer":370,"1_z_outer":390,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":100,"1_weight_empty":13,"1_weight_loading":40,"1_corpus":"4 10","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 10","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":8,"lft":15,"rgt":16,"root":8,"parent":0,"lvl":1,"ord":8,"template_id":1,"status":0,"time":"2017-01-16 10:29:59","1_type":"Staubox","1_name":"STB011","1_cars":"Mercedes-Benz Sprinter <br>Volkswagen LT","1_title":"%car%","1_subtitle":"Stauboxen von KAMEI automotive \u2013 praktisch, robust und sicher.","1_description":"<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:33%\">\r\nKAMEI hat Stauboxen speziell f&uuml;r Pritschenwagen bzw. Doppelkabine entwickelt. Sie dienen zur sicheren Aufbewahrung von Werkzeug, Kleinmaterial etc. Kurzum f&uuml;r alles, was sicher verstaut werden muss.<br>\r\nDer Grundk&ouml;rper ist hergestellt aus GFK, einem Kunststoffmaterial, das besonders stabil und bruchfest ist. Der schwarze Deckel besteht aus hochwertigem ABS, ist UV-best&auml;ndig, der Fahrzeugkontur<\/td>\r\n<td style=\"width:33%\">\r\nangepasst und kann problemlos in Wagenfarbe lackiert werden. Umlaufende Gummiprofile sch&uuml;tzen vor Spritzwasser, zwei Sicherheitsschl&ouml;sser verhindern unbefugten Zugriff.<br>\r\nBei Bestellung eines Boxenpaares haben beide Boxen gleiche Schl&uuml;ssel. Eine ausf&uuml;hrliche Montageanleitung sowie alle erforderlichen Montageteile geh&ouml;ren zum<br>\r\nLieferumfang.<\/td>\r\n<td style=\"width:33%\">\r\nDer Unterbau ist nicht m&ouml;glich bei Kipperfahrzeugen, tiefergelegten und verbreiterten Ladefl&auml;chen.<br>\r\n<br>\r\n<strong>Stauboxen - der zus&auml;tzliche Stauraum<\/strong>\r\n<ul>\r\n<li>\r\n2 Sicherheitsschl&ouml;sser<\/li>\r\n<li>\r\neinfache Montage<\/li>\r\n<li>\r\nMaterial:<br>\r\n>UP-GF<, >ABS<, schwarz<\/li>\r\n<li>\r\nT&Uuml;V-frei<\/li>\r\n<\/ul>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n","1_details":"<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nStauboxen f&uuml;r Volkswagen LT - Pritsche mit Einfachkabine<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"1\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3000 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB008<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"2\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3550 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB008<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"3\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 4025 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB008A<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<div style=\"page-break-after:always\">&nbsp;<\/div>\r\n<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nStauboxen f&uuml;r Volkswagen LT - Pritsche mit Doppelkabine<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"4\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3550 mm<\/strong>- Doppelkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB006<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"5\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 4025 mm<\/strong>- Doppelkabine ab 12\/96<br>\r\nStaubox links<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB006<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<div style=\"page-break-after: always\">\r\n&nbsp;<\/div>\r\n<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nStauboxen f&uuml;r Volkswagen LT - Pritsche mit Einfachkabine<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"6\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3550 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox rechts<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB011<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"7\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 4025 mm<\/strong>- Einfachkabine ab 12\/96<br>\r\nStaubox rechts<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB011<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nStauboxen f&uuml;r Volkswagen LT - Pritsche mit Doppelkabine<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"8\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3550 mm<\/strong>- Doppelkabine ab 12\/96<br>\r\nStaubox rechts<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB011<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"9\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 4025 mm<\/strong>- Doppelkabine ab 12\/96<br>\r\nStaubox rechts<br>\r\nB x T x H = 750 x 370 x 390 mm<br>\r\nInhalt 100 Liter, Eigengewicht 13 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB011<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","1_dimension_outer":"750 370 390","1_x_outer":750,"1_y_outer":370,"1_z_outer":390,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":100,"1_weight_empty":13,"1_weight_loading":40,"1_corpus":"4 1","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 1","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":9,"lft":17,"rgt":18,"root":9,"parent":0,"lvl":1,"ord":9,"template_id":1,"status":0,"time":"2017-01-16 10:29:59","1_type":"Staubox","1_name":"STB015","1_cars":"Opel Movano <br>Renault Master","1_title":"%car%","1_subtitle":"Stauboxen von KAMEI automotive \u2013 praktisch, robust und sicher.","1_description":"<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:33%\">\r\nKAMEI hat Stauboxen speziell f&uuml;r Pritschenwagen bzw. Doppelkabine entwickelt. Sie dienen zur sicheren Aufbewahrung von Werkzeug, Kleinmaterial etc. Kurzum f&uuml;r alles, was sicher verstaut werden muss.<br>\r\nDer Grundk&ouml;rper ist hergestellt aus GFK, einem Kunststoffmaterial, das besonders stabil und bruchfest ist. Der schwarze Deckel besteht aus hochwertigem ABS, ist UV-best&auml;ndig, der Fahrzeugkontur<\/td>\r\n<td style=\"width:33%\">\r\nangepasst und kann problemlos in Wagenfarbe lackiert werden. Umlaufende Gummiprofile sch&uuml;tzen vor Spritzwasser, zwei Sicherheitsschl&ouml;sser verhindern unbefugten Zugriff.<br>\r\nBei Bestellung eines Boxenpaares haben beide Boxen gleiche Schl&uuml;ssel. Eine ausf&uuml;hrliche Montageanleitung sowie alle erforderlichen Montageteile geh&ouml;ren zum<br>\r\nLieferumfang.<\/td>\r\n<td style=\"width:33%\">\r\nDer Unterbau ist nicht m&ouml;glich bei Kipperfahrzeugen, tiefergelegten und verbreiterten Ladefl&auml;chen.<br>\r\n<br>\r\n<strong>Stauboxen - der zus&auml;tzliche Stauraum<\/strong>\r\n<ul>\r\n<li>\r\n2 Sicherheitsschl&ouml;sser<\/li>\r\n<li>\r\neinfache Montage<\/li>\r\n<li>\r\nMaterial:<br>\r\n>UP-GF<, >ABS<, schwarz<\/li>\r\n<li>\r\nT&Uuml;V-frei<\/li>\r\n<\/ul>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n","1_details":"<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:50%\">\r\n<imageholder position=\"1\"><\/imageholder><\/td>\r\n<td style=\"width:50%\">\r\n<table class=\"ui-corner-all\" style=\"border: 1px solid #000000\">\r\n<thead>\r\n<tr>\r\n<th style=\"vertical-align: top; text-align: left; background-color: #000000;\">\r\n<span style=\"color:#ffffff;\">STAUBOX<\/span><\/th>\r\n<\/tr>\r\n<\/thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\" style=\"vertical-align: top\">\r\n<strong>Opel Movano, Renault Master<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nB x T x H<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\n780 x 355 x 320 mm<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nInhalt<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\nca. 88 l<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nEigengewicht<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\nca. 12 kg<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nZuladung<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\nca. 40 kg<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\n<strong>Art.-Nr.<\/strong><\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\n<strong>STB015<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid black; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\" style=\"vertical-align: top\">\r\n<strong>Opel Movano (nicht f&uuml;r Renault Master einsetzbar)<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nB x T x H<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\n1130 x 355 x 320 mm<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nInhalt<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\nca. 130&nbsp;l<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nEigengewicht<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\nca. 19 kg<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nZuladung<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\nca. 40 kg<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\n<strong>Art.-Nr.<\/strong><\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\n<strong>STB016<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:50%\">\r\n<imageholder position=\"2\"><\/imageholder><\/td>\r\n<td style=\"width:50%\">\r\n<table class=\"ui-corner-all\" style=\"border: 1px solid #000000\">\r\n<thead>\r\n<tr>\r\n<th style=\"vertical-align: top; text-align: left; background-color: #000000;\">\r\n<span style=\"color:#ffffff;\">RADSTAND<\/span><\/th>\r\n<\/tr>\r\n<\/thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>Radstand<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\n<strong>Kabinenart<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>Fahrtrich-<br>\r\ntungsseite<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>Pritschen-<br>\r\nl&auml;nge<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>Art.-Nr.<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>3578 mm<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\nEinfachkabine<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\nrechts<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n3251 mm<\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>STB016<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>3578 mm<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\nEinfachkabine<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\nlinks<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n3251 mm<\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>-<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>4078 mm<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\nEinfachkabine<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\nrechts<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n3751 mm<\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>STB016<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>4078 mm<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\nEinfachkabine<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\nlinks<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n3751 mm<\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>STB015<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>4078 mm<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\nDoppelkabine<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\nlinks<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n3000 mm<\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>STB015<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>4078 mm<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\nDoppelkabine<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\nrechts<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n3000 mm<\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>STB015<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","1_dimension_outer":"780 355 320","1_x_outer":780,"1_y_outer":355,"1_z_outer":320,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":88,"1_weight_empty":12,"1_weight_loading":40,"1_corpus":"4 1","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 1","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":10,"lft":19,"rgt":20,"root":10,"parent":0,"lvl":1,"ord":10,"template_id":1,"status":0,"time":"2017-01-16 10:29:59","1_type":"Staubox","1_name":"STB016","1_cars":"Opel Movano <br>Renault Master","1_title":"%car%","1_subtitle":"Stauboxen von KAMEI automotive \u2013 praktisch, robust und sicher.","1_description":"<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:33%\">\r\nKAMEI hat Stauboxen speziell f&uuml;r Pritschenwagen bzw. Doppelkabine entwickelt. Sie dienen zur sicheren Aufbewahrung von Werkzeug, Kleinmaterial etc. Kurzum f&uuml;r alles, was sicher verstaut werden muss.<br>\r\nDer Grundk&ouml;rper ist hergestellt aus GFK, einem Kunststoffmaterial, das besonders stabil und bruchfest ist. Der schwarze Deckel besteht aus hochwertigem ABS, ist UV-best&auml;ndig, der Fahrzeugkontur<\/td>\r\n<td style=\"width:33%\">\r\nangepasst und kann problemlos in Wagenfarbe lackiert werden. Umlaufende Gummiprofile sch&uuml;tzen vor Spritzwasser, zwei Sicherheitsschl&ouml;sser verhindern unbefugten Zugriff.<br>\r\nBei Bestellung eines Boxenpaares haben beide Boxen gleiche Schl&uuml;ssel. Eine ausf&uuml;hrliche Montageanleitung sowie alle erforderlichen Montageteile geh&ouml;ren zum<br>\r\nLieferumfang.<\/td>\r\n<td style=\"width:33%\">\r\nDer Unterbau ist nicht m&ouml;glich bei Kipperfahrzeugen, tiefergelegten und verbreiterten Ladefl&auml;chen.<br>\r\n<br>\r\n<strong>Stauboxen - der zus&auml;tzliche Stauraum<\/strong>\r\n<ul>\r\n<li>\r\n2 Sicherheitsschl&ouml;sser<\/li>\r\n<li>\r\neinfache Montage<\/li>\r\n<li>\r\nMaterial:<br>\r\n>UP-GF<, >ABS<, schwarz<\/li>\r\n<li>\r\nT&Uuml;V-frei<\/li>\r\n<\/ul>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n","1_details":"<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:50%\">\r\n<imageholder position=\"1\"><\/imageholder><\/td>\r\n<td style=\"width:50%\">\r\n<table class=\"ui-corner-all\" style=\"border: 1px solid #000000\">\r\n<thead>\r\n<tr>\r\n<th style=\"vertical-align: top; text-align: left; background-color: #000000;\">\r\n<span style=\"color:#ffffff;\">STAUBOX<\/span><\/th>\r\n<\/tr>\r\n<\/thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\" style=\"vertical-align: top\">\r\n<strong>Opel Movano, Renault Master<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nB x T x H<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\n780 x 355 x 320 mm<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nInhalt<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\nca. 88 l<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nEigengewicht<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\nca. 12 kg<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nZuladung<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\nca. 40 kg<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\n<strong>Art.-Nr.<\/strong><\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\n<strong>STB015<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid black; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\" style=\"vertical-align: top\">\r\n<strong>Opel Movano (nicht f&uuml;r Renault Master einsetzbar)<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nB x T x H<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\n1130 x 355 x 320 mm<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nInhalt<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\nca. 130&nbsp;l<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nEigengewicht<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\nca. 19 kg<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\nZuladung<\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\nca. 40 kg<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 30%\">\r\n<strong>Art.-Nr.<\/strong><\/td>\r\n<td style=\"vertical-align: top; text-align: right; width:70%\">\r\n<strong>STB016<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:50%\">\r\n<imageholder position=\"2\"><\/imageholder><\/td>\r\n<td style=\"width:50%\">\r\n<table class=\"ui-corner-all\" style=\"border: 1px solid #000000\">\r\n<thead>\r\n<tr>\r\n<th style=\"vertical-align: top; text-align: left; background-color: #000000;\">\r\n<span style=\"color:#ffffff;\">RADSTAND<\/span><\/th>\r\n<\/tr>\r\n<\/thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<table style=\"width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>Radstand<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\n<strong>Kabinenart<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>Fahrtrich-<br>\r\ntungsseite<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>Pritschen-<br>\r\nl&auml;nge<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>Art.-Nr.<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>3578 mm<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\nEinfachkabine<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\nrechts<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n3251 mm<\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>STB016<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>3578 mm<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\nEinfachkabine<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\nlinks<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n3251 mm<\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>-<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>4078 mm<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\nEinfachkabine<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\nrechts<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n3751 mm<\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>STB016<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>4078 mm<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\nEinfachkabine<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\nlinks<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n3751 mm<\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>STB015<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>4078 mm<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\nDoppelkabine<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\nlinks<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n3000 mm<\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>STB015<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n<strong>4078 mm<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; white-space: nowrap\">\r\nDoppelkabine<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\nrechts<\/td>\r\n<td style=\"vertical-align: top; width: 20%; white-space: nowrap\">\r\n3000 mm<\/td>\r\n<td style=\"vertical-align: top; width: 15%; white-space: nowrap; text-align: right\">\r\n<strong>STB015<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","1_dimension_outer":"1130 355 320","1_x_outer":1130,"1_y_outer":355,"1_z_outer":320,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":130,"1_weight_empty":19,"1_weight_loading":40,"1_corpus":"4 1","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 1","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":11,"lft":21,"rgt":24,"root":11,"parent":0,"lvl":1,"ord":11,"template_id":1,"status":0,"time":"2017-01-16 10:29:59","1_type":"Staubox","1_name":"STB017","1_cars":"Ford Transit","1_title":"%car%","1_subtitle":"Stauboxen von KAMEI automotive \u2013 praktisch, robust und sicher.","1_description":"<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:33%\">KAMEI hat Stauboxen speziell f&uuml;r Pritschenwagen bzw. Doppelkabine entwickelt. Sie dienen zur sicheren Aufbewahrung von Werkzeug, Kleinmaterial etc. Kurzum f&uuml;r alles, was sicher verstaut werden muss.<br>\r\nDer Grundk&ouml;rper ist hergestellt aus GFK, einem Kunststoffmaterial, das besonders stabil und bruchfest ist. Der schwarze Deckel besteht aus hochwertigem ABS, ist UV-best&auml;ndig, der Fahrzeugkontur<\/td>\r\n<td style=\"width:33%\">angepasst und kann problemlos in Wagenfarbe lackiert werden. Umlaufende Gummiprofile sch&uuml;tzen vor Spritzwasser, zwei Sicherheitsschl&ouml;sser verhindern unbefugten Zugriff.<br>\r\nBei Bestellung eines Boxenpaares haben beide Boxen gleiche Schl&uuml;ssel. Eine ausf&uuml;hrliche Montageanleitung sowie alle erforderlichen Montageteile geh&ouml;ren zum Lieferumfang.<\/td>\r\n<td style=\"width:33%\">Der Unterbau ist nicht m&ouml;glich bei Kipperfahrzeugen, tiefergelegten und verbreiterten Ladefl&auml;chen.<br>\r\n<br>\r\n<strong>Stauboxen - der zus&auml;tzliche Stauraum<\/strong>\r\n<ul>\r\n<li>2 Sicherheitsschl&ouml;sser<\/li>\r\n<li>einfache Montage<\/li>\r\n<li>Material:<br>\r\n>UP-GF<, >ABS<, schwarz<\/li>\r\n<li>T&Uuml;V-frei<\/li>\r\n<\/ul>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n","1_details":"<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>Stauboxen f&uuml;r Ford Transit mit Einfachkabine ab M&auml;rz 2000 bis September 2014<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"1\"><\/imageholder><\/td>\r\n<td style=\"width:55%\"><strong>Radstand 3137 mm<\/strong>- Einfachkabine<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 690 x 320 x 300 mm<br>\r\nInhalt 65 Liter, Eigengewicht 12 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 17<\/strong>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px;\">&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"2\"><\/imageholder><\/td>\r\n<td style=\"width:55%\"><strong>Radstand 3504 mm<\/strong>- Einfachkabine<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 1070 x 500 x 330 mm<br>\r\nInhalt 155 Liter, Eigengewicht 20 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 018<\/strong>\r\n<div style=\"border-bottom:1px solid red; height: 5px;\">&nbsp;<\/div>\r\n<br>\r\n<strong>Radstand 3504 mm<\/strong>- Einfachkabine<br>\r\n(mit schmaler Pritsche, Breite 1980 mm)<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 1070 x 400 x 330 mm<br>\r\nInhalt 120 Liter, Eigengewicht 18,5 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 018S<\/strong>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px;\">&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"3\"><\/imageholder><\/td>\r\n<td style=\"width:55%\"><strong>Radstand 3954 mm<\/strong>- Einfachkabine<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 1070 x 500 x 330 mm<br>\r\nInhalt 155 Liter, Eigengewicht 20 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 018<\/strong>\r\n<div style=\"border-bottom:1px solid red; height: 5px;\">&nbsp;<\/div>\r\n<br>\r\n<strong>Radstand 3504 mm<\/strong>- Einfachkabine<br>\r\n(mit schmaler Pritsche, Breite 1980 mm)<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 1070 x 400 x 330 mm<br>\r\nInhalt 120 Liter, Eigengewicht 18,5 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 018S<\/strong>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px;\">&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"4\"><\/imageholder><\/td>\r\n<td style=\"width:55%\"><strong>Radstand 3954 mm<\/strong>- Einfachkabine<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 1070 x 500 x 330 mm<br>\r\nInhalt 155 Liter, Eigengewicht 20 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 018<\/strong>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n<div style=\"page-break-after:always\">&nbsp;<\/div>\r\n\r\n<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>Stauboxen f&uuml;r Ford Transit mit Doppelkabine ab M&auml;rz 2000 bis September 2014<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"5\"><\/imageholder><\/td>\r\n<td style=\"width:55%\"><strong>Radstand 3504 mm<\/strong>- Doppelkabine<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 690 x 300 x 320 mm<br>\r\nInhalt 65 Liter, Eigengewicht 12 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 017<\/strong>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px;\">&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"6\"><\/imageholder><\/td>\r\n<td style=\"width:55%\"><strong>Radstand 3954 mm<\/strong>- Doppelkabine<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 690 x 300 x 320 mm<br>\r\nInhalt 65 Liter, Eigengewicht 12 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 017<\/strong>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","1_dimension_outer":"690 300 320","1_x_outer":690,"1_y_outer":300,"1_z_outer":320,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":65,"1_weight_empty":12,"1_weight_loading":40,"1_corpus":"4 1","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 1","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":1},{"data_id":44,"lft":22,"rgt":23,"root":11,"parent":11,"lvl":2,"ord":1,"template_id":1,"status":0,"time":"2017-03-07 12:31:17","1_type":"Staubox","1_name":"STB017 U","1_cars":"","1_title":"%car%","1_subtitle":"","1_description":"","1_details":"","1_dimension_outer":"690 300 320","1_x_outer":690,"1_y_outer":300,"1_z_outer":320,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":65,"1_weight_empty":12,"1_weight_loading":40,"1_corpus":"4 10","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 10","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":12,"lft":23,"rgt":30,"root":12,"parent":0,"lvl":1,"ord":12,"template_id":1,"status":0,"time":"2017-01-16 10:29:59","1_type":"Staubox","1_name":"STB018","1_cars":"Ford Transit","1_title":"%car%","1_subtitle":"Stauboxen von KAMEI automotive \u2013 praktisch, robust und sicher.","1_description":"<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:33%\">KAMEI hat Stauboxen speziell f&uuml;r Pritschenwagen bzw. Doppelkabine entwickelt. Sie dienen zur sicheren Aufbewahrung von Werkzeug, Kleinmaterial etc. Kurzum f&uuml;r alles, was sicher verstaut werden muss.<br>\r\nDer Grundk&ouml;rper ist hergestellt aus GFK, einem Kunststoffmaterial, das besonders stabil und bruchfest ist. Der schwarze Deckel besteht aus hochwertigem ABS, ist UV-best&auml;ndig, der Fahrzeugkontur<\/td>\r\n<td style=\"width:33%\">angepasst und kann problemlos in Wagenfarbe lackiert werden. Umlaufende Gummiprofile sch&uuml;tzen vor Spritzwasser, zwei Sicherheitsschl&ouml;sser verhindern unbefugten Zugriff.<br>\r\nBei Bestellung eines Boxenpaares haben beide Boxen gleiche Schl&uuml;ssel. Eine ausf&uuml;hrliche Montageanleitung sowie alle erforderlichen Montageteile geh&ouml;ren zum Lieferumfang.<\/td>\r\n<td style=\"width:33%\">Der Unterbau ist nicht m&ouml;glich bei Kipperfahrzeugen, tiefergelegten und verbreiterten Ladefl&auml;chen.<br>\r\n<br>\r\n<strong>Stauboxen - der zus&auml;tzliche Stauraum<\/strong>\r\n<ul>\r\n<li>2 Sicherheitsschl&ouml;sser<\/li>\r\n<li>einfache Montage<\/li>\r\n<li>Material:<br>\r\n>UP-GF<, >ABS<, schwarz<\/li>\r\n<li>T&Uuml;V-frei<\/li>\r\n<\/ul>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n","1_details":"<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>Stauboxen f&uuml;r Ford Transit mit Einfachkabine ab M&auml;rz 2000 bis September 2014<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"1\"><\/imageholder><\/td>\r\n<td style=\"width:55%\"><strong>Radstand 3137 mm<\/strong>- Einfachkabine<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 690 x 320 x 300 mm<br>\r\nInhalt 65 Liter, Eigengewicht 12 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 17<\/strong>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px;\">&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"2\"><\/imageholder><\/td>\r\n<td style=\"width:55%\"><strong>Radstand 3504 mm<\/strong>- Einfachkabine<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 1070 x 500 x 330 mm<br>\r\nInhalt 155 Liter, Eigengewicht 20 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 018<\/strong>\r\n<div style=\"border-bottom:1px solid red; height: 5px;\">&nbsp;<\/div>\r\n<br>\r\n<strong>Radstand 3504 mm<\/strong>- Einfachkabine<br>\r\n(mit schmaler Pritsche, Breite 1980 mm)<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 1070 x 400 x 330 mm<br>\r\nInhalt 120 Liter, Eigengewicht 18,5 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 018S<\/strong>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px;\">&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"3\"><\/imageholder><\/td>\r\n<td style=\"width:55%\"><strong>Radstand 3954 mm<\/strong>- Einfachkabine<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 1070 x 500 x 330 mm<br>\r\nInhalt 155 Liter, Eigengewicht 20 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 018<\/strong>\r\n<div style=\"border-bottom:1px solid red; height: 5px;\">&nbsp;<\/div>\r\n<br>\r\n<strong>Radstand 3504 mm<\/strong>- Einfachkabine<br>\r\n(mit schmaler Pritsche, Breite 1980 mm)<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 1070 x 400 x 330 mm<br>\r\nInhalt 120 Liter, Eigengewicht 18,5 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 018S<\/strong>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px;\">&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"4\"><\/imageholder><\/td>\r\n<td style=\"width:55%\"><strong>Radstand 3954 mm<\/strong>- Einfachkabine<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 1070 x 500 x 330 mm<br>\r\nInhalt 155 Liter, Eigengewicht 20 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 018<\/strong>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n\r\n<div style=\"page-break-after:always\">&nbsp;<\/div>\r\n\r\n<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>Stauboxen f&uuml;r Ford Transit mit Doppelkabine ab M&auml;rz 2000 bis September 2014<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"5\"><\/imageholder><\/td>\r\n<td style=\"width:55%\"><strong>Radstand 3504 mm<\/strong>- Doppelkabine<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 690 x 300 x 320 mm<br>\r\nInhalt 65 Liter, Eigengewicht 12 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 017<\/strong>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px;\">&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\"><imageholder position=\"6\"><\/imageholder><\/td>\r\n<td style=\"width:55%\"><strong>Radstand 3954 mm<\/strong>- Doppelkabine<br>\r\nStaubox rechts und links<br>\r\nB x T x H = 690 x 300 x 320 mm<br>\r\nInhalt 65 Liter, Eigengewicht 12 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. KAM 017<\/strong>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","1_dimension_outer":"1070 500 330","1_x_outer":1070,"1_y_outer":500,"1_z_outer":330,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":155,"1_weight_empty":20,"1_weight_loading":40,"1_corpus":"4 1","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 1","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":3},{"data_id":47,"lft":24,"rgt":25,"root":12,"parent":12,"lvl":2,"ord":1,"template_id":1,"status":0,"time":"2017-03-07 13:39:35","1_type":"Staubox","1_name":"STB018 S U","1_cars":"","1_title":"%car%","1_subtitle":"","1_description":"","1_details":"","1_dimension_outer":"1070 400 330","1_x_outer":1070,"1_y_outer":400,"1_z_outer":330,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":120,"1_weight_empty":18.5,"1_weight_loading":40,"1_corpus":"4 10","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 10","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":46,"lft":26,"rgt":27,"root":12,"parent":12,"lvl":2,"ord":2,"template_id":1,"status":0,"time":"2017-03-07 12:32:40","1_type":"Staubox","1_name":"STB018 S","1_cars":"","1_title":"%car%","1_subtitle":"","1_description":"","1_details":"","1_dimension_outer":"1070 400 330","1_x_outer":1070,"1_y_outer":400,"1_z_outer":330,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":120,"1_weight_empty":18.5,"1_weight_loading":40,"1_corpus":"4 10","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 10","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":45,"lft":28,"rgt":29,"root":12,"parent":12,"lvl":2,"ord":3,"template_id":1,"status":0,"time":"2017-03-07 12:32:02","1_type":"Staubox","1_name":"STB018 U","1_cars":"","1_title":"%car%","1_subtitle":"","1_description":"","1_details":"","1_dimension_outer":"1070 500 330","1_x_outer":1070,"1_y_outer":500,"1_z_outer":330,"1_dimension_inner":"00 0","1_x_inner":0,"1_y_inner":0,"1_z_inner":0,"1_volume":155,"1_weight_empty":20,"1_weight_loading":40,"1_corpus":"4 10","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 10","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0},{"data_id":13,"lft":25,"rgt":32,"root":13,"parent":0,"lvl":1,"ord":13,"template_id":1,"status":0,"time":"2017-01-16 10:29:59","1_type":"Staubox","1_name":"STB020","1_cars":"Mercedes-Benz Sprinter <br>Volkswagen Crafter","1_title":"%car%","1_subtitle":"Stauboxen von KAMEI automotive \u2013 praktisch, robust und sicher.","1_description":"<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:33%\">\r\nKAMEI hat Stauboxen speziell f&uuml;r Pritschenwagen bzw. Doppelkabine entwickelt. Sie dienen zur sicheren Aufbewahrung von Werkzeug, Kleinmaterial etc. Kurzum f&uuml;r alles, was sicher verstaut werden muss.<br>\r\nDer Grundk&ouml;rper ist hergestellt aus GFK, einem Kunststoffmaterial, das besonders stabil und bruchfest ist. Der schwarze Deckel besteht aus hochwertigem ABS, ist UV-best&auml;ndig, der Fahrzeugkontur<\/td>\r\n<td style=\"width:33%\">\r\nangepasst und kann problemlos in Wagenfarbe lackiert werden. Umlaufende Gummiprofile sch&uuml;tzen vor Spritzwasser, zwei Sicherheitsschl&ouml;sser verhindern unbefugten Zugriff.<br>\r\nBei Bestellung eines Boxenpaares haben beide Boxen gleiche Schl&uuml;ssel. Eine ausf&uuml;hrliche Montageanleitung sowie alle erforderlichen Montageteile geh&ouml;ren zum&nbsp;Lieferumfang.<br>\r\nDer Unterbau ist nicht m&ouml;glich bei<\/td>\r\n<td style=\"width:33%\">\r\nKipperfahrzeugen, tiefergelegten und verbreiterten Ladefl&auml;chen sowie AdBlue Tanks. F\u00fcr Fahrzeuge mit Unterfahrschutz gelten besondere Regelungen und Vorschriften.<br>\r\n<br>\r\n<ul>\r\n<li>\r\n2 Sicherheitsschl&ouml;sser<\/li>\r\n<li>\r\neinfache Montage<\/li>\r\n<li>\r\n>UP-GF<, >ABS<, schwarz<\/li>\r\n<li>\r\nT&Uuml;V-frei<\/li>\r\n<\/ul>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n","1_details":"<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"1\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<table class=\"ui-corner-all\" style=\"border: 1px solid #000000\">\r\n<thead>\r\n<tr>\r\n<th style=\"vertical-align: top; text-align: left; background-color: #000000;\">\r\n<span style=\"color:#ffffff;\">STAUBOX Art. STB020, STB020U, Inhalt 150 l, VW Crafter 30<\/span><\/th>\r\n<\/tr>\r\n<\/thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<table style=\"width:100%\">\r\n<thead>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 25%; text-align: left\">\r\n<strong>Radstand<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; text-align: left\">\r\n<strong>Kabinenart<\/strong><\/td>\r\n<\/tr>\r\n<\/thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 25%\">\r\n3250 mm und 3665 mm<\/td>\r\n<td style=\"vertical-align: top; width: 25%\">\r\nEinzelkabine<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"2\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<table class=\"ui-corner-all\" style=\"border: 1px solid #000000\">\r\n<thead>\r\n<tr>\r\n<th style=\"vertical-align: top; text-align: left; background-color: #000000;\">\r\n<span style=\"color:#ffffff;\">STAUBOX Art. STB021, STB021U, Inhalt 90 l, VW Crafter 30<\/span><\/th>\r\n<\/tr>\r\n<\/thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<table style=\"width:100%\">\r\n<thead>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 25%; text-align: left\">\r\n<strong>Radstand<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; text-align: left\">\r\n<strong>Kabinenart<\/strong><\/td>\r\n<\/tr>\r\n<\/thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 25%\">\r\n3250 mm und 3665 mm<\/td>\r\n<td style=\"vertical-align: top; width: 25%\">\r\nEinzelkabine<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 25%\">\r\n3665 mm<\/td>\r\n<td style=\"vertical-align: top; width: 25%\">\r\nDoppelkabine<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"3\"><\/imageholder><br>\r\nBeispiel in verkehrsorange f&uuml;r Beh&ouml;rden<\/td>\r\n<td style=\"width:55%\">\r\n<table class=\"ui-corner-all\" style=\"border: 1px solid #000000\">\r\n<thead>\r\n<tr>\r\n<th style=\"vertical-align: top; text-align: left; background-color: #000000;\">\r\n<span style=\"color:#ffffff;\">STAUBOX Art. STB035,&nbsp;STB035U,Inhalt 144 l, VW Crafter 30<\/span><\/th>\r\n<\/tr>\r\n<\/thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<table style=\"width:100%\">\r\n<thead>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 25%; text-align: left\">\r\n<strong>Radstand<\/strong><\/td>\r\n<td style=\"vertical-align: top; width: 25%; text-align: left\">\r\n<strong>Kabinenart<\/strong><\/td>\r\n<\/tr>\r\n<\/thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 25%\">\r\n3250 mm und 3665 mm<\/td>\r\n<td style=\"vertical-align: top; width: 25%\">\r\nEinzelkabine<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top; width: 25%\">\r\n3665 mm<\/td>\r\n<td style=\"vertical-align: top; width: 25%\">\r\nDoppelkabine<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<div style=\"page-break-after:always\">&nbsp;<\/div>\r\n<table style=\"width:100%;\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nCrafter 30 Pritschenwagen mit Einzelkabine kurzer Radstand ab Baujahr 8\/2006 bis 12\/2016<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"4\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3250 mm<\/strong><br>\r\nStaubox vorn links und rechts einsetzbar<br>\r\nInnenma&szlig;e: B x T x H = 900 x 465 x 380 mm<br>\r\nAu&szlig;enma&szlig;e: B x T x H = 985 x 500 x 460 mm<br>\r\n<strong>Inhalt 150 l<\/strong>, Eigengewicht 15 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB020<\/strong><br>\r\n<strong>Art.-Nr. STB020U (f&uuml;r Fahrzeuge mit Unterfahrschutz)<\/strong><br>\r\n<br>\r\n<strong>Radstand 3250 mm<\/strong><br>\r\nStaubox vorn links und rechts einsetzbar<br>\r\nInnenma&szlig;e: B x T x H = 680 x 465 x 380 mm<br>\r\nAu&szlig;enma&szlig;e: B x T x H = 770 x 510 x 460 mm<br>\r\n<strong>Inhalt 90 l<\/strong>, Eigengewicht 10 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB021<br>\r\nArt.-Nr. STB021U (f&uuml;r Fahrzeuge mit Unterfahrschutz)<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nCrafter 30 Pritschenwagen mit Einzelkabine mittlerer Radstand ab Baujahr 8\/2006 bis 12\/2016<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"5\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n<strong>Radstand 3665 mm<\/strong><br>\r\nStaubox vorn links und rechts einsetzbar<br>\r\nInnenma&szlig;e: B x T x H = 900 x 465 x 380 mm<br>\r\nAu&szlig;enma&szlig;e: B x T x H = 985 x 500 x 460 mm<br>\r\n<strong>Inhalt 150 l<\/strong>, Eigengewicht 15 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr.STB020<\/strong><br>\r\n<strong>Art.-Nr. STB020U (f&uuml;r Fahrzeuge mit Unterfahrschutz)<\/strong><br>\r\n<br>\r\n<strong>Radstand 3665 mm<\/strong><br>\r\nStaubox vorn links und rechts einsetzbar<br>\r\nInnenma&szlig;e: B x T x H = 680 x 465 x 380 mm<br>\r\nAu&szlig;enma&szlig;e: B x T x H = 770 x 510 x 460 mm<br>\r\n<strong>Inhalt 90 l<\/strong>, Eigengewicht 10 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB021<\/strong><br>\r\n<strong>Art.-Nr. STB021U (f&uuml;r Fahrzeuge mit Unterfahrschutz)<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<div style=\"border-bottom:1px solid red; height: 5px\">\r\n&nbsp;<\/div>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<h3>\r\nCrafter 30 Pritschenwagen mit Doppelkabine mittlerer Radstand ab Baujahr 8\/2006 bis 12\/2016<\/h3>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"width:45%\">\r\n<imageholder position=\"6\"><\/imageholder><\/td>\r\n<td style=\"width:55%\">\r\n\r\n<strong>Radstand 3665 mm<\/strong><br>\r\nStaubox vorn links und rechts<br>\r\nInnenma&szlig;e: B x T x H = 680 x 465 x 380 mm<br>\r\nAu&szlig;enma&szlig;e: B x T x H = 770 x 510 x 460 mm<br>\r\n<strong>Inhalt 90 l<\/strong>, Eigengewicht 10 kg, Zuladung 40 kg<br>\r\n<strong>Art.-Nr. STB021<\/strong><br>\r\n<strong>Art.-Nr. STB021U (f&uuml;r Fahrzeuge mit Unterfahrschutz)<\/strong>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","1_dimension_outer":"985 500 460","1_x_outer":985,"1_y_outer":500,"1_z_outer":460,"1_dimension_inner":"900 465 380","1_x_inner":900,"1_y_inner":465,"1_z_inner":380,"1_volume":150,"1_weight_empty":15,"1_weight_loading":40,"1_corpus":"4 1","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 1","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":3},{"data_id":50,"lft":26,"rgt":27,"root":13,"parent":13,"lvl":2,"ord":1,"template_id":1,"status":0,"time":"2017-03-07 13:44:40","1_type":"Staubox","1_name":"STB020 U","1_cars":"","1_title":"%car%","1_subtitle":"","1_description":"","1_details":"","1_dimension_outer":"985 500 460","1_x_outer":985,"1_y_outer":500,"1_z_outer":460,"1_dimension_inner":"900 465 380","1_x_inner":900,"1_y_inner":465,"1_z_inner":380,"1_volume":150,"1_weight_empty":15,"1_weight_loading":40,"1_corpus":"4 10","1_corpus_material":"GFK","1_corpus_color":"schwarz","1_cover":"6 10","1_cover_material":"KAM-ABS-UV","1_cover_color":"schwarz","1_customer":null,"1_tpl":"public","1_public":"ja","1_status":"aktiv","template_name":"public","children":0}]}]
    

    Stanislav
    Participant

    Hello TDS,

    Can you please send us a more simplified example?
    Try recreating the exact issue as simple as possible, so we know what exactly to concentrate on.

    Also, take a look at this demo for grid paging: Demo

    Best Regards,
    Stanislav

    jQWidgets Team
    http://www.jqwidgets.com/


    TDS
    Participant

    Hello Stanislav,

    here is the fiddle. Can you please edit my post and delete the JSON stuff?

    https://jsfiddle.net/tds4u/72fqveq6/


    TDS
    Participant

    I finally found a “solution”:

    virtualmode: true

    Why? I don’t know…

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.