popcalendardlg.js.vm

来自「一个webwork+spring+ibatis的小例子」· VM 代码 · 共 48 行

VM
48
字号
<SCRIPT LANGUAGE="JavaScript">
<!--
function fPopUpCalendarDlg(ctrlobj) 
{
	showx = event.screenX - event.offsetX - 4 - 210 ; // + deltaX;
	showy = event.screenY - event.offsetY + 18; // + deltaY;
	newWINwidth = 210 + 4 + 18;

	retval = window.showModalDialog("$action.getText('config.jsPath')/calendardlg.htm", "", "dialogWidth:200px; dialogHeight:200px; dialogLeft:"+showx+"px; dialogTop:"+showy+"px; status:no; directories:yes;scrollbars:no;Resizable=no; "  );
	if( retval != null ) {
		ctrlobj.value = retval;
	}
}

/*
function fPopUpCalendarDlg_2(ctrlobj) 
{
	showx = event.screenX - event.offsetX - 4 - 210 ; // + deltaX;
	showy = event.screenY - event.offsetY + 18; // + deltaY;
	newWINwidth = 210 + 4 + 18;

	retval = window.showModalDialog("$action.getText('config.jsPath')/calendardlg_1.htm", "", "dialogWidth:217px; dialogHeight:250px; dialogLeft:"+showx+"px; dialogTop:"+showy+"px; status:no; directories:yes;scrollbars:no;Resizable=no; "  );
	if( retval != null ) {
		ctrlobj.value = retval;
	}
}
*/
function fPopUpCalendarDlg_1(obj,path)
{
	var width = 375;
	var height = 260;
	
	var left = window.screenLeft + obj.offsetLeft + 2;
	var top = window.screenTop + obj.offsetTop + obj.offsetHeight;
	if (parseInt((left + width),10) > parseInt(screen.availWidth,10)) left = left - width + obj.offsetWidth - 2;
	if ((top + height) > screen.availHeight) top = top - height - obj.offsetHeight + 2;	
	
	retval = window.showModalDialog("$action.getText('config.jsPath')/calendardlg_1.htm", window, "dialogWidth:"+width+"px; dialogHeight:"+height+"px; dialogLeft:"+left+"px; dialogTop:"+top+"px; status:no;");

	if( retval != null ) 
	{
		if(retval.length>10)
			retval=retval.substr(0,retval.length-3);
		obj.value = retval;
	}
}
//-->
</SCRIPT>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?