You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After instantiation, it's no longer possible to set the min/max times (for example, when using 2 DateSliders as a range picker). The DateSlider class provides a setTime() method, it should also provide setMinTime() and setMaxTime() to allow changing those values on the fly. I've added those methods to my own code and they seem to work fine:
public void setMinTime(Calendar c) {
minTime = c;
if(c != null){
mContainer.setMinTime(c);
}
}
public void setMaxTime(Calendar c) {
maxTime = c;
if(c != null){
mContainer.setMaxTime(c);
}
}
The text was updated successfully, but these errors were encountered:
After instantiation, it's no longer possible to set the min/max times (for example, when using 2 DateSliders as a range picker). The
DateSlider
class provides asetTime()
method, it should also providesetMinTime()
andsetMaxTime()
to allow changing those values on the fly. I've added those methods to my own code and they seem to work fine:The text was updated successfully, but these errors were encountered: