cancel
Showing results for 
Search instead for 
Did you mean: 

Image in the application

Former Member
0 Kudos

Hii

i craeted application in web dynpro.Iaam placing the image in the screen,by default it is taking left on the top of the screen page.

If i want it to display on the top rightside of the screen page or bottom of the screen ,,,, what are the parameters i need to change.....

will any one help me to come out of this.

Regards

sushma

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

tx

Former Member
0 Kudos

Hi Sushma,

iam not clear about ur solution.will u please elaborate that.

I created One group,under that one transparent container.

I want my image to be displayed on the top or bottom of the page.

Please tell me what i have to do.

I have to insert image in the Group or Transparent Container or directly in the RootUI Element.

1. Convert the layout of RootElement to GridLayout.

2. Convert the layout of the group to GridLayout.

3. Set the colCount as 2 .Set the width of each element as 50%.

4. Now if you want to set the image on the top right hand side, place an UI Element with visible property set to None.

5. Then place the image UI Element.

6. Place these two elements inside the group.

Hope it helps.

Regards,

Gayathri.

Former Member
0 Kudos

Hi Gayathri,

Iam not getting the output by doing this.

my application hierarchy is

RootUI -


changes FlowLayout to Grid Layout

Group---- FlowLayout to Grid Layout

TransparentContainer-----in the Flowlayout only

II created "Invisible UI element" in that " Visible " property =none i did

then i created Image UI element.Both i kept in the group.

But iam not getting the output. Is therre any steps i missd.

Please help me to go ahead.

Regrds

sushma

Former Member
0 Kudos

Say you want to have a layout with the image in the right upper corner and some other content below. Then you could use the following hierarchy


layoutContainer : TransparentContainer (MatrixLayout)
-- image: Image (MatrixHeadData, hAlign=end_of_line, vAlign=top)
-- content: TransparentContainer (MatrixHeadData, vAlign=top)

Armin

Former Member
0 Kudos

Hi Armin,,

Iam not able to get the image on the bottom of the page.Iam getting after the the end of the transparent container. I want the image shud be at the right bottom end of the page.

Even i given height in tthe transparent container -


100%

still iam not able to achieve that.

Regards

Sushma

I

former_member197348
Active Contributor
0 Kudos

Hi Sushma,

Change the container Layout to Grid Layout.

1.If you want to display the screen on the top rightside of the screen

Set the colCount = 2

Insert an InvisibleElement

2.If you want to display the screen on the bottom of the screen

Set the colCount = 1

Insert an InvisibleElement

Regards,

Siva

Former Member
0 Kudos

Hi Siva,

iam not clear about ur solution.will u please elaborate that.

I created One group,under that one transparent container.

I want my image to be displayed on the top or bottom of the page.

Please tell me what i have to do.

I have to insert image in the Group or Transparent Container or directly in the RootUI Element.

Regards

Sushma

Former Member
0 Kudos

Depends on the layout of the container that contains the image. Choose a layout that can arrange its children as needed (e.g. a MatrixLayout) and set MatrixData.hAlign = end_of_line.

Armin

Former Member
0 Kudos

if it is a flow layout...what are the parameters we need to change.......