Hi,
we are using value display and configuration in our application for parameter menu class.
in parameter menu class created configuration for specific value and setting that config to appearance property in value display
ex: engine speed - value display wizard type
engine speed config - value display configuration type - setting to appearance property
when I was debugging inside value display execution flow is like below
1. OnSetappearance called first , enter to below case
/ ... and attach to the new one
if ( value != null )
attachobserver onConfigChanged, value.
2. based on above case called on_format_value{} slot triggered
3. Next UpdateViewState{} slot trigged
but inside slot it is showing appearance as null , based on that setting all below variables as false
// Determine which views are necessary within the widget.
var bool needs_value = ( appearance != null ) && ( appearance.ValueFont != null );
var bool needs_unit = ( appearance != null ) && ( appearance.UnitFont != null );
var bool needs_data_loss = ( appearance != null ) && ( appearance.data_loss_font != null );
could you please check it and let me know whether my understanding is correct on it or not ?
Thanks,
Harshini