Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Dear monks
I want to programmatically select a row in a TableMatrix. I am doing this. It activates a cell, but it is okay in my scenario:
$t->activate("0,0");
The cell gets selected, but the normal highlighting you get when you click with the mouse is not shown. I need it to be shown. I added the following
$t->tagRow('active', '0');
This highlight the row/cell, but in a different color respect when I click on it with the mouse. Is there something build-in, or do I have to define a new Tag with same color, etc.?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Tk TableMatrix programmatically select row (color)
by kcott (Archbishop) on Oct 18, 2020 at 03:07 UTC | |
|
Re: Tk TableMatrix programmatically select row (color)
by Anonymous Monk on Oct 17, 2020 at 12:54 UTC | |
by Anonymous Monk on Oct 17, 2020 at 13:41 UTC |