Module.createNamespace('com.wjstc.SlideBar');Module.require('com.wjstc.Common',1.1);Module.require('com.wjstc.Util',1.1);Module.require('com.wjstc.WebTable',1.1);com.wjstc.SlideBar.NAME='com.wjstc.SlideBar';com.wjstc.SlideBar.VERSION=1.1;com.wjstc.SlideBar.current_bar={t:null,f:null,go:0,Id:0,newI:0};com.wjstc.SlideBar.BarObj=function(bh){this.t=null;this.f=null;this.dis=0;this.p=null;this.pH=bh;this.pY=0;this.o=null;this.oH=0;this.im=null;};com.wjstc.SlideBar.BarObj.prototype.showBarButton=function(y){com.wjstc.Common.moveToTop(this.o,y);};com.wjstc.SlideBar.dragBarButtonStart=function(e){var y=com.wjstc.Common.getMouseScrollY(e);var ba=com.wjstc.WebTable.activeTable.forms[com.wjstc.WebTable.activeTable.af].bar;ba.pY=com.wjstc.Common.getY(ba.p);ba.pH=com.wjstc.Common.getH(ba.p);ba.dis=y-com.wjstc.Common.getY(ba.o);com.wjstc.Util.objAddEvent(document,'mousemove',com.wjstc.SlideBar.d);com.wjstc.Util.objAddEvent(document,'mouseup',com.wjstc.SlideBar.c);com.wjstc.Util.eventStopDefault(e);};com.wjstc.SlideBar.d=function(e){var ba=com.wjstc.WebTable.activeTable.forms[com.wjstc.WebTable.activeTable.af].bar;var y=com.wjstc.Common.getMouseScrollY(e);if(y>=((ba.pY-0)+(ba.dis-0))&&y<(ba.pY+ba.pH-ba.oH+ba.dis+1)){y-=Math.round(((ba.pY-0)+(ba.dis-0)));ba.showBarButton(y);}com.wjstc.Util.eventStopDefault(e);com.wjstc.SlideBar.g(e);};com.wjstc.SlideBar.g=function(e){var newI=com.wjstc.SlideBar.getBarPosition(e);com.wjstc.WebTable.showForm(com.wjstc.WebTable.activeTable,document.forms[com.wjstc.WebTable.activeTable.af],newI-com.wjstc.WebTable.activeTable.i,null);if(com.wjstc.Common.getObjById(com.wjstc.WebTable.activeTable.af+'_recno')){com.wjstc.Common.getObjById(com.wjstc.WebTable.activeTable.af+'_recno').value=(com.wjstc.WebTable.activeTable.i-0)+1;}com.wjstc.WebTable.showRestForms(com.wjstc.WebTable.activeTable,com.wjstc.WebTable.activeTable.af);};com.wjstc.SlideBar.c=function(e){com.wjstc.Util.objRemoveEvent(document,'mousemove',com.wjstc.SlideBar.d);com.wjstc.Util.objRemoveEvent(document,'mouseup',com.wjstc.SlideBar.c);};com.wjstc.SlideBar.getBarPosition=function(e){var y=com.wjstc.Common.getMouseScrollY(e);var ba=com.wjstc.WebTable.activeTable.forms[com.wjstc.WebTable.activeTable.af].bar;ba.pY=com.wjstc.Common.getY(ba.p);if(com.wjstc.WebTable.activeTable.m<=document.forms[com.wjstc.WebTable.activeTable.af]['m'].value){return com.wjstc.WebTable.activeTable.i;}var oY=y-ba.dis;if(oY<ba.pY){oY=ba.pY;}if(oY>ba.pY+ba.pH-ba.oH){oY=ba.pY+ba.pH-ba.oH;}var newI=Math.round(((oY-ba.pY)*(com.wjstc.WebTable.activeTable.m-document.forms[com.wjstc.WebTable.activeTable.af]['m'].value))/(ba.pH-ba.oH))+(com.wjstc.WebTable.getRow(com.wjstc.WebTable.activeTable.forms[com.wjstc.WebTable.activeTable.af].fo)-0);return newI;}