cancel
Showing results for 
Search instead for 
Did you mean: 

How to make data to display on next page based in some condition ?

Former Member
0 Kudos

Hi all:

I have a node data to display in form.

How can I set some condition, based in some condition, the data will display in next page ?

Can I use page break condition ? Could you give me one small example ?

for example, when node1.title != "", the data should display on the next page, instead of continues ?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

I dont know the following answer is correct or not.If you dont find any solution try this one.I found some where the below information.

There is one property <b>Intact</b> which specifies the constraints on keeping a subform intact within a content area or page.In your requirement, on condtion you can set this property.

<b>JavaScript</b>

Subform1.keep.intact = "none"

<b>FormCalc</b>

$.keep.intact = "none"

<b>Values</b>

<u>none</u> (default)

The determination of whether a subform will be rendered intact

within a content area or page is delegated to the processing

application. It is possible that the subform could be split across a

content area or page. This is the default when the parent

container’s layout is tb, lr-tb, or table.

<u>contentArea</u>

The subform is requested to be rendered intact within a content

area. This is the default when the parent container’s layout is

position or row.

<u>pageArea</u>

The subform is requested to be rendered intact within a page.

Note: There is no single default value for this property. Instead it is

context-sensitive. When the parent container’s layout is tb,

lr-tb, or table the default value is none. When the parent

container’s layout is position or row, the default value is

contentArea. The default is computed at the moment the

API call to get the value is made or at the moment the layout

operation is invoked.

Thanks and Regards,

pavan meda