items
Set Event Date

Dinnerware for Rent

38594

Dinnerware rentals in Dayton, Ohio from A&S Party Rental — ideal for weddings, company picnics, and family events.

Professional delivery to Dayton Ohio and surrounding areas. Please submit a quote or contact us to be sure we service your area.


Dinnerware Rentals in Dayton, Ohio

Set your wedding tables in style with A&S Party Rental’s dinnerware rentals in Dayton! Perfect for weddings, company picnics, birthday parties, and family gatherings, our plates, bowls, and serving pieces create a polished and elegant dining experience for your guests.

Choose from a wide selection of classic and modern styles to match your wedding theme or event décor. Each piece is professionally cleaned, durable, and ready to impress, making meal service easy and stress-free.

Whether it’s a wedding reception, company picnic, or anniversary celebration, our dinnerware helps your event shine with sophistication and style.

Serve in style—contact A&S Party Rental today to reserve your dinnerware and make your Dayton wedding unforgettable!


function CategoryGallery(rental_id, rental_name, images_arr){ var rid = rental_id; var rentalName = rental_name; // Normalize images_arr: it may arrive as a JSON string, an object, or be undefined try { if (typeof images_arr === 'string' && images_arr.length) { images_arr = JSON.parse(images_arr); } } catch (e) { images_arr = {}; } if (!images_arr) images_arr = {}; // Where to append anchors and thumbs var $bigAfter = jQuery('#io_img_big2_' + rid); var $thumbAfter = jQuery('#io_img_thumb1_' + rid); if ($bigAfter.length && $thumbAfter.length) { var relVal = $bigAfter.attr('rel') || 'img_group noopener'; // Helper to validate a URL-like value (non-empty and not literal placeholders) var isValid = function (u) { if (!u) return false; var s = String(u).trim(); if (!s) return false; if (s.indexOf('%%') !== -1) return false; // ignore unreplaced placeholders if (s === '0' || s.toLowerCase() === 'null' || s.toLowerCase() === 'undefined') return false; return true; }; var addedThumbs = 0; // Iterate image map and append missing big anchors and thumbs for (var key in images_arr) { if (!images_arr.hasOwnProperty(key)) continue; var imgObj = images_arr[key] || {}; var href = imgObj["rentalimage_imagelocbig"] || imgObj["imagelocbig"] || imgObj["big"]; var src = imgObj["rentalimage_imageloc"] || imgObj["imageloc"] || imgObj["thumb"]; // Compute index consistent with existing templates var n = parseInt(key, 10); if (isNaN(n)) { // Try to derive from position by incrementing a counter if keys are not numeric n = 1; } // Category templates already include big1, big2, and thumb1; gallery adds 2+ when missing var bigIndex = n + 1; // matches io_cart_shortcode.html pattern var thumbIndex = n + 1; // thumb id series aligns with big series in newer code // Add big anchor if valid and not already present if (isValid(href)) { var bigId = '#io_img_big' + bigIndex + '_' + rid; if (jQuery(bigId).length === 0) { var $a = jQuery('', { rel: relVal, href: href, id: 'io_img_big' + bigIndex + '_' + rid }); $bigAfter.after($a); $bigAfter = $a; // maintain insertion point } } // Add thumbnail if valid and not already present if (isValid(src)) { var thumbId = '#io_img_thumb' + thumbIndex + '_' + rid; if (jQuery(thumbId).length === 0) { var $img = jQuery('', { 'class': 'io_image_thumb skip-lazy', title: rentalName, src: src, alt: rentalName, id: 'io_img_thumb' + thumbIndex + '_' + rid }).on('mouseover', function () { if (typeof updateMainPic === 'function') { updateMainPic(this); } }); $thumbAfter.after($img); $thumbAfter = $img; // maintain insertion point addedThumbs++; } } } // Reveal the thumbnail box if we added any extra thumbnails if (addedThumbs > 0) { jQuery('#io_img_thumb1_' + rid).closest('.io_image_thumbbox').show(); } } } // Function to generate list view content on demand (global scope) generateListViewContent = function() { console.log('[IO List View] Generating list view content dynamically'); jQuery('.io_item2_list').each(function() { var $item = jQuery(this); // Skip if already generated if ($item.find('.io_list_view_content').length > 0) { return; } // Extract rental_id from the item var rentalId = $item.find('.item_rentalid').text().trim(); if (!rentalId) { console.warn('[IO List View] No rental_id found for item, skipping'); return; } // Read data from dynamically named global variables // var description = String(window['data_description_' + rentalId] || "").replace(/[\r\n]+/g, "").trim(); var indoorOutdoor = String(window.io_category_data[rentalId]["indoor_outdoor"] || "").replace(/[\r\n]+/g, "").trim(); var staff = String(window.io_category_data[rentalId]["staff"] || "").replace(/[\r\n]+/g, "").trim(); var electric = String(window.io_category_data[rentalId]["electric"] || "").replace(/[\r\n]+/g, "").trim(); var dimensions = String(window.io_category_data[rentalId]["dimensions"] || "").replace(/[\r\n]+/g, "").trim(); // Helper function to strip HTML tags from text var stripHtml = function(html) { var tmp = document.createElement("DIV"); tmp.innerHTML = html; return (tmp.textContent || tmp.innerText || "").trim(); }; // Helper function to escape HTML to prevent XSS var escapeHtml = function(text) { var map = { '&': '&', '': '>', '"': '"', "'": ''' }; return text.replace(/[&"']/g, function(m) { return map[m]; }); }; // Strip HTML tags from description // description = stripHtml(description); // Build the HTML structure with escaped content var html = '
'; // html += '
' + escapeHtml(description) + '
'; html += '
'; // Setup field - only add if valid if (indoorOutdoor && indoorOutdoor !== '0' && indoorOutdoor.length > 0) { html += '
'; html += 'Setup:'; html += '' + escapeHtml(indoorOutdoor) + ''; html += '
'; } // Operators field - only add if valid var operatorsText = staff ? staff + ' Adult Supervision Required' : ""; if (operatorsText && operatorsText !== '0 Adult Supervision Required' && operatorsText !== 'Adult Supervision Required' && operatorsText !== '0') { html += '
'; html += 'Operators:'; html += '' + escapeHtml(operatorsText) + ''; html += '
'; } // Power field - only add if valid var powerText = electric ? electric + ' Outlets' : ""; if (powerText && powerText !== '0 Outlets' && powerText !== '0.00 Outlets' && powerText !== 'Outlets' && powerText !== '0') { html += '
'; html += 'Power:'; html += '' + escapeHtml(powerText) + ''; html += '
'; } // Size field - only add if valid if (dimensions && dimensions !== '0' && dimensions.length > 0) { html += '
'; html += 'Size:'; html += '' + escapeHtml(dimensions) + ''; html += '
'; } html += '
'; // close io_item_details_labeled html += '
'; // close io_list_view_content // Insert before the buttons container $item.find('.io_buttons_container').before(html); }); } jQuery(document).ready(function($) { jQuery(".io_item2_list").each(function(){ var rentalId = jQuery(this).find('.item_rentalid').text().trim(); if (io_categoryVariantImages == 'on'){ CategoryGallery(rentalId, window.io_category_data[rentalId]['rental_name'], window.io_category_data[rentalId]["images_arr"]); } }); console.log('[IO View Toggle] Document ready, initializing view toggle functionality'); // Check if category_id has a numeric value to identify actual category pages // This must happen before any view state is applied var categoryId = $('.category_id').text().trim(); var hasNumericCategoryId = categoryId && !isNaN(categoryId) && categoryId.length > 0; if (!hasNumericCategoryId) { console.log('[IO View Toggle] No valid numeric category ID found, this is not a category page - skipping initialization'); return; } console.log('[IO View Toggle] Category page detected with categoryId:', categoryId); $('body').addClass('io-has-category-id'); // Show the toggle buttons on category pages $('.io_view_toggle_container').show(); console.log('[IO View Toggle] Toggle buttons displayed for category page'); // Track if view toggle has been initialized var isInitialized = false; // Initialize view toggle functionality function initViewToggle(force) { // Skip if already initialized unless forced if (isInitialized && !force) { console.log('[IO View Toggle] Already initialized, skipping'); return; } console.log('[IO View Toggle] Initializing view toggle functionality'); // Check if toggle buttons exist if ($('.io_view_toggle_btn').length === 0) { console.warn('[IO View Toggle] Toggle buttons not found in DOM'); return; } console.log('[IO View Toggle] Found', $('.io_view_toggle_btn').length, 'toggle buttons'); // Check if category container exists if ($('.io_catdiv2').length === 0) { console.warn('[IO View Toggle] Category container (.io_catdiv2) not found'); return; } console.log('[IO View Toggle] Found', $('.io_catdiv2').length, 'category containers'); // Get saved view preference from localStorage var savedView = localStorage.getItem('io_category_view') || 'tile'; console.log('[IO View Toggle] Retrieved saved view preference:', savedView); // Set initial view $('.io_catdiv2').removeClass('tile-view list-view').addClass(savedView + '-view'); console.log('[IO View Toggle] Applied initial view class:', savedView + '-view'); // Update button states $('.io_view_toggle_btn').removeClass('active'); $('.io_view_toggle_btn[data-view="' + savedView + '"]').addClass('active'); console.log('[IO View Toggle] Updated button states, active button:', savedView); // Generate list view content if initial view is list if (savedView === 'list') { if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available yet'); } } // Log current items count var itemCount = $('.io_item2_list').length; console.log('[IO View Toggle] Found', itemCount, 'items in category'); // Handle toggle button clicks using native JavaScript for better compatibility // Remove any existing event listeners first $('.io_view_toggle_btn').off('click.viewToggle'); // Use native JavaScript addEventListener for more reliable event handling var buttons = document.querySelectorAll('.io_view_toggle_btn'); console.log('[IO View Toggle] Attaching event listeners to', buttons.length, 'buttons using native JS'); buttons.forEach(function(button) { // Remove any existing listener var newButton = button.cloneNode(true); button.parentNode.replaceChild(newButton, button); // Add fresh event listener newButton.addEventListener('click', function(e) { e.preventDefault(); e.stopPropagation(); var view = this.getAttribute('data-view'); console.log('[IO View Toggle] Button clicked (native listener), switching to view:', view); // Generate list view content if switching to list view if (view === 'list') { if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available'); } } // Update button states document.querySelectorAll('.io_view_toggle_btn').forEach(function(btn) { btn.classList.remove('active'); }); this.classList.add('active'); console.log('[IO View Toggle] Updated button active states'); // Update grid view var catdiv = document.querySelector('.io_catdiv2'); if (catdiv) { catdiv.classList.remove('tile-view', 'list-view'); catdiv.classList.add(view + '-view'); console.log('[IO View Toggle] Applied view class:', view + '-view'); } // Save preference localStorage.setItem('io_category_view', view); console.log('[IO View Toggle] Saved view preference to localStorage:', view); // Debug: Log current layout state setTimeout(function() { if (catdiv) { var containerClasses = catdiv.className; var visibleItems = document.querySelectorAll('.io_item2_list:not([style*="display: none"])').length; console.log('[IO View Toggle] Layout updated - Container classes:', containerClasses); console.log('[IO View Toggle] Visible items after view change:', visibleItems); // Check if list view content is properly shown/hidden if (view === 'list') { var visibleListContent = document.querySelectorAll('.io_list_view_content:not([style*="display: none"])').length; console.log('[IO View Toggle] Visible list content elements:', visibleListContent); } } }, 100); }, true); // Use capture phase console.log('[IO View Toggle] Event listener attached to button:', newButton.getAttribute('data-view')); }); console.log('[IO View Toggle] Event handlers attached successfully'); // Mark as initialized isInitialized = true; } // Initialize when page loads console.log('[IO View Toggle] Starting initial setup'); initViewToggle(); // Also initialize after dynamic content loads (if applicable) $(document).on('io_content_loaded', function() { console.log('[IO View Toggle] Dynamic content loaded event detected, reinitializing'); initViewToggle(); }); // Debug: Monitor for DOM changes that might affect our functionality if (typeof MutationObserver !== 'undefined') { var mutationTimeout; var lastItemCount = $('.io_item2_list').length; var observer = new MutationObserver(function(mutations) { // Debounce: clear existing timeout and set a new one clearTimeout(mutationTimeout); mutationTimeout = setTimeout(function() { var currentItemCount = $('.io_item2_list').length; // Only trigger if we have new items that weren't there before if (currentItemCount > lastItemCount) { console.log('[IO View Toggle] New items detected in DOM (' + lastItemCount + ' -> ' + currentItemCount + ')'); lastItemCount = currentItemCount; // If already initialized, just generate list view content for new items if in list view if (isInitialized) { var currentView = localStorage.getItem('io_category_view') || 'tile'; if (currentView === 'list') { console.log('[IO View Toggle] Generating list view content for new items'); if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available'); } } } else { // Not initialized yet, so initialize console.log('[IO View Toggle] Initializing due to new items'); initViewToggle(); } } }, 250); // 250ms debounce }); observer.observe(document.body, { childList: true, subtree: true }); console.log('[IO View Toggle] DOM mutation observer started'); } // Debug: Log window resize events that might affect responsive layout $(window).on('resize.viewToggle', function() { var windowWidth = $(window).width(); var currentView = $('.io_catdiv2').hasClass('list-view') ? 'list' : 'tile'; console.log('[IO View Toggle] Window resized to:', windowWidth, 'px, current view:', currentView); }); console.log('[IO View Toggle] Initialization complete'); });

window.io_category_data = window.io_category_data || {}; window.io_category_data['1808775'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"11\u0027\u0027","rental_id":"1808775","rental_name":"Ashleigh Dinner Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022976147\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221808775\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3534 - Edited_1679058670.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3534 - Edited_1679058670_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022976149\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221808775\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Creative-Shot-September-2021_33_1679058670.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Creative-Shot-September-2021_33_1679058670_big.jpg\u0022}}"};

Ashleigh Dinner Plate

from $1.65

Ashleigh+Dinner+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/black-bar-6-2/

1808775

Limited

Dropdown

10

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1808817'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1808817","rental_name":"Ashleigh Salad Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022976183\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221808817\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/dinner - Edited_1679059396.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/dinner - Edited_1679059396_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022976185\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221808817\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Creative-Shot-September-2021_33_1679059396.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Creative-Shot-September-2021_33_1679059396_big.jpg\u0022}}"};

Ashleigh Salad Plate

from $1.65

Ashleigh+Salad+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/ashleigh-salad-plate/

1808817

Limited

Dropdown

10

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1808077'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1808077","rental_name":"Eleanor Charcoal Dinner Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022975227\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221808077\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3533 - Edited_1678999273.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3533 - Edited_1678999273_big.png\u0022}}"};

Eleanor Charcoal Dinner Plate

from $3.50

Eleanor+Charcoal+Dinner+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/eleanor-charcoal-dinner-plate/

1808077

Limited

Dropdown

10

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1808087'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1808087","rental_name":"Eleanor Charcoal Salad Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022975237\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221808087\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Eleanor-Charcoal-Salad-Full-Decor-600x600 - Edited_1679000170.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Eleanor-Charcoal-Salad-Full-Decor-600x600 - Edited_1679000170_big.png\u0022}}"};

Eleanor Charcoal Salad Plate

from $3.50

Eleanor+Charcoal+Salad+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/eleanor-charcoal-salad-plate/

1808087

Limited

Dropdown

10

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1808765'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"11\u0027\u0027","rental_id":"1808765","rental_name":"Eleanor Fern Dinner Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022976139\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221808765\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Eleanor-Fern-Dinner-600x600 - Edited_1679058195.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Eleanor-Fern-Dinner-600x600 - Edited_1679058195_big.png\u0022}}"};

Eleanor Fern Dinner Plate

from $3.50

Eleanor+Fern+Dinner+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/eleanor-fern-dinner-plate/

1808765

Limited

Dropdown

10

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1808773'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"8.25\u0027\u0027","rental_id":"1808773","rental_name":"Eleanor Fern Salad Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022976145\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221808773\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Eleanor-Fern-Salad-Full-Decor-600x600 - Edited_1679058320.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Eleanor-Fern-Salad-Full-Decor-600x600 - Edited_1679058320_big.png\u0022}}"};

Eleanor Fern Salad Plate

from $3.50

Eleanor+Fern+Salad+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/eleanor-fern-salad-plate/

1808773

Limited

Dropdown

10

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1807971'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"11\u0027\u0027","rental_id":"1807971","rental_name":"Eleanor Indigo Dinner Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022975125\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221807971\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3536 - Edited_1678995905.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3536 - Edited_1678995905_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022975133\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221807971\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Creative-Shot-September-2021_46_1678996039.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Creative-Shot-September-2021_46_1678996039_big.jpg\u0022}}"};

Eleanor Indigo Dinner Plate

from $3.50

Eleanor+Indigo+Dinner+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/eleanor-indigo-dinner-plate/

1807971

Limited

Dropdown

10

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1807983'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"8.25\u0027\u0027","rental_id":"1807983","rental_name":"Eleanor Indigo Salad Plate- Full Decor","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022975147\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221807983\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3537 - Edited_1678996114.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3537 - Edited_1678996114_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022975149\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221807983\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Creative-Shot-September-2021_46_1678996114.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Creative-Shot-September-2021_46_1678996114_big.jpg\u0022}}"};

Eleanor Indigo Salad Plate- Full Decor

from $3.50

Eleanor+Indigo+Salad+Plate-+Full+Decor

https://www.aspartyrental.com/rentals/dinnerware-rentals/eleanor-indigo-salad-plate/

1807983

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2241529'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"8.25\u0027\u0027","rental_id":"2241529","rental_name":"Eleanor Indigo Salad Plate- Rim Decor","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221390831\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222241529\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2024-03-11 12.17.59 PM_1710173914.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2024-03-11 12.17.59 PM_1710173914_big.png\u0022}}"};

Eleanor Indigo Salad Plate- Rim Decor

from $3.50

Eleanor+Indigo+Salad+Plate-+Rim+Decor

https://www.aspartyrental.com/rentals/dinnerware-rentals/eleanor-indigo-salad-plate-rim-decor/

2241529

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2069981'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2069981","rental_name":"Plate Scrape","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221209863\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222069981\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Artboard37_0e178103-3f11-4176-a958-5fb31870851d_1697726645.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Artboard37_0e178103-3f11-4176-a958-5fb31870851d_1697726645_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221209865\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222069981\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Artboard37_1_1697726645.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Artboard37_1_1697726645_big.png\u0022}}"};

Plate Scrape

from $75.00

Plate+Scrape

https://www.aspartyrental.com/rentals/dinnerware-rentals/plate-scrape/

2069981

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1151889'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1151889","rental_name":"Square Bowl 6oz","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022236753\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u00221151889\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Square Plate_181863116.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Square Plate_181863116_big.jpg\u0022}}"};

Square Bowl 6oz

from $0.90

Square+Bowl+6oz

https://www.aspartyrental.com/rentals/dinnerware-rentals/square-bowl-6oz/

1151889

Limited

Dropdown

10

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1808863'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"10.75\u0027\u0027","rental_id":"1808863","rental_name":"Valentina Dinner Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022976247\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221808863\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3532 - Edited_1679065099.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3532 - Edited_1679065099_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022976249\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221808863\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3543_1679065100.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3543_1679065100_big.jpg\u0022}}"};

Valentina Dinner Plate

from $1.25

Valentina+Dinner+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/valentina-dinner-plate/

1808863

Limited

Dropdown

10

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1808873'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"8\u0027\u0027","rental_id":"1808873","rental_name":"Valentina Salad Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022976259\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221808873\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3532 - Edited_1679065686.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3532 - Edited_1679065686_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022976261\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221808873\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3543_1679065686.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3543_1679065686_big.jpg\u0022}}"};

Valentina Salad Plate

from $1.25

Valentina+Salad+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/valentina-salad-plate/

1808873

Limited

Dropdown

10

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1586797'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1586797","rental_name":"White Gold Single Trim China Dinner Plates","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820747\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221586797\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/s-l500 (1)_1666798789.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/s-l500 (1)_1666798789_big.jpg\u0022}}"};

White Gold Single Trim China Dinner Plates

from $0.68

White+Gold+Single+Trim+China+Dinner+Plates

https://www.aspartyrental.com/rentals/dinnerware-rentals/white-gold-single-trim-china-dinner-plates/

1586797

Limited

Dropdown

20

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1586801'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1586801","rental_name":"White Gold Single Trim China Salad Plates","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820769\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221586801\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/s-l500 (1)_1666798802.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/s-l500 (1)_1666798802_big.jpg\u0022}}"};

White Gold Single Trim China Salad Plates

from $0.68

White+Gold+Single+Trim+China+Salad+Plates

https://www.aspartyrental.com/rentals/dinnerware-rentals/white-gold-single-trim-china-salad-plates/

1586801

Limited

Dropdown

20

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['448263'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"448263","rental_name":"Fleur Salad Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022757123\u0022,\u0022rentalimage_createtime\u0022:\u00221657908098\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221657908098\u0022,\u0022rentalimage_itemid\u0022:\u0022448263\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/fleur_693853.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/fleur_693853_big.jpg\u0022}}"};

Fleur Salad Plate

from $1.00

Fleur+Salad+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/fleur-8-plate/

448263

Limited

Textbox

20

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['448261'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"448261","rental_name":"Fleur Dinner Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022757121\u0022,\u0022rentalimage_createtime\u0022:\u00221657908081\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221657908081\u0022,\u0022rentalimage_itemid\u0022:\u0022448261\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/fleur_421607.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/fleur_421607_big.jpg\u0022}}"};

Fleur Dinner Plate

from $1.00

Fleur+Dinner+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/fleur-11-dinner-plate-minimum-set-of-10/

448261

Limited

Textbox

20

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['448255'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"448255","rental_name":"Marais Gold 8\u0027\u0027 Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022102497\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022448255\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Maraisg_150711.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Maraisg_150711_big.jpg\u0022}}"};

Marais Gold 8″ Plate

from $1.00

Marais+Gold+8%22+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/marais-gold-8-plate/

448255

Limited

Textbox

20

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['448253'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"11\u0027\u0027","rental_id":"448253","rental_name":"Marais Gold Dinner Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022985113\u0022,\u0022rentalimage_createtime\u0022:\u00221679685704\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221679685704\u0022,\u0022rentalimage_itemid\u0022:\u0022448253\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Maraisg_296452.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Maraisg_296452_big.jpg\u0022}}"};

Marais Gold Dinner Plate

from $1.00

Marais+Gold+Dinner+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/marais-gold-11-dinner-plate-min10-must-be-returned-clean/

448253

Limited

Textbox

20

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['448259'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"448259","rental_name":"Marais Platinum 8\u0027\u0027 Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022893021\u0022,\u0022rentalimage_createtime\u0022:\u00221674050947\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221674050947\u0022,\u0022rentalimage_itemid\u0022:\u0022448259\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Maraisp_328543.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Maraisp_328543_big.jpg\u0022}}"};

Marais Platinum 8″ Plate

from $1.00

Marais+Platinum+8%22+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/marais-platinum-8-plate/

448259

Limited

Textbox

20

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['448257'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"11\u0027\u0027","rental_id":"448257","rental_name":"Marais Platinum Dinner Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022878017\u0022,\u0022rentalimage_createtime\u0022:\u00221672938506\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221672938506\u0022,\u0022rentalimage_itemid\u0022:\u0022448257\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Maraisp_483655.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Maraisp_483655_big.jpg\u0022}}"};

Marais Platinum Dinner Plate

from $1.00

Marais+Platinum+Dinner+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/marais-platinum-11-dinner-plate-minimum-set-of-10/

448257

Limited

Textbox

20

0

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['450019'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"8\u0027\u0027","rental_id":"450019","rental_name":"White China Salad Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022751023\u0022,\u0022rentalimage_createtime\u0022:\u00221657126880\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221657126880\u0022,\u0022rentalimage_itemid\u0022:\u0022450019\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/White China 8 Plate_710935151.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/White China 8 Plate_710935151_big.jpg\u0022}}"};

White China Salad Plate

from $1.00

White+China+Salad+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/white-china-8-plate-minimum-set-of-10/

450019

Limited

Textbox

20

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['370066'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"10\u0027\u0027","rental_id":"370066","rental_name":"White China Dinner Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022985123\u0022,\u0022rentalimage_createtime\u0022:\u00221679685903\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221679685903\u0022,\u0022rentalimage_itemid\u0022:\u0022370066\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/0d23f6ec89821872f1e0b11258a94edb.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/a80111d462eb162a2a85edb0bdd34baa.jpg\u0022}}"};

White China Dinner Plate

from $1.00

White+China+Dinner+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/white-china-10-plate-minimum-set-of-10/

370066

Limited

Textbox

20

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['488775'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"488775","rental_name":"White Gold Trim China Salad Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022793725\u0022,\u0022rentalimage_createtime\u0022:\u00221663007172\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221663007172\u0022,\u0022rentalimage_itemid\u0022:\u0022488775\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/White Gold Trim Plates_417619307.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/White Gold Trim Plates_417619307_big.jpg\u0022}}"};

White Gold Trim China Salad Plate

from $0.68

White+Gold+Trim+China+Salad+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/white-gold-trim-china-salad-plates/

488775

Limited

Textbox

20

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['488773'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"10.5\u0027\u0027","rental_id":"488773","rental_name":"White Gold Trim China Dinner Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022806997\u0022,\u0022rentalimage_createtime\u0022:\u00221664977534\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221664977534\u0022,\u0022rentalimage_itemid\u0022:\u0022488773\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/White Gold Trim 10.5_759048911.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/White Gold Trim 10.5_759048911_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022806999\u0022,\u0022rentalimage_createtime\u0022:\u00221664977534\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221664977534\u0022,\u0022rentalimage_itemid\u0022:\u0022488773\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/White Gold Trim Plates_348157689.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/White Gold Trim Plates_348157689_big.jpg\u0022}}"};

White Gold Trim China Dinner Plate

from $0.68

White+Gold+Trim+China+Dinner+Plate

https://www.aspartyrental.com/rentals/dinnerware-rentals/white-gold-trim-china-10-5-dinner-plates/

488773

Limited

Textbox

20

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

Elevate Your Event with Exquisite Dinnerware Rentals

Welcome to A&S Party Rental, where we bring style and sophistication to your table with our premium Dinnerware Rentals. Whether you’re planning a wedding, corporate event, or any special occasion, our extensive collection of high-quality dinnerware will add a touch of elegance to your dining experience.

Why Choose Dinnerware Rentals for Your Event?

Variety:* Our dinnerware rental options include a wide range of styles, patterns, and materials. Choose from classic and timeless designs to contemporary and trendy options, allowing you to customize your table setting to match the theme of your event.

Convenience: Planning an event involves many details, and our dinnerware rentals make the process convenient for you. Forget about the stress of buying and cleaning large quantities of dinnerware—renting ensures a hassle-free experience from start to finish.

Quality Assurance:* We pride ourselves on offering top-quality dinnerware that meets the highest standards. Our pieces are carefully inspected, cleaned, and maintained to guarantee a polished and flawless presentation for your event.

Explore Our Dinnerware Rental Options

Fine China: Make a statement with our elegant fine china, perfect for formal events and weddings. Our selection includes various patterns and styles to suit your taste and complement your overall design.

Classic White Dinnerware: Achieve a timeless and sophisticated look with our classic white dinnerware. Versatile and stylish, it pairs well with any color scheme or theme, providing a clean and polished appearance.

Modern and Trendy Styles: Stay on trend with our collection of modern and trendy dinnerware. From floral patterns to bold colors, we have options that will add a contemporary flair to your table setting.

Why Choose A&S Party Rental for Dinnerware Rentals?

Extensive Selection: Our vast inventory ensures that you’ll find the perfect dinnerware to suit your event style and preferences. Explore our options to discover the ideal pieces that will enhance your table setting.

Professional Service: We understand the importance of a seamless event, and our professional team is dedicated to providing excellent service. From initial inquiries to delivery and pickup, we are committed to making your experience stress-free.

Competitive Pricing: Hosting a memorable event shouldn’t break the bank. Our competitive pricing allows you to achieve a high-end look without compromising your budget.

How to Rent Dinnerware from A&S Party Rental:

  1. Browse Our Collection: Explore our website or visit our showroom to view our extensive dinnerware rental options.
  2. Request a Quote: Contact our friendly team to receive a personalized quote based on your event requirements at 937-885-5454
  3. Reserve Your Rental: Once you’ve chosen your dinnerware, secure your rental for your event date.
  4. Delivery and Pickup: Relax and let us take care of the logistics. We’ll deliver your chosen dinnerware to your event venue and handle the pickup afterward or you have the option to save money and pick these items up at our Franklin warehouse.

Elevate your dining experience with the exquisite dinnerware from A&S Party Rental. Contact us today to turn your event vision into a reality at 937-885-5454

Check out our YouTube Channel, Facebook , Pinterest & TikTok

Want to know what our customers think of us and our dinnerware rentals? Check out our reviews here.

Google Reviews  or Facebook Reviews.

Â