Описание
() 48-11-1815, M18 B2, M18 B4 Milwaukee 08, 26, 49, C18, HD18, M18 . : Li-ion (V): 18 (mAh): 2000 (Wh): 36.00 (): 105 x 75 x 73 (.): 12 : : Sino Power: : 48-11-1811 48-11-1815 48-11-1820 48-11-1822 48-11-1828 48-11-1840 48-11-1850 48-11-2050 M18 B M18 B2 M18 B4 M18 B5 M18 BX : ... $(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 : 4513, key_ajax: '1926061e96f1037024f5dcc570fbc797' }, 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; }); });