Promotional Banner - Delivery in 2-3 hours, Quality & Original, Delivered
New Sale
db54c53e.jpg

Training Table

SKU.: BC6728985

✓ In stock

Space-Saving Design : The foldable feature allows the table to be easily collapsed for compact storage, making it ideal for spaces with limited room or for quick setup and teardown. Mobile Capability : Equipped with wheels or casters, the table can be effortlessly moved from one location to another, providing flexibility and convenience for various training setups and configurations. Durable Construction : Built with high-quality materials such as sturdy steel frames and durable tabletop surfaces, the table offers long-lasting durability to withstand frequent use and transportation. Easy Setup : With simple assembly instructions and intuitive mechanisms, setting up the training table is quick and hassle-free, saving time and effort for busy trainers and organizers. Versatile Functionality: The table’s adaptable design makes it suitable for a wide range of training activities, including presentations, group discussions, hands-on workshops, and more
You can explore our full range of Office Furniture.
from 1 CF 145,088.60 Incl. 0.16% VAT
💬 Order via WhatsApp
document.addEventListener('DOMContentLoaded', function() { const searchInput = document.getElementById('searchInput'); const suggestionsContainer = document.getElementById('autocomplete-suggestions'); if (!searchInput || !suggestionsContainer) return; let debounceTimer; searchInput.addEventListener('input', function() { clearTimeout(debounceTimer); const query = this.value.trim(); if (query.length < 2) { suggestionsContainer.style.display = 'none'; return; } // Show a "loading" state (optional) suggestionsContainer.innerHTML = '
Searching...
'; suggestionsContainer.style.display = 'block'; debounceTimer = setTimeout(function() { const siteCode = getSiteCode(); const url = '/' + siteCode + '/search/autocomplete?q=' + encodeURIComponent(query); fetch(url) .then(response => response.json()) .then(data => { if (data.length === 0) { suggestionsContainer.innerHTML = '
No products found
'; return; } let html = ''; data.forEach(item => { html += `${escapeHtml(item.name)}`; }); // Add "View all results" link html += `View all results`; suggestionsContainer.innerHTML = html; }) .catch(() => { suggestionsContainer.innerHTML = '
Error loading suggestions
'; }); }, 200); // 200ms debounce delay }); // Hide suggestions when clicking outside document.addEventListener('click', function(e) { if (!e.target.closest('.search-wrapper')) { suggestionsContainer.style.display = 'none'; } }); // Helper: get site code from URL function getSiteCode() { const path = window.location.pathname.split('/'); return path.length > 1 ? path[1] : 'shop'; } // Helper: escape HTML to prevent XSS function escapeHtml(unsafe) { return unsafe.replace(/[&<>"]/g, function(m) { if (m === '&') return '&'; if (m === '<') return '<'; if (m === '>') return '>'; if (m === '"') return '"'; return m; }); } });