X

6.5'x22' Midsota Enclosed Cargo SLE22 102"

2025 Midsota SLE 7x22 Enclosed Tilt Trailer -  SLE22 (6.5x22) 

LIGHTLY USED AS DEMO UNIT

Features include:

  • 7,000 lb Axles
  • Self Adjusting Electric Brakes
  • 16'' E-Range 10 Ply Tires (235/80R16)
  • 15.5'' Bed Height
  • 7 Gauge (3/16'') Steel Deck
  • 1/4'' Sides 18'' High Front
  • 22'' Wide Mesh Traction Strips
  • 5° Beavertail
  • 6 D-Ring Tie Downs
  • Rear Double Doors
  • 8.5' Interior Height
  • White .030 Screwless Aluminum Skin
  • 32'' x 72'' RV Side Door with Latch
  • Exterior Up/Down Switch
  • No Exposed Wiring
  • Cold Weather 7 Way Plug (-85°)
  • LED Lights
  • 12K Spring Return Jack (8K on SL-Ra Model)
  • 2-5/16 Adjustable Coupler
  • Industrial Grade Polymer Finish
  • 5 Year Frame Warranty
6.5'x22' Midsota Enclosed Cargo SLE22 102"
Price: $27,700 On Sale! $26,999
White - Enclosed Cargo/Equipment/Tilt
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 122504
VIN: 5JWBE2521SA122504
Condition: New
Year: 2025
Manufacturer: Midsota
Model: SLE22
Length: 22'
Width: 6.5'
Height: 102"
GVWR (lbs): 15,400
Weight (lbs): 6,088
Payload (lbs): 9,312
Features: Ramp Gate, Rock Shield, Screwless Exterior, Side Door

Other Recommendations

// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });