For a view
, I need to define a size, a drop-down
with data, set its size and get the chosen value for input in some function.
loadGui: func [] [
unview/all
view layout [
Dropd_urls: drop-down (getUrlsEnd Urls)
]
]
What is a logic behind a style
or a facet
? Define a word, than the facet
then the size
, alignment
and other properties, then a block for on-action
? And what about the (getUrlsEnd Urls)
that gets evaluated, where should it be placed? If someone could provide a thorough example on the drop-down
, it would be great.
And another question. I'm aware of the help system/...
, but cannot get useful information about the logic of how to accomplish what was stated above. Where do you go to get to know how to build the view
constructs? A howto? Normally, I read the howtos provided by Nick Antonnacio, but there's more to view
than what is shown in his documents.