Thanks for the feed back.

Ive tried the following (as posted above)...
-value=>"@$names[0]" ($names[0] = ID for that file)
When toggling, each row will stay independent, but selecting one button will also select the other, both working together and not toggling back and forth, per row.

-value=>"one" -value=>"two"
Toggling "Install" will select all 'install' buttons for all rows, toggling "update" will de-select the "install" rows and select all 'update' rows (being 'one' and 'two' are now constants ??).

-value=>"both_@$names[0]" -value=>"install_@$names[0]"
($names[0] = ID for that file)
Makes all buttons independent, no matter what row is selected, the buttons will toggle to that single button.

In the while-loop, i have my $FileFrame = $extFileFrame -> Frame();
Doesnt that create a new "instance" of a frame which will be placed in the "parent" container/frame '$extFileFrame' ?
If so, by placing the two radio buttons (install and update) with $rdb = $FileFrame -> Radiobutton() they are being placed in there own container, and since each container is a new row, rows should not effect each other ???


Only reason im tring to go with this route now, is because i cant get it working ;) and being new to perl i would like to learn what im doing wrong.

An alternative which would fit my needs is just create a label with the 'type' flag in it so i can visualy see if the file is for Install or for Update and then place two "normal" cmd_Buttons next to the row, it does not have to be nice and pritty, but i would like to know what im doing wrong with the code above.


_

In reply to Re^2: Tk: Dynamic Radiobuttons toggle problem... by iMisspell
in thread Tk: Dynamic Radiobuttons toggle problem... by iMisspell

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.