Changes between Version 29 and Version 30 of mvc
- Timestamp:
- 10/19/23 09:51:21 (16 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
mvc
v29 v30 54 54 * NumberModel is a BasicModel containing a Number. Actually it contains a BigDecimal, which allows arbitrary precision numbers to be entered and manipulated without loss of precision or rounding. 55 55 * RestrictedNumberModel is a NumberModel with a minimum and maximum value. 56 * BooleanModel is BasicModel containing a boolean 56 57 57 58 === ListModel … … 83 84 ||NumberPanel||Panel allowing the user to enter an arbitrary (decimal) number with a Text field. Spinners and sliders are not good to enter general numbers because we don't have a min/max or #decimal places|| 84 85 ||SliderPanel||A panel allowing the user to pull a slider to enter a decimal number. The left side of the slider is the minimum, the right side the maximum value.|| 86 ||CheckboxPanel||A panel allowing the user to change a boolean to true or false|| 85 87 ||ComboBox||allows to make selections in SelectionModel|| 86 88 ||MapPanel||showing a MapModel as table with 2 columns. The left column shows the keys, the right column shows the values. All fields are editable. Editors for the models in the MapModel are generated using the PanelFactory. MapPanel is therefore limited to built-in models||