[BIRT2.2RC0] Parameter Page Formatting [message #240347] |
Wed, 30 May 2007 04:01  |
Eclipse User |
|
|
|
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   |
Eclipse User |
|
|
|
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
>
|
|
|
|
Powered by
FUDForum. Page generated in 0.03871 seconds