3.2.0

Issues with dragging scroll bar in IE (commercial 1.0)

I'm having a weird issue in IE only. When I refresh the page with JS, everything works, except draging the scroll bar. It works great in Mozilla but not in IE.

Any Ideas?


Code to refresh:

function refreshlist() {
var url = "....";
accessListTable.setURL(url);
accessListTable.request();
}


Init code:

<style>
#folderAccessListId {height: 150px;font: menu; border: 2px inset; background: white}
#folderAccessListId .active-scroll-top * {text-align: center!important;}
#folderAccessListId .active-column-0 {width: 190px;}
#folderAccessListId .active-column-1 {width: 200px;text-align: left;}
#folderAccessListId .active-column-2 {width: 110px;text-align: left;}
</style>

<script>
var accessListTable = new Active.XML.Table;
var accessList = new Active.Controls.Grid;
accessList.setId("folderAccessListId");
accessList.setColumnProperty("texts", ["Category","Name","Privileges"]);
accessListTable.setColumns( ["category","name","privilege"]);
accessList.setDataModel(accessListTable);
accessList.setRowHeaderWidth("0px");
document.write(accessList);
</script>
Michael Graessle
March 8,
I should say the the scrollbar works, just not when you drag it with the mouse. Any mouse drag makes the scrollbar go back to the very top of the grid.
March 8,
Nevermid, it just started working. I'm not sure what the issue was.
March 8,

This topic is archived.

See also:


Back to support forum