void RefreshSubFields()
        {
            var intNewValue = (int)(value * 100);

            mSlider.SetValueWithoutNotify(intNewValue);
            if (mSlider.elementPanel != null)
            {
                mSlider.OnViewDataReady(); // Hack to force update the slide handle position.
            }
            mField.SetValueWithoutNotify(intNewValue);
        }