:: Forum >>

Data in Last Column not Showing

I am happy with this product and have rewritten most of my application to use it. I have about 20 screens using it and all work fine except for one. On one screen the data within the right-most column is not displayed unless I manually adjust the column to be extremely wide. The header is displayed, just not the data. Another clue is that the right-hand cell border is not visible. It is shown in the header, but not on the data cells.

I have changed the order of my cells, thinking that it may be data related, but no matter which column I set as the last one it is not displayed. I know it must be some simple thing with my data array or column count, but I cannot find it. Has anyone else seen these? Any ideas?

Thanks in advance!
Brian Crandall
Monday, June 22, 2009
Hi Brian,
In some special situations ..i.e (when resizing a grid or append more columns to it ) I am using one of the patches below:
http://www.activewidgets.com/javascript.forum.24082.7/virtual-grid-in-resizeable-pane.html

this.setTimeout(function(){
obj.setScrollLeft(obj.getScrollTop()+0.2);
obj.setScrollLeft(obj.getScrollTop()-0.2);
},1000);

http://www.activewidgets.com/javascript.forum.23305.3/aw-2-5-2-scrolling.html

ALSO, I think this post is also related:
http://www.activewidgets.com/javascript.forum.14018.13/resize-columns-bug-in-2.html
HTH
Carlos
Wednesday, June 24, 2009
sorry, it should be:
obj.setScrollLeft(obj.getScrollLeft()+0.2);
obj.setScrollLeft(obj.getScrollLeft()-0.2);




Wednesday, June 24, 2009

This topic is archived.


Back to support forum

Forum search