Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Hi!
I create the jsp page with two MVC components:
<jsp:include page="${mvc:getComponentURL('mytable1')}"/>
<jsp:include page="${mvc:getComponentURL('mytable2')}"/>
And I have two questions:
1) How can I set size to the component?
2) How can I refresh the second component on refreshing the first?
Solved! Go to Solution.
I have solved this by using "renderTwoPanes" jca tag:
<jca:renderTwoPanes orientation="horizontal"
headerPane="/netmarkets/jsp/some.jsp"
headerPaneHeight="30"
leftPane="/netmarkets/jsp/some2.jsp"
leftPaneSize="30"
rightPane="/netmarkets/jsp/some3.jsp"
rightPaneSize="70"
/>
I have solved this by using "renderTwoPanes" jca tag:
<jca:renderTwoPanes orientation="horizontal"
headerPane="/netmarkets/jsp/some.jsp"
headerPaneHeight="30"
leftPane="/netmarkets/jsp/some2.jsp"
leftPaneSize="30"
rightPane="/netmarkets/jsp/some3.jsp"
rightPaneSize="70"
/>