Hi, All
Is it possible to use the HTML frames in WebApp ?
Say, index.html is:
And some handler is to be generating top*.html and bottom*.html files, that can be long, scrollable (tables from the database)...
And the handler should intercept clicks in all 4 frames.
Is it possible ?
If yes - how handler should be set up ?
Is it possible to use the HTML frames in WebApp ?
Say, index.html is:
B4X:
<frameset rows="50%,50%" cols="50%,50%">
<frame src="topleft.html" name="topleft" scrolling="yes" noresize>
<frame src="topright.html" name="topright" scrolling="yes" noresize>
<frame src="bottomleft.html" name="bottomleft" scrolling="yes" noresize>
<frame src="bottomright" name="bottomright" scrolling="yes" noresize>
</frameset>
And some handler is to be generating top*.html and bottom*.html files, that can be long, scrollable (tables from the database)...
And the handler should intercept clicks in all 4 frames.
Is it possible ?
If yes - how handler should be set up ?