Hello. I'm new using infragistics controls and I can't make it work as I need. I'd realy apreciate any help.
I need to limit the range of time seen in the UltraTimeLineView so I've make the columns not resizable and fixed the width of the control. I've also setted the minDate and the maxDate (to the UltraCalendarInfo) so that the dates not included in my range are not usable. Now I only need to avoid showing the time not included in my range. I understand that is not posible (if it is please let me know how) so another way of doing it (with the fixed with of the conrtol and the columns) would be to hide the horizontal scroll, is there any way of doin it?
I've realized that when the user scrolls outside my range (i. e. to the left) when the scrollbar is released, the first date at the range would be changed to the minDate (because after users scrolling, it was lower than the minDate). Now: when the user scrolls to the right, the control seems to try to do the same thing but instead of using the maxDate to set the end of the visible range, it uses the maxDate to set the start so the user ends up watching from the first unable hour (unable because is bigger than maxDate). This seems to be a bug, should I report it?
Thanks,
Diego
The reason it doesn't work the way you expect is that the control can be resized horizontally, so even though we could prevent the max date from appearing via scrolling, if the user resized the control to be wider, that date would be brought into view anyway.
Thanks for the reply, as well as I understand that, I've made a realy simple and little code with which I can resize columns as soon as control is resized.
Also, what about the second paragraph, is that a bug?