Contact Support
Strict mode in TimePicker Control
21 Dec 20223 minutes to read
The strictMode is an act that allows you to enter only valid time value within the specified min/max range in the textbox. If the time value is invalid, the control value sets to the previous value. If the time value is out of range, the control sets the time value to min/max value.
The following example demonstrates the TimePicker in strictMode
with min/max range of 10:00 AM
to 4:00 PM
. It allows you to enter only valid time within the specified range. If you enter the out-of-range value like 8:00 PM
, the value sets to the max time 4:00 PM
as the value 8:00 PM
is greater than max
value of 4:00 PM
. If you enter invalid time value like 9:00 tt
, the value sets to the previous value.
<ejs-timepicker id="timepicker" value="@ViewBag.value" min="@ViewBag.minVal" max="@ViewBag.maxVal" strictMode=true></ejs-timepicker>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace EJ2CoreSampleBrowser.Controllers
{
public class HomeController: Controller
{
public ActionResult DefaultFunctionalities()
{
ViewBag.minVal= new DateTime(2017,08,03, 10,00,00);
ViewBag.maxVal = new DateTime(2017,08,03, 16,00,00);
ViewBag.value = new DateTime(2017,08,03, 03,00,00);
return View();
}
}
}
By default, the TimePicker act in strictMode false
state, that allows to enter the invalid or out-of-range time in textbox.
If the time is out-of-range or invalid, then the model value will be set to out of range
time value or null
respectively with highlighted error
class to indicates the time is out of range or invalid.
The following example demonstrates the strictMode
as false
. Here, it allows to enter the valid or invalid value in textbox. If you are entering the out-of-range or invalid time value, then the model value will be set to out of range
time value or null
respectively with highlighted error
class to indicates the time is out of range or invalid.
<ejs-timepicker id="timepicker" value="@ViewBag.value" min="@ViewBag.minVal" max="@ViewBag.maxVal"></ejs-timepicker>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace EJ2CoreSampleBrowser.Controllers
{
public class HomeController: Controller
{
public ActionResult DefaultFunctionalities()
{
ViewBag.minVal= new DateTime(2017,08,03, 10,00,00);
ViewBag.maxVal = new DateTime(2017,08,03, 16,00,00);
ViewBag.value = new DateTime(2017,08,03, 3,00,00);
return View();
}
}
}
NOTE
If the value of
min
ormax
property is changed through code behind, update thevalue
property to set within the range.