I've use the "Digits" and "Numeric" input scopes on the emulator for windows phone7 but on the actual device it ends up being the default input scope.
How do I change it to "Numeric" on the actual device? Is there something that I'm missing?
I've use the "Digits" and "Numeric" input scopes on the emulator for windows phone7 but on the actual device it ends up being the default input scope.
How do I change it to "Numeric" on the actual device? Is there something that I'm missing?
InputScope="TelephoneNumber" works on both Mango and NoDo.
Here is the full code:
InputScope scope = new InputScope();
InputScopeName scopeName = new InputScopeName();
scopeName.NameValue = InputScopeNameValue.Number;
scope.Names.Add(scopeName);
tblInputField.Inputscope = scope;