With the current version AW 2.5.2, I can't seem to adjust the scrolling behavior after I change the height of a grid.
Previously I was using AW 2.0.2 and when I re-sized a grid, the scrolling functionality automatically adjusted correctly to reflect the new grid height.
Here is a page that demonstrates this:
(modified AW 2.5.2 example grid data - xml, change datasets.htm requires the basic1.xml file)
If it is displayed using the AW 2.0.2 version, the scroll bars adjust automatically when the grid is resized.
If it is displayed using the AW 2.5.2 version, the scrolling behavior works, but not as well.
Any suggestions?
Thanks.
JK
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>ActiveWidgets Examples</title>
<!-- fix box model in firefox/safari/opera -->
<style type="text/css">
.aw-quirks * {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body {font: 12px Tahoma}
</style>
<!-- include links to the script and stylesheet files -->
<script src="../../Site_SMS/js/AW/runtime/lib/aw.js"></script>
<link href="../../Site_SMS/js/AW/runtime/styles/xp/aw.css" rel="stylesheet" />
<!-- change default styles, set control size and position -->
<style type="text/css">
#myGrid {height: 200px; width: 500px;}
#myGrid .aw-row-selector {text-align: center}