mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 05:23:13 +01:00
26 lines
1022 B
PHP
26 lines
1022 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+<?php print $this->sideboxwidth?>, mainbox.h);
|
|
}
|
|
}
|
|
|
|
function my_DropFunc()
|
|
{
|
|
xajax_doXMLHTTP("preferences.ajaxpreferences.storeEGWPref","common","idotssideboxwidth",mainbox.w);
|
|
}
|
|
</script>
|