From: serge f. <fu...@ma...> - 2005-04-29 09:10:57
|
Foster, thank you for your careful answer, it helps very much with understanding of how things work. But due to my fault to ask properly and prepare short example, you have not told about my problem. So here is the new much simpler example: ----- sheet test { interface: t : false; a : false; } ------ dialog() { group(name: "SSFFeam") { checkbox(bind: @t, name: "Do not use optional parameters"); } checkbox(bind: @a, name: "Test"); } ---- In short: when i do not place checkbox inside "group" it works properly and handles user input. But when it is placed inside "group" (as in this sample) it fails to change it's own state when i click on it, i.e nothing happens with checkbox bound to 't' when i click on it and rather checkbox bound to 'a' changes it's own state. So here is the question: is this bug or feature? Is it possible to place checkbox inside group? Or, probably, i am the only one with such trouble? ---- Serge |