I have a case with XamNumericRangeSlider and four thumbs, They are all added in XAML. I have binded slider MinValue and MaxValue to a properties in my ViewModel. The binding seems to break the thumbs. I have hard-coded the thumb values for testing purposes and they work fine if I hard-code also my MinValue and MaxValue. But now that I have them binded to ViewModel, all the thumbs are created to value 0.
Are there some rules that need to be followed that I don't know. I'm using the latest 11.2 version of the slider.
P.S. There is no help documentation available for the version 11.2? When it's coming?
Hello anttisimonen,
The ling for online documentation can be found here - http://help.infragistics.com/Doc/Silverlight/2011.2/CLR4.0/?page=NetAdvantage_Silverlight.html.
About slider - XamNumericRange and XamNumeric sliders have MinValue and MaxValue set to 0 and 100 by default. If you want to bind thumbs values you should be aware that when the value of the thumb is out of the range between MinValue and MaxValue, it won't be correct and will be assigned the value of the MinValue of the slider. You should make sure that MinValue and MaxValue are initilised before the Value of all thumbs, in order everything to be handled correctly by the slider.
Please respond if that is answering your question!
Regards,
Nikola.
I suspected something like this and I have now checked that my thumb values are between the min and max values of the slider. The slider itself takes the bindings nicely but the thumbs just don't work. If you like, I can try to reproduce this in a smaller sample project for you to investigate?