NetTalk Central

Author Topic: How to do a page like that  (Read 2859 times)

Alberto

  • Hero Member
  • *****
  • Posts: 1871
    • MSN Messenger - alberto-michelis@hotmail.com
    • View Profile
    • ARMi software solutions
    • Email
How to do a page like that
« on: June 05, 2013, 06:54:54 AM »
Hi,
I need to develop a page like the following...

http://www.valcereal.com.ar/inicio/

Which is th best aproach to achieve this?

Thanks
-----------
Regards
Alberto

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11242
    • View Profile
Re: How to do a page like that
« Reply #1 on: June 05, 2013, 07:21:48 AM »
If you see the page as a container, containing lots of parts, then clearly the starting point can either be a NetWebPage or a NetWebForm.

Assuming that each of the parts are independent I'd probably start with a netWebPage. But it's hard to say whether that, or a form, would be better.

On the other hand, if you build the small parts, as various browses and forms, then bringing them back into a container later on is easy, and you can experiment with different containers.

So if I had to do this, I'd probably start by breaking the page down into parts, then deciding on the best part for each bit, and then bringing them together towards the end.

Cheers
Bruce

Alberto

  • Hero Member
  • *****
  • Posts: 1871
    • MSN Messenger - alberto-michelis@hotmail.com
    • View Profile
    • ARMi software solutions
    • Email
Re: How to do a page like that
« Reply #2 on: June 05, 2013, 07:27:37 AM »
Thanks I thouht of build multiple browses and forms, but what I dont know how to do is "bringing them back into a container later"
How to do this?
Any example?
Thanks
-----------
Regards
Alberto

Alberto

  • Hero Member
  • *****
  • Posts: 1871
    • MSN Messenger - alberto-michelis@hotmail.com
    • View Profile
    • ARMi software solutions
    • Email
Re: How to do a page like that
« Reply #3 on: June 05, 2013, 11:41:15 AM »
Ok, I'm trying with a netwebpage, see image please.
Justa to test, I add procedures in a table with two columns, like:

packet = clip(packet) & |
  '<<!-- Net:MenuWin --><13,10>'&|
  '<br/>'&|
  '<font color="#808080" size="4"><b>Bienvenidos al area de Clientes de</b></font>'& |
  '<br/>'&|
  '<font color="#808080" size="5"><b> AGRINTER </b></font>'& |
  '<table>'&|
  '<tr>'&|
  '<td><!-- Net:bClientes --><!-- Net:bUsuarios --></td>'&|
  '<td><!-- Net:bClientes --><!-- Net:bUsuarios --></td>'&|
  '</tr>'&|
  '</table>'&|

Why the buttons on the second column does not likes like the first column?

Thanks


[attachment deleted by admin]
-----------
Regards
Alberto

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11242
    • View Profile
Re: How to do a page like that
« Reply #4 on: June 05, 2013, 01:50:43 PM »
Because you're using the same browse procedure twice on the same page. So the names of things, like the buttons, is being duplicated, so the JavaScript that runs on those things doesn't work.

In short - while in the future it may be possible to embed the same browse twice on the same page, it's not possible to do that at the moment.

cheers
Bruce