Skip to main content

DEWALT DT3307-QZ SANDING BELTS 75MM X 533MM 220 GRIT X10 PCS FOR DCW220

13144-DEW
£372.00
SAVE £126.00
£18.00 (Inc. VAT)
£15.00 (Ex. VAT)
Adding to cart… The item has been added
Buy Now
Image coming soon
DeWalt

DEWALT DT3307-QZ SANDING BELTS 75MM X 533MM 220 GRIT X10 PCS FOR DCW220

SKU:
13144-DEW
Gift wrapping:
Credit plans available. Find out more

Clearpay logo Klarna logo V12 logo

Description

WHAT'S IN THE BOX

  • 10x 75mm x 533mm 220 Grit Sanding Belt

NOTES FROM MT EXPERT

Developed with an anti-static resin bonding to reduce clogging

OVERVIEW

DEWALT DT3307-QZ SANDING BELTS 75MM X 533MM 220 GRIT X10 PCS FOR DCW220

The DeWalt 533mm x 75mm sanding belts power through tough flooring applications. With high-performance silicon-carbide grain to deliver optimum material removal for a smooth floor finish. The cloth backing helps provide a long lifetime and outstanding performance.

FEATURES

  • { productData = e.detail.productDetails; productData.quantity = productData.quantity || 1; }, false); appInit(appLoadingProps, smartPaymentButtonsProps); } /** * * Get 'buy now' cart data functions * * */ function getBuyNowCartRequestBody() { return { lineItems: [productData], source: 'BUY_NOW', }; } /** * * App initialization * * */ function appInit(appLoadingProps, smartPaymentButtonsProps) { const { checkoutKitLoaderScriptPath, microAppJsFilesPaths } = appLoadingProps; if (window.checkoutKitLoader) { initializeSmartPaymentButtonsApp(microAppJsFilesPaths, smartPaymentButtonsProps); } else { createScriptTag( checkoutKitLoaderScriptPath, () => initializeSmartPaymentButtonsApp(microAppJsFilesPaths, smartPaymentButtonsProps) ); } } function initializeSmartPaymentButtonsApp(microAppJsFilesPaths, smartPaymentButtonsProps) { if ( window.BigCommerce && window.BigCommerce.initializeSmartPaymentButtons && typeof window.BigCommerce.initializeSmartPaymentButtons === 'function' ) { window.BigCommerce.initializeSmartPaymentButtons(smartPaymentButtonsProps); } else { loadScripts( microAppJsFilesPaths, () => window.BigCommerce.initializeSmartPaymentButtons(smartPaymentButtonsProps) ); } } function createScriptTag(src, onLoad) { const scriptTag = document.createElement('script'); scriptTag.type = 'text/javascript'; scriptTag.defer = true; scriptTag.async = false; scriptTag.crossorigin = true; scriptTag.src = src; if (onLoad) { scriptTag.onload = onLoad; } document.head.appendChild(scriptTag); } function loadScripts(scripts, onLoadEnd) { const script = scripts[0]; const scriptsToLoad = scripts.slice(1); createScriptTag(script, () => { if (scriptsToLoad.length > 0) { loadScripts(scriptsToLoad, onLoadEnd); } else { onLoadEnd(); } }); } })();
We aim to dispatch within 2-3 working days.
Free delivery for UK mainland orders over £250.
Credit plans available. Find out more

Clearpay logo Klarna logo V12 logo

Description

DEWALT DT3307-QZ SANDING BELTS 75MM X 533MM 220 GRIT X10 PCS FOR DCW220

WHAT'S IN THE BOX

  • 10x 75mm x 533mm 220 Grit Sanding Belt

NOTES FROM MT EXPERT

Developed with an anti-static resin bonding to reduce clogging

OVERVIEW

DEWALT DT3307-QZ SANDING BELTS 75MM X 533MM 220 GRIT X10 PCS FOR DCW220

The DeWalt 533mm x 75mm sanding belts power through tough flooring applications. With high-performance silicon-carbide grain to deliver optimum material removal for a smooth floor finish. The cloth backing helps provide a long lifetime and outstanding performance.

FEATURES

  • { if (mutationsList.length > 0) { renderMessageIfPossible(); } }); observer.observe(priceContainer, config); } function renderMessageIfPossible() { const amount = getPriceAmount(priceContainer.innerText)[0]; if (amount) { renderMessage({ amount }); } } function getPriceAmount(text) { /* INFO: - extracts a string from a pattern: [number][separator][number][separator]... [separator] - any symbol but a digit, including whitespaces */ const pattern = /\d+(?:[^\d]\d+)+(?!\d)/g; const matches = text.match(pattern); const results = []; // if there are no matches if (!matches?.length) { const amount = text.replace(/[^\d]/g, ''); if (!amount) return results; results.push(amount); return results; } matches.forEach(str => { const sepIndexes = []; for (let i = 0; i < str.length; i++) { // find separator index and push to array if (!/\d/.test(str[i])) { sepIndexes.push(i); } } if (sepIndexes.length === 0) return; // assume the last separator is the decimal const decIndex = sepIndexes[sepIndexes.length - 1]; // cut the substr to the separator with replacing non-digit chars const intSubstr = str.slice(0, decIndex).replace(/[^\d]/g, ''); // cut the substr after the separator with replacing non-digit chars const decSubstr = str.slice(decIndex + 1).replace(/[^\d]/g, ''); if (!intSubstr) return; const amount = decSubstr ? `${intSubstr}.${decSubstr}` : intSubstr; // to get floating point number const number = parseFloat(amount); if (!isNaN(number)) { results.push(String(number)); } }); return results; } function loadScript(src, attributes) { return new Promise((resolve, reject) => { const scriptTag = document.createElement('script'); if (attributes) { Object.keys(attributes) .forEach(key => { scriptTag.setAttribute(key, attributes[key]); }); } scriptTag.type = 'text/javascript'; scriptTag.src = src; scriptTag.onload = () => resolve(); scriptTag.onerror = event => { reject(event); }; document.head.appendChild(scriptTag); }); } function renderMessage(objectParams) { const paypalSdkScriptConfig = getPayPalSdkScriptConfig(); const options = transformConfig(paypalSdkScriptConfig.options); const attributes = transformConfig(paypalSdkScriptConfig.attributes); const messageProps = { placement: 'product', ...objectParams }; const renderPayPalMessagesComponent = (paypal) => { paypal.Messages(messageProps).render('#paypal-commerce-proddetails-messaging-banner'); }; if (options['client-id'] && options['merchant-id']) { if (!window.paypalMessages) { const paypalSdkUrl = 'https://www.paypal.com/sdk/js'; const scriptQuery = new URLSearchParams(options).toString(); const scriptSrc = `${paypalSdkUrl}?${scriptQuery}`; loadScript(scriptSrc, attributes).then(() => { renderPayPalMessagesComponent(window.paypalMessages); }); } else { renderPayPalMessagesComponent(window.paypalMessages) } } } function transformConfig(config) { let transformedConfig = {}; const keys = Object.keys(config); keys.forEach((key) => { const value = config[key]; if ( value === undefined || value === null || value === '' || (Array.isArray(value) && value.length === 0) ) { return; } transformedConfig = { ...transformedConfig, [key]: Array.isArray(value) ? value.join(',') : value, }; }); return transformedConfig; } function getPayPalSdkScriptConfig() { const attributionId = 'BigCommerceInc_SP_BC_P4P'; const currencyCode = 'GBP'; const clientId = 'AQ3RkiNHQ53oodRlTz7z-9ETC9xQNUgOLHjVDII9sgnF19qLXJzOwShAxcFW7OT7pVEF5B9bwjIArOvE'; const merchantId = 'EDD5LNR4AK7ZA'; const isDeveloperModeApplicable = 'false'.indexOf('true') !== -1; const buyerCountry = 'GB'; return { options: { 'client-id': clientId, 'merchant-id': merchantId, components: ['messages'], currency: currencyCode, ...(isDeveloperModeApplicable && { 'buyer-country': buyerCountry }), }, attributes: { 'data-namespace': 'paypalMessages', 'data-partner-attribution-id': attributionId, }, }; } })();

visa mastercard maestro Paypal Klarna Clearpay Amazon Pay Opayo V12