-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathSelect_PayMoney.aspx
69 lines (65 loc) · 5.95 KB
/
Select_PayMoney.aspx
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
67
68
69
<%@ Page Title="" Language="C#" MasterPageFile="~/MainMasterAR.master" AutoEventWireup="true" CodeFile="Select_PayMoney.aspx.cs" Inherits="Select_PayMoney" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div class="container" dir="rtl">
<div class="ui blue inverted segment center aligned " style="width: 100%">
<h1>كشف حساب</h1>
</div>
<div class="three fields ui raised segment form">
<h1 class="ui dividing header" style="font-family: myFirstFont">بحث</h1>
<div class="field">
<div class="ui two column grid">
<div class="row">
<div class="column">
<asp:Label ID="Label4" runat="server" Font-Size="Large" Text=" العميل"></asp:Label>
<asp:DropDownList ID="drpEmployee" runat="server" class="ui fluid selection dropdown" onchange="changeborderColorafterfill(this)" ValidationGroup="1" Font-Size="Medium" AutoPostBack="true" OnSelectedIndexChanged="drpEmployee_SelectedIndexChanged" CssClass="center" TabIndex="1"></asp:DropDownList>
<asp:RequiredFieldValidator ID="RequiredFieldValidator5" runat="server" ControlToValidate="drpEmployee" InitialValue="اختار العميل" ValidationGroup="1" ErrorMessage=""></asp:RequiredFieldValidator>
</div>
<div class="column">
<br />
<asp:Button ID="btnReport" runat="server" CssClass="ui blue button" OnClientClick="customValidations('1')" ValidationGroup="1" Style="width: 80px" TabIndex="15" OnClick="btnReport_Click" Text="التقارير" />
</div>
</div>
<div class="row">
<div class="column">
<asp:Label ID="Label12" runat="server" Font-Size="Large" Text="الفترة من " CssClass="valign-text-top"></asp:Label>
<asp:TextBox ID="txtDateFrom" runat="server" class="ui input " placeholder="التاريخ " onchange="changeborderColorafterfill(this)" ValidationGroup="1" AutoPostBack="true" OnTextChanged="txtDateFrom_TextChanged" CssClass="center" Font-Size="Medium" TabIndex="1"></asp:TextBox>
<ajaxToolkit:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="txtDateFrom" />
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtDateFrom" ValidationGroup="1" ErrorMessage=""></asp:RequiredFieldValidator>
</div>
<div class="column">
<asp:Label ID="Label1" runat="server" Font-Size="Large" Text="الفترة الي " CssClass="valign-text-top"></asp:Label>
<asp:TextBox ID="txtDateTo" runat="server" class="ui input " placeholder="التاريخ " onchange="changeborderColorafterfill(this)" ValidationGroup="1" CssClass="center" Font-Size="Medium" AutoPostBack="true" OnTextChanged="txtDateTo_TextChanged" TabIndex="2"></asp:TextBox>
<ajaxToolkit:CalendarExtender ID="CalendarExtender2" runat="server" TargetControlID="txtDateTo" />
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="txtDateTo" ValidationGroup="1" ErrorMessage=""></asp:RequiredFieldValidator>
</div>
</div>
</div>
</div>
</div>
<div class="three fields ui raised segment form">
<h1 class="ui dividing header" style="font-family: myFirstFont">البيانات</h1>
<div class="field">
<div id="Div1" dir="rtl" runat="server" style="height: 400px; width: 100%; left: 5%; right: 5%; margin: 2em auto; overflow-x: scroll">
<asp:GridView ID="gridSelect" class="ui celled table center aligned" AllowPaging="true" PageSize="5" runat="server" CellPadding="4" ForeColor="#333333" BorderColor="#CC9966" BorderStyle="None" BorderWidth="1px" GridLines="None" OnPageIndexChanging="gridSelect_PageIndexChanging" >
<AlternatingRowStyle BackColor="White" />
<EditRowStyle BackColor="#2461BF" />
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#507CD1" Font-Size="Larger" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#EFF3FB" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#F5F7FB" />
<SortedAscendingHeaderStyle BackColor="#6D95E1" />
<SortedDescendingCellStyle BackColor="#E9EBEF" />
<SortedDescendingHeaderStyle BackColor="#4870BE" />
</asp:GridView>
</div>
</div>
</div>
</div>
</ContentTemplate>
</asp:UpdatePanel>
</asp:Content>