I'm writing a small mobile-web application using the MVC4 RC.
In this app the user will have to enter various numeric values, to make this user-friendly I'd like the user to be able to enter these values using a calculator-like data-entry-control
1 2 3
4 5 6
7 8 9
0 < (< = Backspace)
[PREV] Oplage [......] [NEXT]
This way the mobile-keyboard wouldn't have to be visible and the user can 'tap' on the buttons 1 through 0 and use backspace to correct, the 'tapped-in' value should be displayed in the field next to 'Oplage', when done user should tab 'NEXT' and get the next view in wich he would use the same 'control' and enter the next numeric value.
I have created many usercontrols in standard ASP.NET but am new to MVC and would like some guidance as to what would be the best approach to this.
Jurjen.