?? abstractbasereportdocument.js
字號:
/******************************************************************************
* Copyright (c) 2004 Actuate Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Actuate Corporation - Initial implementation.
*****************************************************************************/
/**
* AbstractBaseDocument
* ...
*/
AbstractBaseReportDocument = function( ) { };
AbstractBaseReportDocument.prototype = Object.extend( new AbstractReportComponent( ),
{
__instance : null,
__has_svg_support : false,
/**
* Event handler closures.
*/
__neh_resize_closure : null,
__neh_select_closure : null,
__beh_toc_closure : null,
__beh_getPage_closure : null,
__beh_changeParameter_closure : null,
/**
* Local version of __cb_installEventHandlers.
*/
__local_installEventHandlers : function( id, children, bookmark )
{
// jump to bookmark.
if ( bookmark )
{
var obj = $( bookmark );
if ( obj && obj.scrollIntoView )
{
obj.scrollIntoView( true );
}
}
},
/**
* Unregister any birt event handlers.
*
* @id, object id
* @return, void
*/
__local_disposeEventHandlers : function( id )
{
},
/**
* Handle native event 'click'.
*
* @event, incoming browser native event
* @return, void
*/
__neh_resize : function( event )
{
var width = BirtPosition.viewportWidth( ) - ( this.__instance.offsetLeft >= 250 ? 250 : 0 ) - 3;
this.__instance.style.width = width + "px";
var height = BirtPosition.viewportHeight( ) - this.__instance.offsetTop - 2;
this.__instance.style.height = height + "px";
},
/**
* Birt event handler for "getpage" event.
*
* @id, document id (optional since there's only one document instance)
* @return, true indicating server call
*/
__beh_parameter : function( id )
{
birtParameterDialog.__cb_bind( );
},
/**
* Birt event handler for "change parameter" event.
*
* @id, document id (optional since there's only one document instance)
* @return, true indicating server call
*/
__beh_changeParameter : function( id )
{
if ( birtParameterDialog.__parameter > 0 )
{
birtParameterDialog.__parameter.length = birtParameterDialog.__parameter.length - 1;
}
birtSoapRequest.addOperation( Constants.documentId, Constants.Document,
"ChangeParameter", null, birtParameterDialog.__parameter,
{ name : "svg", value : this.__has_svg_support? "true" : "false" } );
birtSoapRequest.setURL( document.location );
birtEventDispatcher.setFocusId( null ); // Clear out current focusid.
return true;
},
/**
* Handle change cascade parameter.
*/
__beh_cascadingParameter : function( id, object )
{
birtSoapRequest.addOperation( Constants.documentId, Constants.Document, "GetCascadingParameter", null, object );
birtSoapRequest.setURL( document.location );
birtEventDispatcher.setFocusId( null ); // Clear out current focusid.
return true;
},
/**
* Handle native event 'click'.
*
* @event, incoming browser native event
* @return, void
*/
__beh_toc : function( id )
{
var width = BirtPosition.viewportWidth( ) - ( this.__instance.offsetLeft < 250 ? 250 : 0 ) - 3;
this.__instance.style.width = width + "px";
},
/**
* Birt event handler for "getpage" event.
*
* @id, document id (optional since there's only one document instance)
* @return, true indicating server call
*/
__beh_getPage : function( id, object )
{
birtSoapRequest.setURL( document.location );
if ( object )
{
birtSoapRequest.addOperation( Constants.documentId, Constants.Document,
"GetPage", null,
object,
{ name : "svg", value : this.__has_svg_support? "true" : "false" } );
}
else
{
birtSoapRequest.addOperation( Constants.documentId, Constants.Document,
"GetPage", null,
{ name : "svg", value : this.__has_svg_support? "true" : "false" } );
}
birtEventDispatcher.setFocusId( null ); // Clear out current focusid.
return true;
},
/**
* Birt event handler for "print" event.
*
* @id, document id (optional since there's only one document instance)
* @return, true indicating server call
*/
__beh_export : function( id )
{
birtSoapRequest.setURL( document.location);
birtSoapRequest.addOperation( "Document", Constants.Document, "QueryExport", null );
return true;
}
});
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -