Changes between Version 29 and Version 30 of mvc


Ignore:
Timestamp:
10/19/23 09:51:21 (16 months ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • mvc

    v29 v30  
    5454* 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.
    5555* RestrictedNumberModel is a NumberModel with a minimum and maximum value.
     56* BooleanModel is BasicModel containing a boolean
    5657
    5758=== ListModel
     
    8384||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||
    8485||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||
    8587||ComboBox||allows to make selections in SelectionModel||
    8688||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||