Completed
Last Updated: 23 Mar 2018 14:44 by ADMIN
ADMIN
Lance | Manager Technical Support
Created on: 13 Nov 2017 19:40
Category: DataForm
Type: Bug Report
1
DataForm: IntegerEditor on UWP MaxValue Issue
On UWP, the IntegerEditor has a default max value of 100. This is not present on other platforms.

Current Workaround

The workaround is to explicitly set the max value via a NumericalRangeValidator

E.G.

[NumericalRangeValidator(int.MinValue, int.MaxValue)]
public int PropertyName { get; set; }
0 comments