cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X

MVC components

AntonBagryanov
3-Visitor

MVC components

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?

1 ACCEPTED SOLUTION

Accepted Solutions

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"

/>

View solution in original post

1 REPLY 1

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"

/>

Top Tags