Lockways White Board 59" x 39" Magnetic Dry Erase Board for Wall Large Whiteboard Marker Board

Lockways White Board 59" x 39" Magnetic Dry Erase Board for Wall Large Whiteboard Marker Board

$64.99
Quantity

Description

Transform Your Space with the Lockways Magnetic Whiteboard Dry Erase!

Are you on the hunt for the ultimate addition to your office, classroom, or home? Look no further! The Lockways magnetic whiteboard dry erase is exactly what you need. Measuring a generous 35 x 23 inches, this dry erase board for wall is designed to fulfill all your writing and organizing needs. Its sturdy aluminum frame and ABS plastic corners not only provide durability but also add a modern touch to any decor—no sharp edges to worry about!

Smooth Writing Surface

Experience effortless writing with our large dry erase board. The super smooth surface makes jotting down notes and erasing mistakes a breeze. Built with a scratch-resistant aluminum frame and a detachable marker tray, this magnetic dry erase board is perfect for daily use, ensuring functionality and durability.

Versatile Magnetic Board

Whether you're teaching a class, presenting ideas, or brainstorming with friends, our 2x3 white boards are incredibly versatile! Ideal for various settings—home, school, or office—this wall writing board for kids and adults alike will enhance your presentations, drawings, and creative sessions.

Protective and Magnetic Surface

Not only does this white erase board excel for writing, but it also functions beautifully as a bulletin board! The premium steel surface allows you to easily attach notes, photos, and more, making it a fantastic magnetic board for magnets. Keep your ideas front and center and boost your creativity and organization!

Easy Installation

Mounting your dry erase board for wall is a breeze! You can choose to install it horizontally or vertically, depending on your space. And if you have any questions about your Lockways whiteboard 35 x 23 magnetic dry erase board for wall, our friendly customer service team is always here to help!

Upgrade Your Workspace

Transform your workspace or learning environment with our Lockways whiteboard 35 x 23 magnetic dry erase board for wall today! It’s more than just a white board dry erase wall mount; it’s your new creative canvas.

With dimensions of 23 x 35 inches, this 23x35 whiteboard offers plenty of space for all your writing needs. Perfect for any office or classroom, this dry erase board large is your go-to choice for enhancing productivity. Don’t miss out on this magnetic dry erase board—the ultimate solution for all your marker boards dry erase needs. Discover the numerous benefits of our large dry erase board today!

Key Features:

  • Dimensions: 35 x 23 inches
  • Type: 2' x 3' dry erase board
  • Style: Hanging dry erase board
  • Versatility: Perfect for home, school, and office use
  • Material: Sturdy, scratch-resistant surface

Elevate your space with our big wall white board—your partner in creativity and organization! This magnetic white erase board is ready to turn your workspace into a hub of productivity. Don’t wait—grab your dry erase board wall today and start creating!

Package Include:

1*large white board 35" x 23"

1*Marker

2*Magnets

1*Mounting Kit

Tips: Make sure to remove the clear plastic film of whiteboard surface before use.

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.