The Wijmo Input extender controls allow you to create masked, numeric, percentage, currency and date inputs, depending on the type of data users will be entering.
The C1InputDateExtender control is used to edit the date and time.
C1InputDateExtender Markup
The following markup creates a C1InputDateExtender control. Set the TargetControlID property to attach the extender to a control.
<cc1:C1InputDateExtender ID="TextBox1_C1InputDateExtender" runat="server"
TargetControlID="TextBox1">
<PopupPosition>
<Offset Top="4">
</Offset>
</PopupPosition>
</cc1:C1InputDateExtender>
The C1InputMaskExtender control supports data formatting, edit mask, data validation, and other features.
C1InputDateExtender Markup
The following markup creates a C1InputMaskExtender control. Set the TargetControlID property to attach the extender to a control.
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<cc1:C1InputMaskExtender ID="TextBox1_C1InputMaskExtender" runat="server"
TargetControlID="TextBox1">
</cc1:C1InputMaskExtender>
The C1InputNumberExtender control is specialized for editing numeric values.
C1InputNumberExtender Markup
The following markup creates a C1InputNumberExtender control. Set the TargetControlID property to attach the extender to a control.
<wijmo:C1InputNumberExtender ID="TextBox1_C1InputNumberExtender" runat="server"
TargetControlID="TextBox1">
</cc1:C1InputNumberExtender>