Lockways White Board 48" x 36" Magnetic Dry Erase Board for Wall Large Whiteboard 4x3 Marker Board, School Supplies

Lockways White Board 48" x 36" Magnetic Dry Erase Board for Wall Large Whiteboard 4x3 Marker Board

$87.99
$88.99
-$1.00
Quantity

Description

Transform Your Space with the Lockways Extra Large Dry Erase Board 48 x 36!

Looking for a simple yet effective way to boost creativity, productivity, and organization at home, in the office, or in the classroom? The Lockways Large White Dry Erase Board 48 x 36 is the perfect solution! This magnetic whiteboard brings both form and function to your space, offering a generous surface for writing, brainstorming, and displaying important notes or reminders. With its large 48 x 36 whiteboard dimensions, you’ll have plenty of room to jot down ideas, track projects, or keep everything organized. Whether you're a professional, teacher, or parent, this magnetic dry erase board is designed to meet all your needs.

Smooth Writing & Effortless Erasing

Writing and erasing on the Lockways white dry erase board couldn’t be easier. The smooth, streak-free surface ensures that your writing stays clear and legible, with no messy smudges or fading markers. Whether you're brainstorming ideas on a big whiteboard or giving a full presentation on a large white board, this whiteboard large makes it easy to keep everything neat, organized, and easy to read. Plus, the surface resists ghosting, so it stays fresh after every use. Perfect for daily use, whether you're at home, at the office, or in the classroom.

Magnetic & Multi-Functional

Why settle for just any whiteboard for wall when you can have a magnetic whiteboard that doubles as an organizing tool? This magnetic dry erase board allows you to use magnets to display important notes, pictures, or reminders. Whether you’re using your magnetic dry erase board in the office to keep important documents visible, or as a magnet board in the classroom to showcase visual aids, it’s designed for maximum versatility. The magnetic white board feature keeps everything in one place, making it easy to stay on top of tasks and ideas.

Perfect for Any Space

This whiteboard for wall isn’t just functional, it’s also a stylish addition to any room. Its sleek design makes it a great fit for a home office, a busy classroom, or even a corporate office space. The large size of the whiteboard 48 x 36 gives you plenty of room to write, plan, and create without feeling cramped. Plus, with its magnetic dry erase surface, you can easily display important papers, reminders, or inspiration. Whether you use it as a dry erase easel board for wall in the classroom, or as a dry erase board magnetic in the office to keep your team on track, this large dry erase board has you covered.

Organize and Plan with Ease

The Lockways large whiteboard offers the perfect balance of style and functionality. Whether you’re using it as a dry erase board wall in your home office, a magnetic whiteboard in the classroom, or a 3 x 4 dry erase board for family scheduling, this board makes it easy to keep your life organized. The magnetic whiteboard feature allows you to attach and display important documents, helping you stay on top of your to-do list, while the smooth surface makes it easy to write and erase.

Why Choose the Lockways Large White Dry Erase Board?

  • Large Writing Surface: The 48 x 36 whiteboard gives you ample space to plan, organize, and create. Perfect for brainstorming, team meetings, or classroom activities.
  • Magnetic Functionality: The magnetic dry erase board keeps everything in one place, allowing you to display important notes and documents with ease.
  • Easy to Use: Whether you’re using it for writing, drawing, or posting important reminders, the smooth surface makes it easy to use with both dry erase markers and magnets.
  • Ideal for Any Space: This large dry erase board fits perfectly in offices, classrooms, and home spaces. It’s the perfect tool for anyone looking to stay organized and productive.

Transform your workspace or learning environment with the Lockways Extra Large Dry Erase Board 48 x 36 today. With its spacious surface, magnetic dry erase features, and sleek design, this magnetic whiteboard will help you stay organized and inspired—whether you’re at home, in the office, or in the classroom.

What’s Included:

  • 1 x Large White Board 48 x 36
  • 1 x Marker
  • 2 x Magnets
  • 1 x Mounting Kit

Tip: Remember to remove the protective plastic film from the whiteboards before use to ensure the best performance!

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.