items
Set Event Date

Trade Show & Expo for Rent

299605


Professional delivery to Dayton Ohio and surrounding areas. Please submit a quote or contact us to be sure we service your area.
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['1272893'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1272893","rental_name":"8\u0027 Brown Plastic Resin Banquet Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022976885\u0022,\u0022rentalimage_createtime\u0022:\u00221679088565\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221679088565\u0022,\u0022rentalimage_itemid\u0022:\u00221272893\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/8 rhino_967121175.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/8 rhino_967121175_big.jpg\u0022}}"};

8′ Brown Plastic Resin Banquet Table

from $10.95

8%27+Brown+Plastic+Resin+Banquet+Table

https://www.aspartyrental.com/rentals/emergency-disaster-services/8-brown-plastic-resin-banquet-table/

1272893

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['3064497'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"3064497","rental_name":"Black Metal Podium","images_arr":"{}"};

Black Metal Podium

from $75.00

Black+Metal+Podium

https://www.aspartyrental.com/rentals/trade-show-expo/black-metal-podium/

3064497

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/rentals/trade-show-expo/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['2078547'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2078547","rental_name":"Corporate Event Catering","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221218023\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222078547\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Catering20Menu_1674673048_big_1698688241.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Catering20Menu_1674673048_big_1698688241_big.png\u0022}}"};

Corporate Event Catering

from $0.00

Corporate+Event+Catering

https://www.aspartyrental.com/rentals/emergency-disaster-services/corporate-event-catering/

2078547

Unlimited

Dropdown

1

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['2143247'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2143247","rental_name":"Green Carpet 3\u0027 x 15\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221282539\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222143247\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5625_1704814149.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5625_1704814149_big.jpg\u0022}}"};

Green Carpet 3′ x 15′

from $35.00

Green+Carpet+3%27+x+15%27

https://www.aspartyrental.com/rentals/trade-show-expo/green-carpet-15ft/

2143247

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['3064533'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"3064533","rental_name":"Grey Metal Podium","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222152427\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00223064533\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/51vajbkU04L._AC_SY300_SX300_QL70_FMwebp__1761165529.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/51vajbkU04L._AC_SY300_SX300_QL70_FMwebp__1761165529_big.png\u0022}}"};

Grey Metal Podium

from $75.00

Grey+Metal+Podium

https://www.aspartyrental.com/rentals/trade-show-expo/grey-metal-podium/

3064533

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['1172133'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1172133","rental_name":"Hand Sanitizing Station","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022243849\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u00221172133\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Hand Sanitizer Station_567126096.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Hand Sanitizer Station_567126096_big.jpg\u0022}}"};

Hand Sanitizing Station

from $75.00

Hand+Sanitizing+Station

https://www.aspartyrental.com/rentals/trade-show-expo/hand-sanitizing-station/

1172133

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['216431'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"216431","rental_name":"PA system (blue tooth) 2 Speakers (Microphone not Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022818937\u0022,\u0022rentalimage_createtime\u0022:\u00221666633278\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221666633278\u0022,\u0022rentalimage_itemid\u0022:\u0022216431\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/ce0170ac36f0a8fd8b33622e2929b1ca.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/ce0170ac36f0a8fd8b33622e2929b1ca.jpg\u0022}}"};

PA system (blue tooth) 2 Speakers (Microphone not Included)

from $0.00

PA+system+%28blue+tooth%29+2+Speakers+%28Microphone+not+Included%29

https://www.aspartyrental.com/rentals/audio-visual/pa-system-1-speaker-microphone-not-included/

216431

Limited

Dropdown

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['1170451'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1170451","rental_name":"Portable Hand Washing Stations","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022243125\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u00221170451\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Portable Hand Washing Station_708133237.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Portable Hand Washing Station_708133237_big.jpg\u0022}}"};

Portable Hand Washing Stations

from $250.00

Portable+Hand+Washing+Stations

https://www.aspartyrental.com/rentals/misc/portable-hand-washing-stations/

1170451

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['2701153'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2701153","rental_name":"Red Carpet 3\u0027 x 100\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221805959\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222701153\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Red Carpet_348921397_1740751228.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Red Carpet_348921397_1740751228_big.jpg\u0022}}"};

Red Carpet 3′ x 100′

from $120.00

Red+Carpet+3%27+x+100%27

https://www.aspartyrental.com/rentals/trade-show-expo/red-carpet-3-x-100/

2701153

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['2701147'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2701147","rental_name":"Red Carpet 3\u0027 x 50\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221805953\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222701147\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Red Carpet_348921397_1740750979.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Red Carpet_348921397_1740750979_big.jpg\u0022}}"};

Red Carpet 3′ x 50′

from $60.00

Red+Carpet+3%27+x+50%27

https://www.aspartyrental.com/rentals/trade-show-expo/red-carpet-3-x-50/

2701147

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['1027889'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1027889","rental_name":"Stanchions Single Pole with Black Velour Rope W\/Gold","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221012673\u0022,\u0022rentalimage_createtime\u0022:\u00221681500372\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221681500372\u0022,\u0022rentalimage_itemid\u0022:\u00221027889\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/41J7NWZQL8L._AC_SY780__1666807775.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/41J7NWZQL8L._AC_SY780__1666807775_big.jpg\u0022}}"};

Stanchions Single Pole with Black Velour Rope W/Gold

from $18.00

Stanchions+Single+Pole+with+Black+Velour+Rope+W%2FGold

https://www.aspartyrental.com/rentals/trade-show-expo/stanchions-set-with-black-velour-rope-w-gold/

1027889

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['1178419'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1178419","rental_name":"Steel Barricade 8.5 feet","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022558067\u0022,\u0022rentalimage_createtime\u0022:\u00221640893927\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221640893927\u0022,\u0022rentalimage_itemid\u0022:\u00221178419\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/barracade_950283952.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/barracade_950283952_big.jpg\u0022}}"};

Steel Barricade 8.5 feet

from $30.00

Steel+Barricade+8.5+feet

https://www.aspartyrental.com/rentals/emergency-disaster-services/steel-barricade-8-5-feet/

1178419

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['453151'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"453151","rental_name":"Raffle Drum","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022103555\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022453151\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Raffle Drum_31612295.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Raffle Drum_31612295_big.jpg\u0022}}"};

Raffle Drum

from $50.00

Raffle+Drum

https://www.aspartyrental.com/rentals/casino-rentals/raffle-drum/

453151

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['318882'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"318882","rental_name":"White Aluminum Chair(Setup Not Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022781027\u0022,\u0022rentalimage_createtime\u0022:\u00221661174921\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221661174921\u0022,\u0022rentalimage_itemid\u0022:\u0022318882\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/fe8d858fb22031cfb3c4d740d90800a6.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/e46288328d38547b34f3358a22960169.jpg\u0022}}"};

White Aluminum Chair(Setup Not Included)

from $2.45

White+Aluminum+Chair%28Setup+Not+Included%29

https://www.aspartyrental.com/rentals/chair-rentals-dayton-ohio/white-aluminum-chair-rentals/

318882

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['269203'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"269203","rental_name":"Coat Racks","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221835761\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022269203\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/coatrack_1742326517.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/coatrack_1742326517_big.png\u0022}}"};

Coat Racks

from $0.00

Coat+Racks

https://www.aspartyrental.com/rentals/trade-show-expo/coat-racks/

269203

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['236784'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"236784","rental_name":"Red Carpet Runner 3\u0027 x 25\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022873587\u0022,\u0022rentalimage_createtime\u0022:\u00221672422679\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221672422679\u0022,\u0022rentalimage_itemid\u0022:\u0022236784\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/b10e5bacd07903f4e18b8ce981eb7fc8.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/b10e5bacd07903f4e18b8ce981eb7fc8.jpg\u0022}}"};

Red Carpet Runner 3′ x 25′

from $0.00

Red+Carpet+Runner+3%27+x+25%27

https://www.aspartyrental.com/rentals/trade-show-expo/red-carpet-runner-use-only/

236784

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['216531'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"216531","rental_name":"Stage 4x4 Rubber Top","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222172689\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216531\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/4x4stage_1762880299.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/4x4stage_1762880299_big.jpg\u0022}}"};

Stage 4×4 Rubber Top

from $0.00

Stage+4×4+Rubber+Top

https://www.aspartyrental.com/rentals/party-rental/stage-4×4-rubber-top/

216531

Limited

Dropdown

1

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['231961'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"231961","rental_name":"Stanchion Retractable (Single Pole)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221012681\u0022,\u0022rentalimage_createtime\u0022:\u00221681500412\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221681500412\u0022,\u0022rentalimage_itemid\u0022:\u0022231961\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/9dbe1502fd5aa628a1766d35771d9011.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/9dbe1502fd5aa628a1766d35771d9011.jpg\u0022}}"};

Stanchion Retractable (Single Pole)

from $0.00

Stanchion+Retractable+%28Single+Pole%29

https://www.aspartyrental.com/rentals/trade-show-expo/stanchion-retractable/

231961

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['216533'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"6 ft wide","rental_id":"216533","rental_name":"Stanchions Single Pole with Red Velour Rope W\/Gold","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221012687\u0022,\u0022rentalimage_createtime\u0022:\u00221681500435\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221681500435\u0022,\u0022rentalimage_itemid\u0022:\u0022216533\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Gold-Stanchion-Post-4-Red-Velvet-Rope-Barrier-Queue-Line-Crowd-Control-Poles-for-The-Ceremony-Museums_1698153346.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Gold-Stanchion-Post-4-Red-Velvet-Rope-Barrier-Queue-Line-Crowd-Control-Poles-for-The-Ceremony-Museums_1698153346_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221212993\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216533\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/redstanchion_1698153347.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/redstanchion_1698153347_big.jpg\u0022}}"};

Stanchions Single Pole with Red Velour Rope W/Gold

from $0.00

Stanchions+Single+Pole+with+Red+Velour+Rope+W%2FGold

https://www.aspartyrental.com/rentals/trade-show-expo/stanchions-set-with-red-velour-rope-w-gold/

216533

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['766271'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"766271","rental_name":"Trade Show Booth |Table |Chairs |Trash Set Up Included","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022543619\u0022,\u0022rentalimage_createtime\u0022:\u00221638456314\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221638456314\u0022,\u0022rentalimage_itemid\u0022:\u0022766271\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Trade-Show-Drapery_493947020.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Trade-Show-Drapery_493947020_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221415763\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022766271\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_2434_1711116211.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_2434_1711116211_big.jpg\u0022}}"};

Trade Show Booth |Table |Chairs |Trash Set Up Included

from $100.00

Trade+Show+Booth+%7CTable+%7CChairs+%7CTrash+Set+Up+Included

https://www.aspartyrental.com/rentals/pipe-drape-rentals/trade-show-booth-table-chairs-trash-set-up-included/

766271

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

Trade Show & Expo Rentals 

A&S Party Rental provides comprehensive trade show and expo rentals to help you create an impressive booth that stands out from the crowd. Whether you’re participating in a trade show, expo, or convention, we have everything you need to showcase your products and services effectively.

Our rental options include trade show displays, expo furniture, signage, and more, all designed to enhance the appearance and functionality of your booth. With a wide range of styles and configurations available, you can customize your rental package to suit your specific needs and branding requirements.

Renting trade show and expo equipment from A&S Party Rental is simple and convenient. Just browse our inventory, select your desired items, and let our experienced team handle the rest. We’ll deliver and set up the rentals at your event location, ensuring everything is ready for a successful showcase.

Don’t settle for an ordinary booth – elevate your trade show or expo experience with rentals from A&S Party Rental. Contact us today to learn more about our rental options and start planning your next successful showcase.