PDA

View Full Version : How to call a .lzx page


Anusha
03-30-2004, 03:33 AM
Hi

I saw the laszlo examples, in that sample i'm able to call a jsp page rom a .lzx file and i also tried caling a .lzx file from a html page,it's working fine...i want to know that whether is it possible to call a .lzx file from another .lzx file ??..How to do it??.

I saw in laszlo frontpage, that on clicking of the menus on the left side the page gets refreshed and the corresponding data is displayed .I think its also a call from a .lzx file to another .lzx file..How it is done..??..Solutions plz...


Thanks
--Anush

antun
03-30-2004, 09:03 AM
You use the LzBrowser service:

http://www.laszlosystems.com/lps-2.1/docs/lzx-reference/?lzbrowser.html


LzBrowser.loadURL( "mypage.lzx" );


... although I wouldn't recommend navigating from one LZX app to another. You can code all of the functionality you need into a single app.

-Antun