egroupware_official/phpgwapi/templates/idots/sidebox_dhtml.tpl.php

26 lines
1013 B
PHP

<!-- Savant template - sidebox dhtml -->
<?php
// workaround to get rid of the "too much recursion" timeout if other app uses wz_dragdrop too
// if we moved the DHTML here to the dragdrop class we can remove this workaround
$GLOBALS['egw_info']['flags']['wz_dragdrop_runonce_SET_DHTML'] = true;
?>
<script language="JavaScript" type="text/javascript">SET_DHTML("thesideboxcolumn"+NO_DRAG)</script>
<script language="JavaScript" type="text/javascript">ADD_DHTML("sideresize"+CURSOR_W_RESIZE+MAXOFFBOTTOM+0+MAXOFFTOP+0+MAXOFFLEFT+1000+MAXOFFRIGHT+1000)</script>
<script language="JavaScript" type="text/javascript">
var mainbox = dd.elements.thesideboxcolumn;
var rt = dd.elements.sideresize;
var rtxstart= rt.x;
function my_DragFunc()
{
if (dd.obj == rt)
{
mainbox.resizeTo(rt.x-rtxstart+<?=$this->sideboxwidth?>, mainbox.h);
}
}
function my_DropFunc()
{
xajax_doXMLHTTP("preferences.ajaxpreferences.storeEGWPref","common","idotssideboxwidth",mainbox.w);
}
</script>