Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Calling a page with flow logic from a controller

Former Member
0 Likes
602

Is there any possibility of calling a page with flow logic(x.htm ) from a controller?

Also I want to know how to apply scrolling to a tableview in a View as there is no event handler here. Iam able to view the first 30 records but want to navigate from 31 to 60...61to 90 and so on.......

Thanks and regards,

Sinu

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
580

Try with bsp tags <bsp:goto> or <bsp:call>

and also for tableview you can set the number of rows using visibleRowCount set the option to 30.

Is there any possibility of calling a page with flow logic(x.htm ) from a controller?

Also I want to know how to apply scrolling to a tableview in a View as there is no event handler here. Iam able to view the first 30 records but want to navigate from 31 to 60...61to 90 and so on.......

Thanks and regards,

Sinu

3 REPLIES 3
Read only

Former Member
0 Likes
581

Try with bsp tags <bsp:goto> or <bsp:call>

and also for tableview you can set the number of rows using visibleRowCount set the option to 30.

Read only

0 Likes
580

Thank you so much...

but will I be able to call from a controller as we call a view...similar to the below code.

lref_first_view = create_view( view_name = 'first.htm' ).

lref_first_view->set_attribute( name = 'MODEL' value = mref_model_first ).

call_view( lref_first_view ).

I have already set the visibleRowCount....but my issue is to navigate to the next records i.e say 2nd page 3rd page..........

Regards,

Sinu

Read only

0 Likes
580

ok, in this case you have to use the navigation parameter. the way you navigate in page with flow logic using the Navigation method goto_page

the equivalent will be like this..

navigation->goto_page( 'main.htm' ). "this is the page with flow logic page