Having trouble getting help?
Contact Support
Contact Support
Enable Scroller
17 Feb 20221 minute to read
The ListBox supports scrolling and it can be achieved by restricting the height of the list box using height
property.
In the following sample, height
of the list box is restricted to 250px
.
<ejs-listbox id="listbox" dataSource="@ViewBag.data" height="250px" ></ejs-listbox>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using WebApplication1.Models;
namespace WebApplication1.Controllers
{
public class ListBoxController : Controller
{
public IActionResult scroller()
{
ViewBag.data = new string[] { "BadmHennessey Venominton", "Bugatti Chiron", "Bugatti Veyron Super Sport", "SSC Ultimate Aero", "Koenigsegg CCR", "McLaren F1", "Aston Martin One- 77", "Jaguar XJ220" };
return View();
}
}
}