Just upgraded to 11.1.20111.2054, and unless I've missed something, the XamGrid scrollbars and the XamNumericSlider "Decrease" or "Increase" buttons have stopped functioning
I would expect to scroll the XamGrid by a "grid viewport" pagefull, but clicking within the vertical scrollbar only scrolls by 1 record
The numeric slider "Decrease/Increase" buttons on the ends of the slider have stopped functioning all together
These were working as expected prior to the upgrade
I've attached a simple Silverlight Business app to demo the issue(s)
Hello ttiggemann,
the problem that you are experiencing is definetly a regression issue that was introduced due to other bug fixes in Slider controls. I will contact our DS support to connect the case for that forum post with the id of the bug item, so that you are notified when it is fixed. If you are experiencing any other problems or difficulties using Slider controls, please feel free to share them in orther to assist you!
Regards,
Nikola.
Thank you Nikola for looking into this!
You'd only mentioned the slider - the XamGrid scrollbar scrolling one record at a time is the other issue
I'll keep following this post
Thank you Petar!
Hello,
Here is the support ticket number: CAS-71284-L7RQ1L we have created on your behalf. I am going to link it to development issue: 85568 so that you get automatically updated when a Feature Release containing the fix is available for download. You can get the new version from our website’s “My IG”, “My Keys & Downloads” tags: https://es.infragistics.com/Membership/Default.aspx?panel=Downloads#Downloads
You can also monitor the support ticket’s progress through the “My Support Activity” tag: https://es.infragistics.com/Membership/MySupport.aspx
Hi,
After discussion with Dev on the Grid scrolling issue we agreed that this is also a bug in the component. I'll have our Developer Support staff link the bug to your case so you're notified when a fix is available.
Thanks for reporting these issues!
Thank you Georgi for the workaround - setting SmallChange to 250 made this demo work
Still no confirmation from IG that the XamGrid vertical scrollbar is no longer working correctly:
Keyboard PageUp/PageDown scrolls the grid by the viewport "page", but clicking within the vertical scrollbar only scrolls one row - the same as clicking the "arrows" at the scrollbar ends
Just to add to what Nikola said about the issue in the Slider:
What's currently happening is that the "SmallChange" property of the Slider is set to "1". So, when you click the Increase/Decrease buttons, they try to modify the value of the thumb with this SmallChange.
In other words, if the value of the thumb is "1000", clicking the Decrease button will try to make it "999". Now, as your thumb has its IsSnapToTickEnabled property set to True, after attemtping to set the value to "999" the thumb will snap to the nearest tick mark, which is again "1000". So, the thumb will stay snapped to that tick.
As a temporary workaround until a fix is released, you could set the SmallChange property of the Slider to a greater value that will ensure the nearest tick mark after clicking the increase/decrease buttons is the correct one. For example, setting it to "250" in your sample would do the trick.
Hope this helps,