in reply to Re: activate and selectionSet methods, negative columns in TableMatrix (focus)
in thread activate and selectionSet methods, negative columns in TableMatrix
has the same effect as,$tm->focus; $tm->activate("topleft");
I'm not sure why this is so.$tm->activate("topleft"); $tm->focus;
$tm->colWidth (0, 25); print $tm->colWidth(), "\n";
0 25
$tm->colWidth (-10, 32); $,="|"; print $tm->colWidth(), "\n";
0 25|-10 32|
doesn't change the width of first column. Why is this so?sub validate_browse { $tm->colWidth (-10, 32); $tm->configure(-padx =>($tm->cget(-padx))); #display refresh trick, }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: activate and selectionSet methods, negative columns in TableMatrix (focus)
by Anonymous Monk on Jan 23, 2015 at 01:24 UTC | |
by Anonymous Monk on Jan 23, 2015 at 04:53 UTC |