| Author |
Height of the portlet
|
|
|
| Hi
How do I control the height of the portlet??
In other words I want my portlet to have a different size in the portal page.How do I do that?
And how do I specify this properties in XMLAccess?
Thanks in advanced.
-Avijit
| |
|
| > Hi
> How do I control the height of the portlet??
> In other words I want my portlet to have a different
> size in the portal page.How do I do that?
> And how do I specify this properties in XMLAccess?
> Thanks in advanced.
> -Avijit
You can't change the height of a portlet administratively. You should be able to put the contents of the portlet within a box with a specified height in the portlet's main JSP though. Like this:
<DIV style="height:600px">
[JSP code for portlet]
</DIV>
--
Mark M
IBM Virtual Innovation Center
| |
|
| Hi Mark
Thanks for the input.
I cant see the JSP code you sent.
Thanks
-Avijit
| |
|
| Whoops. Try this. Replace the square brackets with the standard greater than/less then tags that surround JSP/HTML tags -
[DIV style="height:600px"]
JSP code for portlet
[/DIV]
--
Mark M
IBM Virtual Innovation Center
|
|
|
|