Fix - cells do not resize when grid is inside html <table>
I have finally found the way to fix an old problem where the grid cells do not resize properly in IE if the grid is put inside an html <table> or nested tables. Usually it looks like the cells change the size one-by-one when you hover the mouse above them. The following CSS should fix that -
.aw-ie .aw-grid-control {
overflow-x: visible;
}
Together with the scrolling fix ( http://www.activewidgets.com/javascript.forum.13672.1/fix-grid-does-not-scroll.html ) the patch is -
Add this code to the end of the aw.css file or into inline <style> block.
To my knowledge this fixes all <table>-related problems with the grid. If you still have strange grid behaviour inside html tables - please let me know.
.aw-ie .aw-grid-control {
overflow-x: visible;
}
Together with the scrolling fix ( http://www.activewidgets.com/javascript.forum.13672.1/fix-grid-does-not-scroll.html ) the patch is -
.aw-ie .aw-grid-control {
overflow-x: visible;
}
.aw-ie .aw-bars-content {
padding-bottom: 50px;
}
.aw-gecko .aw-grid-box {
min-width: 150px;
}
Add this code to the end of the aw.css file or into inline <style> block.
To my knowledge this fixes all <table>-related problems with the grid. If you still have strange grid behaviour inside html tables - please let me know.
Alex (ActiveWidgets)
April 26,