Skip to main content



      Home
Home » Archived » BIRT » [BIRT2.2RC0] Parameter Page Formatting
[BIRT2.2RC0] Parameter Page Formatting [message #240347] Wed, 30 May 2007 04:01 Go to next message
Eclipse UserFriend
Hi BIRT guys,

I implemented the parameterframe into my jsp-page using the taglib:
<birt:parameterPage id="filter" target="_report" height="285" width="713"
showNavigationBar="false"
reportDesign="/Reports/${sessionScope['report']}"/>

It works great, now I have to change the layout to my companyŽs CI.
Colors, border, text are done, but I found no parameter to change height,
weight and especially position of the container (it has to be in the top
left corner not horizontally and vertically centered).
I already spent a few days goin through the .css-files in
../webcontent/birt/styles/ and tried almost every possibility, with no
effect.

So is there any doc?

Greets,
chris from munich
Re: [BIRT2.2RC0] Parameter Page Formatting [message #240516 is a reply to message #240347] Wed, 30 May 2007 20:10 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: jasonweathersby.alltel.net

Chris,

Look at the \webcontent\birt\ajax\ui\dialog\AbstractBaseDialog.js file.
Specifically the __l_show function. Comment this line out.
BirtPosition.center

Jason

__l_show : function( )
{
this.__preShow();

//check if the dialog is already shown
if(!this.visible)
{
var zIndex = Mask.show();
debug("showing at zIndex " + zIndex);
this.__instance.style.zIndex = zIndex;

Element.show( this.__instance );
this.visible = true;

//workaround for Mozilla bug
https://bugzilla.mozilla.org/show_bug.cgi?id=167801
if(BrowserUtility.useIFrame())
{
//show iframe under dialog
Element.show( this.__iframe );
}

this.__setWidth();

//BirtPosition.center( this.__instance );

Event.observe( window, 'resize', this.__neh_resize_closure, false );
Event.observe( document, 'mouseup', this.disposeSelection_closure,
false );
}

this.__postShow();
}

Chris wrote:
> Hi BIRT guys,
>
> I implemented the parameterframe into my jsp-page using the taglib:
> <birt:parameterPage id="filter" target="_report" height="285"
> width="713" showNavigationBar="false"
> reportDesign="/Reports/${sessionScope['report']}"/>
> It works great, now I have to change the layout to my companyŽs CI.
> Colors, border, text are done, but I found no parameter to change
> height, weight and especially position of the container (it has to be in
> the top left corner not horizontally and vertically centered).
> I already spent a few days goin through the .css-files in
> ./webcontent/birt/styles/ and tried almost every possibility, with no
> effect.
>
> So is there any doc?
>
> Greets,
> chris from munich
>
Re: [BIRT2.2RC0] Parameter Page Formatting [message #240530 is a reply to message #240516] Thu, 31 May 2007 02:23 Go to previous message
Eclipse UserFriend
Thx Jason, it works great! :)
Previous Topic:Pls help me
Next Topic:Scripting Visibility
Goto Forum:
  


Current Time: Fri May 09 23:03:06 EDT 2025

Powered by FUDForum. Page generated in 0.03871 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top