Re: Any alternative to Frames?
From: JfActiveSoft (info_at_jfactivesoft.com)
Date: 11/12/03
- Next message: JfActiveSoft: "Re: Recommend Time Edit component?"
- Previous message: JfActiveSoft: "Re: Data Aware Edit with Image just left of text"
- In reply to: Pradeep: "Help: Any alternative to Frames?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Wed, 12 Nov 2003 20:38:56 +0100
Hello,
Try JfControls http://www.jfactivesoft.com
Anyway, if you need further details or have any kind of doubt, just don't
hesitate to email us.
Best wishes,
Jose Antonio Molina
JfActiveSoft
http://www.jfactivesoft.com
info@jfactivesoft.com
support@jfactivesoft.com
sales@jfactivesoft.com
"Pradeep" <pradeeplnarayan@rediffmail.com> escribió en el mensaje
news:3fb09a9b$1@newsgroups.borland.com...
>
> Hai,
> We divide a page vertically in to two frame section.
> The frame on the left hand side has list of files to
> choose from in a Dropdown list and when the user choses
> any file, the request is passed to a dll, which returns
> the file. It is then loaded in the right hand side
> frame. Sample code snippet for the smae is listed below.
>
> Now we like to accomplish the same with a Frameless design.
> The Dropdown list box must always be shown
> and for each request, we like to load only the requested
> file to minimize page loading time.
>
> Can anyone suggest a solution for this?
>
> Code samples / workaround to accomplish the same will be appreciated.
>
> Thanx in advance for any help.
>
> with regards,
> Pradeep.
>
> <--Sample code snippet-- >
> <-- Category.html-->
> <html>
> <head>
> <title></title>
> <script>
> function SubmitCategoryForm()
> {
> document.CategoryForm.submit(this.form);
> }
> </script>
> </head>
> <body>
> <!-- submit the form to a dll in server and get the page -->
> <form name="CategoryForm" method="POST"
action="./CategoyrActions.dll/Category" TARGET="mainwindow">
> <select name="choice" onchange="SubmitCategoryForm()">
> <option>Select...</option>
> <option value="Jan.xml">January 2003 </option>
> <option value="Feb.xml">February 2003</option>
> <option value="March.xml">March 2003</option>
> <option value="Apr.xml">April 2003</option>
> </select>
> </form>
> </body>
> </html>
>
> <-- Home.html -->
> <html>
>
> <head>
> </head>
>
> <frameset framespacing="0" border="0" rows="61" frameborder="0">
> <frameset cols="225,*" Frameborder=1>
> <frame Id="Category" src="Category.html" scrolling="auto">
> <!-- Requested Pages are loaded in this frame -->
> <frame Id="mainwindow" src="#" scrolling="auto" name="mainwindow">
> </frameset>
> </frameset>
> </html>
>
- Next message: JfActiveSoft: "Re: Recommend Time Edit component?"
- Previous message: JfActiveSoft: "Re: Data Aware Edit with Image just left of text"
- In reply to: Pradeep: "Help: Any alternative to Frames?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|