Discussion:
Problems with dynamic content with powerplant
(too old to reply)
garg
2006-07-09 15:20:27 UTC
Permalink
I have a specific window I want to duplicate many times, all instances
should have the same logic

choosing between which window is done by using a specific LTextButton

problems I get:
1) How do I tell LMultiViewPane that it has many instances of the same
window
2) How do I set a LRadioGroup that will group dynamically created
LTextButtons (I don't know how many buttons I'll have)

thanks in advance
Elad
David Phillip Oster
2006-07-09 15:37:35 UTC
Permalink
Post by garg
I have a specific window I want to duplicate many times, all instances
should have the same logic
choosing between which window is done by using a specific LTextButton
1) How do I tell LMultiViewPane that it has many instances of the same
window
2) How do I set a LRadioGroup that will group dynamically created
LTextButtons (I don't know how many buttons I'll have)
Take a look at my http://www.turbozen.com/sourceCode The
ViewColumnDivider example is similar to what you are describing.
David Phillip Oster
2006-07-09 15:42:02 UTC
Permalink
Post by garg
1) How do I tell LMultiViewPane that it has many instances of the same
window
Since you create the subViews dynamically, you can just insert them with
AddPanel().
Post by garg
2) How do I set a LRadioGroup that will group dynamically created
LTextButtons (I don't know how many buttons I'll have)
Use an LRadioGroupView as the container, and its children are
automatically grouped.
garg
2006-07-11 06:58:34 UTC
Permalink
thanks

Loading...