This question is locked. New answers and comments are not allowed.
Hi,
I've been trying to implement a gridview like that in http://demos.telerik.com/aspnet-mvc/razor/Grid/EditingServerSide/1?mode=InLine&type=Text&theme=vista&Grid-mode=edit.
What I really like is the fact that I can't type letters into the numeric fields. I'm not sure how to add that since it seems to be done automatically.
Looking through the page source of the demo, these seem to get automatically created (I don't see them in the source code for the demo):
They look like it's what I want, but my page doesn't have those lines.
Is there something specific I'm missing from one of my files?
I've been trying to implement a gridview like that in http://demos.telerik.com/aspnet-mvc/razor/Grid/EditingServerSide/1?mode=InLine&type=Text&theme=vista&Grid-mode=edit.
What I really like is the fact that I can't type letters into the numeric fields. I'm not sure how to add that since it seems to be done automatically.
Looking through the page source of the demo, these seem to get automatically created (I don't see them in the source code for the demo):
jQuery('#UnitPrice').tTextBox({val:182313123123123140, step:'1', minValue:0, maxValue:79228162514264337593543950335, digits:2, groupSize:3, positive:0, negative:0, text:'Enter value', type:'currency'});
jQuery('#UnitsInStock').tTextBox({val:39, step:1, minValue:-2147483648, maxValue:2147483647, digits:0, groupSize:3, negative:1, text:'Enter value', type:'numeric'});
jQuery('#LastSupply').tDatePicker({format:'M/d/yyyy', minValue:new Date(1899,11,31), maxValue:new Date(2100,0,1), selectedValue:new Date(2011,8,15)});
They look like it's what I want, but my page doesn't have those lines.
Is there something specific I'm missing from one of my files?
