Описание
() B 36/2.4, B 36/3.0, B 36/3.9, B 36/6.0 Hilti AG 125-A36, TE 30-A36, TE 6-A36-AVR, SR 30-A36, WSR 36-A. : Li-ion (V): 36 (mAh): 3000 (Wh): 108.0 (): 153.00 x 93.50 x 81.10 (.): 12 : : Cameron Sino: : B 36/2.4 B 36/3.0 B 36/3.9 B 36/6.0 : ... $(document).ready(function(){ var loadData = function(config) { var grid; var columns = [ {id: "title", name: "Title", field: "title"}, ]; var options = { enableCellNavigation: false, enableColumnReorder: false, showHeaderRow: false , headerHeight: 0 , headerRowHeight: 25, rowHeight : 15, fullWidthRows: true , forceSyncScrolling : true }; $.ajax({ type: 'POST', url: '/product_compatible_ajax.php', data:{ offset : config['offset'], limit: config['limit'], products_id : 11252, key_ajax: 'c2e7d3e748b4ad0aa2ed84d2bf280651' }, beforeSend: function(){ $('#compatible_loader, #compatible_loader_text').show(); }, complete: function(){ $('#compatible_loader, #compatible_loader_text').hide(); }, success: function (json, textStatus) { var arr = JSON.parse(json); var data = []; for (var i=0; i< arr.length; i++) { data[i] = { title: arr[i] }; } grid = new Slick.Grid(config['target'], data, columns, options); } }); } $(document).on("click", '#linkShow', function(e){ var compatible_offset = 500; var compatible_limit = 100000; var counter = 0; var CONST_TITLE_SHOW_LIST = ' '; var title = ($(this).text() == CONST_TITLE_SHOW_LIST ? '' : CONST_TITLE_SHOW_LIST); $('#compatible_inner_addition').innerHtml = ''; $('#compatible_content').toggle(); loadData({offset:0, limit: compatible_limit, target: '#compatible_content'}); $(this).text(title); e.preventDefault(); return false; }); });