Expiring the announcement will not delete it but will remove it from the public announcement list. Are you sure you want to expire this announcement?
Are you sure you want to delete this announcement?
TIBCO, Dojo Foundation and SitePen Work Together To Drive Innovation in Application Development
http://www.tibco.com/company/news/releases/2009/press956.jsp
Hi,
I've created a Paginated List control through the GI builder. The paging
model is "No paging". The problem I'm facing is that I need to move the
mouse-pointer over the vertical scrollbar inorder to scroll through the list
using the mouse-wheel. If the pointer is in the data area, vertical scroll
doesn't work. Can you please tell me if I'm missing something out here? This
is a common feature that all our users require and can't do without.
Thanks
Sandeep
It looks like the data cells of the matrix (when paginated in Internet Explorer) do not respond to the mousewheel event. However, the scrollbar itself does respond to this event in all browsers.
Is this the behavior you're seeing?
Hi,
Thanks for the reply. Yes that's precisely the behaviour we're noticing. When the mouse pointer is in the data cells area, irrespective of whether focus has been applied to a particular cell or not, the mousewheel event doesn't work. Is there a property that needs to be set so that the data cells respond to the mousewheel? Since that's the normal behaviour that users would expect.
Regards,
Sandeep
No, it appears to be a legitimate bug. I'll go ahead and file a defect and get back with a tracking number. I believe you could cobble together a workaround (just guessing here), but it would require you to set an explicit height using the BG Image property for the Matrix (something like: height:1000px;). In other words, you could probably apply some CSS width property in that field instead of using it for the background-image property as it was designed for. So, if you're desperate and need a fix now, you might try it (though I strongly discourage it). Otherwise, just wait for the fix. I'll prioritize it for 3.5.
ok thanks I think we'll just have to wait for the fix.
Luke, does a JIRA issue has been raised for this? The only one related I found is http://gi.tibco.com/jira/browse/GI-9 , and has been closed the 24th April.
Thanks for your response. Can you tell me by when is it expected. Our users are shortly loosing patience. We can't move on from this pagination model because of huge volumes of data.
This is still not fixed in GI 3.5 (matrix with Paging Model=Paged). Rolling the wheel just seems to reset the grid back to the first page.
I did notice that if a different paging model is used, for example Paging Model=Chunked, then the mouse wheel works correctly. Not really an option though for large datasets.
If you really are desperate, just set the height on the Background. For example, if you have a matrix with 239 rows and each row is 20px high, then set the following on the Background property for your matrix:
height:4780px;
Thanks Luke, it works for me, although the scroll bar flickers when scrolling on IE.
It works absolutely fine for me on GI 3.5. However when I try it with GI 3.4 it does flicker. Luke, is there some similar solution for GI 3.4 as well. Thanks for the solution.
There is a known bug in IE (flickering during mousewheel). The cause of this issue is unrelated to what is being discussed in this thread, but it has been fixed and should behave correctly in 3.5.
Very good! Scrolling works with setBackground() method, but a little bit differently than with scrollbar. It scrolls entire page first and after that matrix content while matrix scrollbar scrolls matrix content first and then entire page. We have several matrix components on page and would be cool to cancel page (main block) scrolling at all when scrolling on matrix.
Thanks