1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="NumericInput.aspx.cs" Inherits="C1Input_NumericInput" Title="Untitled Page" %>
<%@ Register assembly="C1.Web.UI.Controls.2" namespace="C1.Web.UI.Controls.C1Input" tagprefix="cc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="DescriptionPlaceHolder1" Runat="Server">
C1NumericInput, C1PercentInput, C1CurrencyInput - Controls functionality.
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table style="width: 100%">
<tr>
<td align="right" style="text-align: right; width: 50%">
<h3> Numeric Input(min=1; max=1000; DecimalPlaces=3; Value=2.324):</h3></td>
<td style="width: 135px">
<br />
<br />
<cc1:C1NumericInput ID="C1WebNumericEdit1" runat="server" DecimalPlaces="3"
MaxValue="1000" MinValue="1" Value="2.324">
</cc1:C1NumericInput>
<br />
<br />
</td>
</tr>
<tr>
<td align="right" style="height: 24px; text-align: right; width: 50%;">
<h3> Percent Input(Initial Value=50; DecimalPlaces=4):</h3></td>
<td style="height: 24px; width: 135px;">
<br />
<br />
<cc1:C1PercentInput id="C1WebPercentEdit1" runat="server" DecimalPlaces="4"
value="50">
</cc1:C1PercentInput>
<br />
<br />
</td>
</tr>
<tr>
<td align="right" style="height: 24px; text-align: right; width: 50%;">
<h3> Currency Input(Default Properties):</h3></td>
<td style="height: 24px; width: 135px;">
<br />
<br />
<cc1:C1CurrencyInput id="C1WebCurrencyEdit1" runat="server"></cc1:C1CurrencyInput>
<br />
<br />
</td>
</tr>
<tr>
<td align="right" style="height: 24px; text-align: right; width: 50%;">
<h3> Currency Input(Culture = English(United Kingdom), Increment=10, MinValue=-14, MaxValue=1000000000):</h3></td>
<td style="height: 24px; width: 135px;">
<br />
<br />
<cc1:C1CurrencyInput ID="C1WebCurrencyEdit2" runat="server" Culture="English (United Kingdom)" Increment="10" MinValue="-14"></cc1:C1CurrencyInput>
<br />
<br />
</td>
</tr>
</table>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ControlOptionsHolder1" Runat="Server">
</asp:Content>
|