Orchard.Forms: Adding Numberbox (input type="number") shape to EditorShapes

This commit is contained in:
Lombiq 2018-09-28 16:41:37 +02:00 committed by Benedek Farkas
parent 1d22f27bf0
commit e527272013

View File

@ -224,6 +224,12 @@ namespace Orchard.Forms.Shapes {
return DisplayShapeAsInput(Display, Shape, "text");
}
[Shape]
public IHtmlString Numberbox(dynamic Display, dynamic Shape) {
Shape.Classes.Add("number");
return DisplayShapeAsInput(Display, Shape, "number");
}
[Shape]
public IHtmlString Password(dynamic Display, dynamic Shape) {
Shape.Classes.Add("password");