items
Set Event Date

Staging / Dance Floor Lima for Rent

41573

Stage & dance floor rentals in Lima, Delphos & Findlay, Ohio from A&S Party Rental — LED, cherry, black/white floors ideal for weddings and company picnics.

Professional delivery to Fort Wayne, IN, Lima, OH, Findlay, OH and surrounding areas. Please submit a quote or contact us to be sure we service your area.

Stage & Dance Floor Rentals in Lima, Delphos & Findlay, Ohio

Get the party started with A&S Party Rental’s stage and dance floor rentals in Lima, Delphos, and Findlay! Perfect for weddings, company picnics, birthday parties, school events, and family gatherings, our stages and dance floors turn any venue into a high-energy celebration space.

Choose from LED dance floors, cherry wood dance floors, or classic black-and-white floors to match your event’s style. Our stages are sturdy, professional, and safe, providing the perfect platform for performances, speeches, or entertainment.

Whether it’s a wedding reception, company picnic, or special celebration, our stage and dance floor rentals make your Lima, Delphos, or Findlay event fun, stylish, and unforgettable.

Take center stage—contact A&S Party Rental today to reserve your stage and dance floors and get your guests dancing!

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['508419'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"508419","rental_name":"15 X 15 Dance Floor","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022638409\u0022,\u0022rentalimage_createtime\u0022:\u00221647108695\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647108695\u0022,\u0022rentalimage_itemid\u0022:\u0022508419\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/snaplock dance floor 1_928470330.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/snaplock dance floor 1_928470330_big.jpg\u0022}}"};

15 X 15 Dance Floor

from $315.00

15+X+15+Dance+Floor

https://www.aspartyrental.com/lima/inventory/stage-and-dance-floor-rentals/15-x-15-dance-floor/

508419

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['619243'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"619243","rental_name":"18 x 18 Dance Floor","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022638419\u0022,\u0022rentalimage_createtime\u0022:\u00221647108736\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647108736\u0022,\u0022rentalimage_itemid\u0022:\u0022619243\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/dance-floor-walnut-main_551231454.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/dance-floor-walnut-main_551231454_big.jpg\u0022}}"};

18 x 18 Dance Floor

from $455.00

18+x+18+Dance+Floor

https://www.aspartyrental.com/lima/inventory/stage-and-dance-floor-rentals/18-x-18-dance-floor/

619243

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['619245'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"619245","rental_name":"21 x 21 Dance Floor","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022638421\u0022,\u0022rentalimage_createtime\u0022:\u00221647108759\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647108759\u0022,\u0022rentalimage_itemid\u0022:\u0022619245\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/snap lock dance floor gym_136813142.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/snap lock dance floor gym_136813142_big.jpg\u0022}}"};

21 x 21 Dance Floor

from $0.00

21+x+21+Dance+Floor

https://www.aspartyrental.com/lima/inventory/stage-and-dance-floor-rentals/21-x-21-dance-floor/

619245

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['619249'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"619249","rental_name":"24 x 24 Dance Floor","images_arr":"{}"};

24 x 24 Dance Floor

from $810.00

24+x+24+Dance+Floor

https://www.aspartyrental.com/lima/inventory/stage-and-dance-floor-rentals/24-x-24-dance-floor/

619249

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['437647'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"437647","rental_name":"3X3 Cherry Dancefloor","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022638427\u0022,\u0022rentalimage_createtime\u0022:\u00221647108846\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647108846\u0022,\u0022rentalimage_itemid\u0022:\u0022437647\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/3 X 3 Dance Floor_867727.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/3 X 3 Dance Floor_867727_big.jpg\u0022}}"};

3X3 Cherry Dancefloor

from $22.00

3X3+Cherry+Dancefloor

https://www.aspartyrental.com/lima/inventory/stage-and-dance-floor-rentals/dance-floor/

437647

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['439201'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"4x8","rental_id":"439201","rental_name":"4 x 8 alum stage panels","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022638429\u0022,\u0022rentalimage_createtime\u0022:\u00221647108898\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647108898\u0022,\u0022rentalimage_itemid\u0022:\u0022439201\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Staging_77891758.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Staging_77891758_big.jpg\u0022}}"};

4 x 8 alum stage panels

from $69.50

4+x+8+alum+stage+panels

https://www.aspartyrental.com/lima/inventory/stage-and-dance-floor-rentals/4-x-8-alum-stage-panels/

439201

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['438059'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"438059","rental_name":"Crowd Control Barricade (interloc)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022638439\u0022,\u0022rentalimage_createtime\u0022:\u00221647108929\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647108929\u0022,\u0022rentalimage_itemid\u0022:\u0022438059\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Crowd Control Barricade_586092149.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Crowd Control Barricade_586092149_big.jpg\u0022}}"};

Crowd Control Barricade (interloc)

from $22.00

Crowd+Control+Barricade+%28interloc%29

https://www.aspartyrental.com/lima/inventory/stage-and-dance-floor-rentals/crowd-control-barricade-interloc/

438059

Limited

Textbox

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['843145'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"843145","rental_name":"Crown Control Stanchion with Retractable Belt","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022638441\u0022,\u0022rentalimage_createtime\u0022:\u00221647108949\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647108949\u0022,\u0022rentalimage_itemid\u0022:\u0022843145\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/CCW_Series_Black_Black_Belt_440x440.progressive_582947357.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/CCW_Series_Black_Black_Belt_440x440.progressive_582947357_big.jpg\u0022}}"};

Crown Control Stanchion with Retractable Belt

from $9.50

Crown+Control+Stanchion+with+Retractable+Belt

https://www.aspartyrental.com/lima/inventory/stage-and-dance-floor-rentals/crown-control-stanchion-with-retractable-belt/

843145

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['897995'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"16\u0027 x 16\u0027","rental_id":"897995","rental_name":"LED Dance Floor 16\u0027x16\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022638445\u0022,\u0022rentalimage_createtime\u0022:\u00221647108987\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647108987\u0022,\u0022rentalimage_itemid\u0022:\u0022897995\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/pic 1_3091969.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/pic 1_3091969_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221571237\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022897995\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/LED Dance Floor_1722356471.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/LED Dance Floor_1722356471_big.jpg\u0022}}"};

LED Dance Floor 16’x16′

from $1,250.00

LED+Dance+Floor+16%27×16%27

https://www.aspartyrental.com/lima/inventory/stage-and-dance-floor-rentals/led-dance-floor-16×16/

897995

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['887459'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"887459","rental_name":"LED Dance Floor 16X16","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022638443\u0022,\u0022rentalimage_createtime\u0022:\u00221647108969\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647108969\u0022,\u0022rentalimage_itemid\u0022:\u0022887459\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/image0 (11)_1706632188.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/image0 (11)_1706632188_big.jpeg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221571235\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022887459\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/LED Dance Floor_1722356457.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/LED Dance Floor_1722356457_big.jpg\u0022}}"};

LED Dance Floor 16X16

from $1,295.00

LED+Dance+Floor+16X16

https://www.aspartyrental.com/lima/inventory/stage-and-dance-floor-rentals/led-dance-floor/

887459

Limited

Textbox

1

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['439205'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"439205","rental_name":"Staging step unit w\/ 16 - 24\u0027\u0027 rise (4x8 stage)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022638447\u0022,\u0022rentalimage_createtime\u0022:\u00221647109007\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647109007\u0022,\u0022rentalimage_itemid\u0022:\u0022439205\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/StepUnitForStaging_140785785.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/StepUnitForStaging_140785785_big.jpg\u0022}}"};

Staging step unit w/ 16 – 24″ rise (4×8 stage)

from $75.50

Staging+step+unit+w%2F+16+-+24%22+rise+%284×8+stage%29

https://www.aspartyrental.com/lima/inventory/stage-and-dance-floor-rentals/staging-step-unit-w-16-24-rise/

439205

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

Welcome to AS Party Rental, your premier destination for stage and dance floor rentals in Lima!

Stage the perfect scene with our premium Stage and Dance Floor Rentals!​

Elevate the atmosphere and performance of your event with our high-quality stage and dance floor options. Whether you’re planning a wedding, concert, corporate event, or any special occasion, our rentals are sure to impress your guests and create lasting memories.

Here are our top 7 stage and dance floor rentals:

  1. Portable Stages: Versatile and easy-to-setup stages available in various sizes to accommodate any venue.

  2. Outdoor Stages: Weather-resistant stages suitable for outdoor events such as festivals, concerts, and community gatherings.

  3. Runway Stages: Sleek and stylish stages perfect for fashion shows, runway events, and product launches.

  4. LED Dance Floors: Illuminate your dance floor with our LED dance floors, adding excitement and energy to your event.

  5. Wooden Dance Floors: Classic wooden dance floors for elegant weddings, parties, and special events.

  6. Vinyl Dance Floors: Durable and easy-to-clean vinyl dance floors available in a variety of colors and patterns.

  7. Customizable Options: Customize your stage and dance floor setup with additional accessories such as railings, skirting, and lighting.

With our stage and dance floor rentals, you can create the perfect platform for performances, speeches, and dancing, ensuring that your event is a memorable success.

At AS Party Rental, we’re committed to providing exceptional service and top-quality products to make your event unforgettable. Contact us today to reserve your stage and dance floor rentals and let us help you create an unforgettable experience for your guests!

Our dance floors can be placed indoors or outdoors, and are perfect for busting a move at your wedding!  These beautiful cherry wood dance floors are customizable in size, and are great for intimate receptions and grand celebrations.  All dance floors come with professional installation, ensuring your event will be stress-free and enjoyable for all.

We even have a fun LED dance floor that will light up any space into a raving good time!  This dance floor is a hit at college events, high school after proms and any event that is one to remember.  

With our versatile stage panels, nobody will miss any of the action.  Even more, we offer skirting and stairs to complete your ultimate stage.

Give us a call at (419) 339-9701 and let us bring your vision to life!