widgets-toolbox icon indicating copy to clipboard operation
widgets-toolbox copied to clipboard

Additional app building components to efficiently develop advanced user interfaces in MATLAB

Results 22 widgets-toolbox issues
Sort by recently updated
recently updated
newest added

DatetimeSelector widget's protected methods: onDateEdited(), onTimeEdited(), and onTimeZoneChanged() do not include the previous value from the "evt" struct passed into them with the "evtOut" struct they then pass to the...

Fixes #74 Fixes #75 Handle widget evendata as input argument similar to MATLAB evendata in PropertyChangedData and ValueChangedData classes. I ran the test suite in MATLAB R2022b. All seems fine.

Class wt.eventdata.PropertyChangedData references the non-existent parameter 'remArgs'. Change: ``` % Any remaining varargin are dynamic property-value pairs for idx=1:numel(varargin) thisProp = varargin{idx}; thisValue = remArgs.(thisProp); obj.addprop(thisProp); obj.(thisProp) = thisValue; end...

Introducing enumeration classes for FontWeight and FontAngle will enable the user to use a dropdown menu in AppDesigner instead of typing the value.

Fixes #72 Listen to PostUpdate instead of PostSet event to reload widget with custom background color in app from AppDesigner. I ran the test suite in MATLAB R2022b. All seems...

**Recreate issue** Create app in AppDesigner Add widget to app Change background color to blue Save and close app. Load app again in AppDesigner. --> Background of widget appears as...

This change includes the following: For ListSelectorTwoPane and ListSelector: - Allows for deselection of HighlightedValue in ListSelectorTwoPane which was previously not possible due to a change because of issue #57....

g3198185 - The error comes from ListSelectorTwoPane.m. The following update is proposed: function set.HighlightedValue(obj,value) if isempty(value) return; end if isempty(obj.ItemsData) [~, obj.RightList.Value] = ismember(value, obj.Items); else [~, obj.RightList.Value] = ismember(value,...

bug

Due to PreferenceGroup being a string type, need to change get.PreferenceGroup away from empty char format: function value = get.PreferenceGroup(app) value = app.PreferenceGroup; if isempty(value) value = class(app); end value...

Suggested addutions that could be made to the single pane ListSelector widget to improve usability. 1. The single pane ListSelector uses listdlg() when adding options from the Items property to...