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#" AutoEventWireup="true" CodeBehind="GramWeightSelect.aspx.cs" Inherits="CY.WebForm.Pages.sysInquiry.GramWeightSelect" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
     <uc:CMSHead ID="CMSHead1" runat="server" />
     <script type="text/javascript">
         $(
            function () {
                $("#btnSave").click(
                    function () {
                        var gramWeight = "";
                        $(":checkbox[checked='checked']").each(
                            function () {
                                gramWeight += $(this).val() + "|";
                            }
                        );
                        if (gramWeight == "") {
                            alertMsg('请选择至少一个克重');
                            return;
                        }
                        else {
                            gramWeight = gramWeight.substring(0, gramWeight.length - 1);
                            top.frmright.SetGramWeightsValue($("#hidPaperId").val(), gramWeight)
                            top.Dialog.close();
                        }
                    }
                );
 
                $("#btnClose").click(
                    function () {
                        top.Dialog.close();
                    }
                );
            }
         );
     </script>
</head>
<body>
    <form id="form1" runat="server">
        <asp:Repeater ID="RepGramWeightList" runat="server">
                <HeaderTemplate>
                    <table class="tableStyle" useClick="false"  useCheckBox="true" sortMode="true" id="tbGramWeightList">
                    <tr>
                        <th width="25"></th>
                        <th>克重</th>
                    </tr>
                </HeaderTemplate>
                <ItemTemplate>
                    <tr>
                    <%--<td><asp:CheckBox ID="cbk" Text='<%#Eval("GramWeight")%>' runat="server" Checked="true"/></td>--%>
                    <td><input type="checkbox" id="cbk" value='<%#Eval("GramWeight")%>' runat="server" checked="checked"/></td>
                    <td><%#Eval("GramWeight")%></td>
                    </tr>
                </ItemTemplate>
                <FooterTemplate>
                </table>
                </FooterTemplate>
             </asp:Repeater>
             <input type="button" value="确定" id="btnSave" />&nbsp;&nbsp;<input type="button" id="btnClose" value="关闭""/>
             <input type="hidden" id="hidPaperId" runat="server"/>
    </form>
</body>
</html>