Container Fluid - Forum

Forum Navigation
You need to log in to create posts and topics.

Container Fluid

Estou na versão de testes.    Como eu faço para o container ocupar o espaço do navegador?  olhei todos os recursos mas não encontrei. desta forma.  Preciso saber se tem este recurso para comprar o programa.  Obrigado

 

 

Uploaded files:
  • You need to login to have access to uploads.

 

Did you mean "Browser space" or the "space occupied by your App" ? ... say your Browser is 1000 by 800 ... but you have defined the size of your App to be 800 by 500 ... then, to the best of my knowledge, your App can not draw outside the 800 by 500 boundary.

In order to have a Container cover the App space ...

SetVar "[myPage]" "nameOfYourPageGoesHere"
SetVar "[myContainer]" "nameOfYourContainerGoesHere"

GetObjectInfo "[myPage]" "width" [myPageWidth]
GetObjectInfo "[myPage]" "height" [myPageHeight]
...AlertBox "size" "[myPageWidth] ... [myPageHeight]" ""

SetObjectBounds "[myContainer]" "0px" "0px" [myPageWidth] [myPageHeight]

 

 

Deleted user has reacted to this post.
Deleted user

@andre see attached full-width sample app. Please also take a look at the "How to make a responsive website" video tutorial:

Regards.

 

Uploaded files:
  • You need to login to have access to uploads.
Vadim and Deleted user have reacted to this post.
VadimDeleted user

Olá @luishp.  Muito obrigado pela resposta e pela indicação.   Mas eu não me expressei bem na pergunta.  A realidade era o "espaço do navegador", e o @gaev colocou um exemplo.

Muito obrigado @luishp e @gaev, vou testar o exemplo.