Elevate Your Event with A&S Party Rental: Premier Decor Rentals for Unforgettable Celebrations

Welcome to A&S Party Rental, your one-stop destination for transforming any event into a visually stunning and unforgettable experience with our exquisite Decor Rentals. Whether you’re planning a wedding, corporate gathering, or any special occasion, our carefully curated collection of high-quality decor items will add a touch of elegance, style, and personality to your venue.

Why Choose Decor Rentals from A&S Party Rental?

Versatility:* Our decor rental options cover a broad spectrum of styles, themes, and aesthetics. From classic and timeless designs to modern and trendy options, our selection allows you to customize your event space to match the unique theme and ambiance of your celebration.

Convenience: Planning an event involves numerous details, and our decor rentals offer a convenient solution. Skip the stress of purchasing and storing large quantities of decor items—renting ensures a hassle-free experience, letting you focus on the joy of your event.

Quality Assurance:* At A&S Party Rental, we prioritize quality. Our decor items are meticulously inspected, ensuring they are in top-notch condition and ready to be the focal point of your celebration.

Explore Our Decor Rental Options

Table Linens and Chair Covers: Elevate your tables and chairs with our extensive selection of table linens and chair covers. From classic whites to vibrant hues, our linens add a pop of color and sophistication to your event space.

Backdrops and Drapery: Create a stunning backdrop for your event with our backdrops and drapery options. Whether you’re aiming for a classic look or a modern vibe, our drapes set the stage for a memorable celebration.

Centerpieces and Table Decor:* Make a statement with our centerpiece and table decor options. From floral arrangements to themed decor pieces, these items add the perfect finishing touch to your tables.

Lighting Solutions: Illuminate your event with our lighting solutions. From elegant chandeliers to ambient string lights, our lighting options create a warm and inviting atmosphere.

Why Choose A&S Party Rental for Decor Rentals?

Extensive Selection: Our broad inventory ensures that you’ll find the perfect decor items to complement your event style and preferences. Explore our options to discover the ideal pieces that will enhance the overall aesthetic of your celebration.

Professional Service: We understand the importance of a seamless event, and our professional team at A&S Party Rental 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 an exceptional event shouldn’t be cost-prohibitive. A&S Party Rental offers competitive pricing, allowing you to achieve a visually stunning event without exceeding your budget.

How to Rent Decor from A&S Party Rental

  1. Explore Our Collection: Visit our website or showroom to peruse our extensive decor rental options.

  2. Request a Quote: Contact our friendly team at A&S Party Rental to receive a personalized quote based on your event requirements.

  3. Reserve Your Rental: Once you’ve chosen your decor items, secure your rental for your event date.

  4. Delivery and Pickup: Relax and let us handle the logistics. We’ll deliver your chosen decor items to your event venue and handle the pickup afterward.

Transform your event space into a work of art with the exquisite decor rentals from A&S Party Rental. Contact us today to turn your event vision into a captivating reality.

Check out our YouTube Channel, Facebook , Pinterest & TikTok

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

Google Reviews  or Facebook Reviews.

items
Set Event Date

Decor Rentals for Rent

38564

Decor rentals in Dayton, Ohio from A&S Party Rental — ideal for weddings, company picnics, birthday parties, and school events.

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

Decor Rentals in Dayton, Ohio

Transform your event into a picture-perfect celebration with A&S Party Rental’s decor rentals in Dayton! Perfect for weddings, company picnics, birthday parties, school events, and family gatherings, our décor adds style, color, and personality to every space.

From table accents and backdrops to themed decorations and specialty décor pieces, we have everything you need to set the mood and wow your guests. Our rentals are easy to use, professionally maintained, and designed to make your event unforgettable.

Whether it’s a wedding, company picnic, or backyard celebration, our décor turns any venue into a stylish and memorable event space.

Decorate with ease—contact A&S Party Rental today to reserve your décor and elevate your Daytonevent!

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['965199'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"965199","rental_name":"34\u0027\u0027 Black Column","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820695\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022965199\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/18286382_master_1666797557.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/18286382_master_1666797557_big.jpg\u0022}}"};

34″ Black Column

from $45.00

34%22+Black+Column

https://www.aspartyrental.com/dayton/inventory/decor-rentals/34-black-column-3/

965199

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['2697981'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2697981","rental_name":"7-12 Feet Tall Curved Chandelier Holder (does not include Ch","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221809899\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697981\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/7-12 Feet Tall Curved Chandelier_1741034826.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/7-12 Feet Tall Curved Chandelier_1741034826_big.jpg\u0022}}"};

7-12 Feet Tall Curved Chandelier Holder (does not include Ch

from $100.00

7-12+Feet+Tall+Curved+Chandelier+Holder+%28does+not+include+Ch

https://www.aspartyrental.com/dayton/inventory/decor-rentals/7-12-feet-tall-curved-chandelier-holder-does-not-include-ch/

2697981

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['1143543'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1143543","rental_name":"Acrylic Love Sign","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022234789\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u00221143543\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Unknown 15_228385084.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Unknown 15_228385084_big.jpg\u0022}}"};

Acrylic Love Sign

from $20.00

Acrylic+Love+Sign

https://www.aspartyrental.com/dayton/inventory/decor-rentals/love-sign-3/

1143543

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['1157031'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1157031","rental_name":"Black Column","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820693\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221157031\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/18286382_master_1666797544.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/18286382_master_1666797544_big.jpg\u0022}}"};

Black Column

from $25.00

Black+Column

https://www.aspartyrental.com/dayton/inventory/decor-rentals/love-sign/

1157031

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['2746135'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2746135","rental_name":"Ceremony Scissors","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146681\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222746135\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/scissors_1760726080.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/scissors_1760726080_big.jpg\u0022}}"};

Ceremony Scissors

from $30.00

Ceremony+Scissors

https://www.aspartyrental.com/dayton/inventory/decor-rentals/ceremony-scissors/

2746135

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['1520799'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1520799","rental_name":"Champagne Wall","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222139264\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221520799\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/champagne wall_1760044110.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/champagne wall_1760044110_big.jpg\u0022}}"};

Champagne Wall

from $250.00

Champagne+Wall

https://www.aspartyrental.com/dayton/inventory/decor-rentals/white-arch/

1520799

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['2697979'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2697979","rental_name":"Chandelier Bohemian Light Blue \u0026 Green","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221809923\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697979\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Chandelier Bohemian Light Blue \u0026 Green_1741035178.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Chandelier Bohemian Light Blue \u0026 Green_1741035178_big.jpg\u0022}}"};

Chandelier Bohemian Light Blue & Green

from $100.00

Chandelier+Bohemian+Light+Blue+%26+Green

https://www.aspartyrental.com/dayton/inventory/decor-rentals/chandelier-bohemian-light-blue-green/

2697979

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['2201859'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2201859","rental_name":"Chandelier Empire Swag Crystal 14\u0027\u0027x26\u0027\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221462767\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222201859\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/download_1714057021.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/download_1714057021_big.png\u0022}}"};

Chandelier Empire Swag Crystal 14″x26″

from $125.00

Chandelier+Empire+Swag+Crystal+14%22×26%22

https://www.aspartyrental.com/dayton/inventory/decor-rentals/chandelier-empire-swag-crystal-14×26/

2201859

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['2201879'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2201879","rental_name":"Chandelier Empire Swag Crystal 24\u0027\u0027x36\u0027\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222139103\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222201879\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/empireswag_1760034671.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/empireswag_1760034671_big.jpg\u0022}}"};

Chandelier Empire Swag Crystal 24″x36″

from $175.00

Chandelier+Empire+Swag+Crystal+24%22×36%22

https://www.aspartyrental.com/dayton/inventory/event-furniture-rentals/chandelier-empire-swag-crystal-24×36/

2201879

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['2062077'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2062077","rental_name":"Clear Glass Votives","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146685\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222062077\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-10-17 2.42.25 PM_1760726554.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-10-17 2.42.25 PM_1760726554_big.png\u0022}}"};

Clear Glass Votives

from $1.00

Clear+Glass+Votives

https://www.aspartyrental.com/dayton/inventory/decor-rentals/clear-glass-votives/

2062077

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['2697983'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2697983","rental_name":"Crystal Candelabra Round 3 Cylinder Cups - 18 1\/4\u0027\u0027 Tall Cent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221809925\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697983\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Crystal Candelabra Round 3 Cylinder Cups_1741035241.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Crystal Candelabra Round 3 Cylinder Cups_1741035241_big.jpg\u0022}}"};

Crystal Candelabra Round 3 Cylinder Cups – 18 1/4″ Tall Cent

from $25.00

Crystal+Candelabra+Round+3+Cylinder+Cups+-+18+1%2F4%22+Tall+Cent

https://www.aspartyrental.com/dayton/inventory/centerpiece-rentals/crystal-candelabra-round-3-cylinder-cups-18-1-4-tall-cent/

2697983

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['3049045'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"3049045","rental_name":"Eucalyptus Garland Strand","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222138103\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00223049045\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/greenery_1759945691.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/greenery_1759945691_big.jpg\u0022}}"};

Eucalyptus Garland Strand

from $12.00

Eucalyptus+Garland+Strand

https://www.aspartyrental.com/dayton/inventory/decor-rentals/eucalyptus-garland-strand/

3049045

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['2211435'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2211435","rental_name":"Flower Wall 8x8 Pampas","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221356735\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222211435\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Pampaswall_1709241578.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Pampaswall_1709241578_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221357163\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222211435\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pampas_7_1709241580.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pampas_7_1709241580_big.png\u0022}}"};

Flower Wall 8×8 Pampas

from $1,200.00

Flower+Wall+8×8+Pampas

https://www.aspartyrental.com/dayton/inventory/decor-rentals/caricature-artist-2-hours/

2211435

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['2211427'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2211427","rental_name":"Flower Wall 8x8 Yaya","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221356731\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222211427\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/yayawall_1709241628.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/yayawall_1709241628_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221357165\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222211427\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/yaya_6_1709241630.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/yaya_6_1709241630_big.png\u0022}}"};

Flower Wall 8×8 Yaya

from $1,200.00

Flower+Wall+8×8+Yaya

https://www.aspartyrental.com/dayton/inventory/decor-rentals/flower-wall-8×8-yaya/

2211427

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['1519271'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1519271","rental_name":"Greenery","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820709\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221519271\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/11913-1-hero-all-about-events-wedding-arch_1666797833.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/11913-1-hero-all-about-events-wedding-arch_1666797833_big.jpeg\u0022}}"};

Greenery

from $0.00

Greenery

https://www.aspartyrental.com/dayton/inventory/decor-rentals/greenery/

1519271

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['2309715'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2309715","rental_name":"Greenery Wall","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221462793\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222309715\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_0313_1714058815.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_0313_1714058815_big.jpg\u0022}}"};

Greenery Wall

from $100.00

Greenery+Wall

https://www.aspartyrental.com/dayton/inventory/decor-rentals/greenery-wall-3/

2309715

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['1723357'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1723357","rental_name":"Hexagon Arch","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022869291\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221723357\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/hex_1671650021.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/hex_1671650021_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022869293\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221723357\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/9777-01-04_1_675x675_crop_center_1671650021.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/9777-01-04_1_675x675_crop_center_1671650021_big.png\u0022}}"};

Hexagon Arch

from $220.00

Hexagon+Arch

https://www.aspartyrental.com/dayton/inventory/event-furniture-rentals/hexagon-arch/

1723357

14297

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['2613787'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"29 in tall","rental_id":"2613787","rental_name":"Pick a Seat Sign","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221742341\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222613787\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Pick A Seat Sign_1737651083.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Pick A Seat Sign_1737651083_big.jpg\u0022}}"};

Pick a Seat Sign

from $25.00

Pick+a+Seat+Sign

https://www.aspartyrental.com/dayton/inventory/decor-rentals/pick-a-seat-sign/

2613787

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['2697985'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2697985","rental_name":"Real Crystal 5 Cup Candelabra Gold Rimmed","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221809897\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697985\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Crystal 5 Cup Candelabra Gold Rimmed_1741034684.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Crystal 5 Cup Candelabra Gold Rimmed_1741034684_big.jpg\u0022}}"};

Real Crystal 5 Cup Candelabra Gold Rimmed

from $30.00

Real+Crystal+5+Cup+Candelabra+Gold+Rimmed

https://www.aspartyrental.com/dayton/inventory/centerpiece-rentals/real-crystal-5-cup-candelabra-gold-rimmed/

2697985

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['1157815'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1157815","rental_name":"Rustic Wood Column","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022838107\u0022,\u0022rentalimage_createtime\u0022:\u00221668186728\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221668186728\u0022,\u0022rentalimage_itemid\u0022:\u00221157815\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rustic-column-set-4-pc-_13972207_1666798007.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rustic-column-set-4-pc-_13972207_1666798007_big.jpg\u0022}}"};

Rustic Wood Column

from $30.00

Rustic+Wood+Column

https://www.aspartyrental.com/dayton/inventory/decor-rentals/6-avenue-bar/

1157815

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['524107'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"524107","rental_name":"Staffing for Wedding Table Setup","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820557\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022524107\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Golding-Redding_11.05.19_167_1666794440.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Golding-Redding_11.05.19_167_1666794440_big.jpg\u0022}}"};

Staffing for Wedding Table Setup

from $25.00

Staffing+for+Wedding+Table+Setup

https://www.aspartyrental.com/dayton/inventory/decor-rentals/bar-back-4-shelves/

524107

Unlimited

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['1723323'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1723323","rental_name":"Triangle Arch","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022869269\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221723323\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/triangle arch_1671649750.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/triangle arch_1671649750_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022869271\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221723323\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/9776-01-04_1_675x675_crop_center_1671649751.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/9776-01-04_1_675x675_crop_center_1671649751_big.png\u0022}}"};

Triangle Arch

from $220.00

Triangle+Arch

https://www.aspartyrental.com/dayton/inventory/decor-rentals/triangle-arch/

1723323

14297

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['1147291'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1147291","rental_name":"Twinkle Light 300\u0027 Strand","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820727\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221147291\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/fd05ecf6e9f28f96c6bd0c5a32c8fc22_1666798569.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/fd05ecf6e9f28f96c6bd0c5a32c8fc22_1666798569_big.jpg\u0022}}"};

Twinkle Light 300′ Strand

from $40.00

Twinkle+Light+300%27+Strand

https://www.aspartyrental.com/dayton/inventory/decor-rentals/twinkle-light-300-strand/

1147291

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['1143539'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1143539","rental_name":"Welcome Sign","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022234785\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u00221143539\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Unknown 5_344627373.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Unknown 5_344627373_big.jpg\u0022}}"};

Welcome Sign

from $25.00

Welcome+Sign

https://www.aspartyrental.com/dayton/inventory/decor-rentals/welcome-sign-2/

1143539

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['1157029'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1157029","rental_name":"White 40\u0027\u0027 Column Square Base 12\u0027\u0027 Diameter","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820733\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221157029\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/40-in-Column-w-cap-470x470_1666798643.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/40-in-Column-w-cap-470x470_1666798643_big.png\u0022}}"};

White 40″ Column Square Base 12″ Diameter

from $25.00

White+40%22+Column+Square+Base+12%22+Diameter

https://www.aspartyrental.com/dayton/inventory/decor-rentals/throne-loveseat/

1157029

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['370012'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370012","rental_name":"White 40\u0027\u0027 Column Square Base 9\u0027\u0027 Diameter","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820731\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022370012\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/40-in-Column-w-cap-470x470_1666798638.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/40-in-Column-w-cap-470x470_1666798638_big.png\u0022}}"};

White 40″ Column Square Base 9″ Diameter

from $11.00

White+40%22+Column+Square+Base+9%22+Diameter

https://www.aspartyrental.com/dayton/inventory/decor-rentals/10-player-paintless-paintball-4-hour-rental/

370012

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['1412803'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1412803","rental_name":"Wood Metal Lantern","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022533123\u0022,\u0022rentalimage_createtime\u0022:\u00221636393578\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221636393578\u0022,\u0022rentalimage_itemid\u0022:\u00221412803\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Wood Metal Lantern_909653397.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Wood Metal Lantern_909653397_big.jpg\u0022}}"};

Wood Metal Lantern

from $25.00

Wood+Metal+Lantern

https://www.aspartyrental.com/dayton/inventory/decor-rentals/wood-metal-lantern/

1412803

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['682043'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"Wall size 3 1\/2 Wide x 6 1\/2 Long","rental_id":"682043","rental_name":"Wood Wall","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022709017\u0022,\u0022rentalimage_createtime\u0022:\u00221652719636\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221652719636\u0022,\u0022rentalimage_itemid\u0022:\u0022682043\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Wood Wall_787296714.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Wood Wall_787296714_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022709019\u0022,\u0022rentalimage_createtime\u0022:\u00221652719636\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221652719636\u0022,\u0022rentalimage_itemid\u0022:\u0022682043\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Wood Wall 2_983402131.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Wood Wall 2_983402131_big.jpg\u0022}}"};

Wood Wall

from $100.00

Wood+Wall

https://www.aspartyrental.com/dayton/inventory/decor-rentals/wood-wall/

682043

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['2143257'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2143257","rental_name":"Wood Wall with LED Lights","images_arr":"{}"};

Wood Wall with LED Lights

from $120.00

Wood+Wall+with+LED+Lights

https://www.aspartyrental.com/dayton/inventory/decor-rentals/wood-wall-with-led-lights-2/

2143257

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();
}
});
});