I have this field in my activeform:
<?= $form->field($model, 'rate')->widget(MaskMoney::classname()) ?>
The database field is decimal(5,2), the value in that row is 85.00. The value displayed is 0.85 $.
Creating a new value with the widget works though, just the update seems to be off.
There is an issue with core plugin when using with suffix. Its been reported to the plugin author. Till that is resolved avoid using suffix and use only prefix.
I have this field in my activeform: <?= $form->field($model, 'rate')->widget(MaskMoney::classname()) ?> The database field is decimal(5,2), the value in that row is 85.00. The value displayed is 0.85 $. Creating a new value with the widget works though, just the update seems to be off.