Interactive Tablelist Cell Editing Using the BWidget Package
For Tablelist Version 5.13
by
Csaba Nemethi
csaba.nemethi@t-online.deContents
- Overview
- The
tablelist::addBWidgetEntryCommand - The
tablelist::addBWidgetSpinBoxCommand - The
tablelist::addBWidgetComboBoxCommand
Overview
The BWidget package is a library extension for Tcl/Tk versions 8.1.1 or higher, written in pure Tcl/Tk code. Its download location is
http://sourceforge.net/projects/tcllib/files
Tablelist supports interactive cell editing with the aid of the Entry, SpinBox, and ComboBox widgets from the BWidget package. The steps needed for using one of these widgets for editing the cells of a given column are as follows:
- Register the desired widget for interactive cell editing by invoking one of the commands described in this reference page.
- Use the tablelist widget's
columnconfiguresubcommand to set the given column's-editableoption to true and its-editwindowoption to the value returned by the command mentioned above. (These options are supported at cell level, too, with the aid of thecellconfiguresubcommand.)
The tablelist::addBWidgetEntry
Command
- NAME
tablelist::addBWidgetEntry– Register the Entry widget from the BWidget package for interactive cell editing- SYNOPSIS
-
tablelist::addBWidgetEntry ?name?
- DESCRIPTION
- This command registers the Entry widget from the BWidget
package for interactive cell editing in tablelist widgets.
The optional argument specifies the name to be used for the Entry
widget as the value of the
-editwindowcolumn or cell configuration option. It may be any string that is different from the Tk core and tile edit window names. The default isEntry. The command returns itsnameargument. - KEYWORDS
- tablelist, editing, BWidget, Entry
The
tablelist::addBWidgetSpinBox Command
- NAME
tablelist::addBWidgetSpinBox– Register the SpinBox widget from the BWidget package for interactive cell editing- SYNOPSIS
-
tablelist::addBWidgetSpinBox ?name?
- DESCRIPTION
- This command registers the SpinBox widget from the BWidget
package for interactive cell editing in tablelist widgets.
The optional argument specifies the name to be used for the SpinBox
widget as the value of the
-editwindowcolumn or cell configuration option. It may be any string that is different from the Tk core and tile edit window names. The default isSpinBox. The command returns itsnameargument. - The temporary embedded SpinBox widget associated
with the above
namewill be created with its-editableoption set to1. You can use the script corresponding to the-editstartcommandtablelist configuration option to make the SpinBox non-editable or define validations for it, as well as for setting its (range of) values and its-wrapoption. - KEYWORDS
- tablelist, editing, BWidget, SpinBox
The
tablelist::addBWidgetComboBox Command
- NAME
tablelist::addBWidgetComboBox– Register the ComboBox widget from the BWidget package for interactive cell editing- SYNOPSIS
-
tablelist::addBWidgetComboBox ?name?
- DESCRIPTION
- This command registers the ComboBox widget from the BWidget
package for interactive cell editing in tablelist widgets.
The optional argument specifies the name to be used for the
ComboBox widget as the value of the
-editwindowcolumn or cell configuration option. It may be any string that is different from the Tk core and tile edit window names. The default isComboBox. The command returns itsnameargument. - The temporary embedded ComboBox widget associated
with the above
namewill be created with its-editableoption set to1. You can use the script corresponding to the-editstartcommandtablelist configuration option to make the ComboBox non-editable or define validations for it, as well as for populating its listbox component (with the aid of the ComboBox widget's-valuesoption). - KEYWORDS
- tablelist, editing, BWidget, ComboBox