dlhcp 发表于 2017-1-29 16:05:03

C1GridView 点击页码时提示pageIndexChanging event was not handler

<body>
    <form id="form1" runat="server">

      <div>
            <asp:ScriptManager runat="server" ID="ScriptManger1" />
             <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
               <ContentTemplate>
            <wijmo:C1GridView ID="C1GridView1" runat="server" AutogenerateColumns="false"AllowPaging="true" CallbackSettings-Action="All" PageSize="1" AllowColMoving="true" AllowColSizing="true" ShowHeader="true" >


                        <Columns>
                        <wijmo:C1BoundField DataField="Name" HeaderText="姓名" SortExpression="Name">
                        </wijmo:C1BoundField>
                                                    <wijmo:C1TemplateField HeaderText="头像" SortExpression="Img">
                            <itemstyle horizontalalign="Center" />
                            <itemtemplate>
                            <img src="<%#Eval("Img") %>"style="height:30px;width:30px"/>
                        </itemtemplate>
                        </wijmo:C1TemplateField>
                        <wijmo:C1BoundField DataField="Age" HeaderText="年龄" SortExpression="Age">
                        </wijmo:C1BoundField>
                        <wijmo:C1CheckBoxField DataField="isMan" HeaderText="isMan" SortExpression="isMan">
                        </wijmo:C1CheckBoxField>

                </Columns>
            </wijmo:C1GridView>
                     </ContentTemplate>
               </asp:UpdatePanel>
      </div>
      <div>

      </div>
    </form>
</body>
</html>

Alice 发表于 2017-2-3 16:27:43

谢谢您的反馈。
从您提供的代码看不出什么问题,麻烦提供可以重现问题的Demo,我帮您看看。
页: [1]
查看完整版本: C1GridView 点击页码时提示pageIndexChanging event was not handler