Can someone shed some lights on with my problem as title? I have both text and entry widgets within the form I created, but somehow I wish if I could do something such as for some of the text and entry widgets, I'll place the "" wording in it and if the user want to use that entry, they can just simply mouse click on the column and the "" wordings will automatically clear. May I know how to do that? Here is the code that I have without the mouse click to clear feature. Thanks.
#This section apply text widget.
$mwf->Label(-text => 'Waiver',
-justify => 'left'
)->grid(-sticky => 'w', -column => 0, -row => 8);
my $scrollbar = $mwf->Scrollbar()
->grid( -sticky => 'ns',-column=>2, -row => 8);
my $waiver = $mwf->Text(-height => 5,
-width => 100,
-background => "white",
-wrap => 'word',
-yscrollcommand => ['set' => $scrollbar],
)->grid(-sticky => 'w', -column => 1, -row => 8);
#This section apply entry widget.
$mwf->Label(-text => 'Exclude View',
-justify => 'left'
)->grid(-sticky => 'w', -column => 0, -row => 10);
my $exclude = $mwf->Entry(-width => 100,
-background => "white",
)->grid(-sticky => 'w', -column => 1, -row => 10);
push @entries, $exclude ;
$exclude -> insert('end', '<optional>') ;
You can use a binding that is called when an event is triggered
format
$widget->bind('<event>' => callback);
See the sample program below
More info on perl\tk events here: http://docstore.mik.ua/orelly/perl3/tk/ch15_02.htm#INDEX-2191
Edit:
When the event is triggered, and reference to the calling widget is passed to the callback. Below is a way to use only one callback sub for each widget.