devexpress 网格所有页面中选择的行数计数

发布于 2024-09-08 04:16:44 字数 147 浏览 1 评论 0原文

我有一个 devexpress 网格,其中包含 ASP.NET 和 C#.NET 应用程序中的多个页面。我只想在网格的所有页面中进行 2 个选择。如果我在所有页面中选择超过 2 行,它应该显示一个警报,

如何获取 devexpress 网格的所有页面中选择的行数?

i have a devexpress grid with multiple pages in asp.net and c#.net application. and i want to make only 2 selection in all the pages of the grid . if i select more than 2 rows in all thepages it should display an alert

how to get the count of number of rows selected in all the pages of the devexpress grid?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

作妖 2024-09-15 04:16:44

我们建议您使用以下方法:

1) 使用 CustomJSProperties 事件将当前所选记录的信息从服务器端传递到客户端。
2) 使用 ASPxGridView 的客户端 Init 和 SelectionChanged 事件来管理选择。代码如下:

// CS

protected void grid_CustomJSProperties(object sender, ASPxGridViewClientJSPropertiesEventArgs e) {
    e.Properties["cpSelectionCount"] = (sender as ASPxGridView).Selection.Count.ToString();
}

// JS

   <script type="text/javascript">
    var selectedCount = 0;
   </script>

....

    <dx:ASPxGridView ID="grid" runat="server" AutoGenerateColumns="False" KeyFieldName="CategoryID" OnCustomJSProperties="grid_CustomJSProperties" DataSourceID="AccessDataSource1">
            <ClientSideEvents SelectionChanged="function(s,e) {
            if(e.isChangedOnServer)
                return;
            if(e.isSelected)
                selectedCount += 1;
            else
                selectedCount -= 1;                
            if(e.isSelected && selectedCount > 2) {
                alert('You selected more than 2 records');
                s.UnselectRowOnPage(e.visibleIndex);                  
            return;
        }
    }"  
    Init="function(s,e) {
        selectedCount = parseInt(s.cpSelectionCount);
    }"/>
     <Columns>
     ...
     </Columns>
</dx:ASPxGridView>

We suggest that you use the following approach:

1) pass the information about the currently selected records from the server side to client side using the CustomJSProperties event.
2) use the ASPxGridView's client side Init and SelectionChanged events to manage the selection. Here is the code:

// CS

protected void grid_CustomJSProperties(object sender, ASPxGridViewClientJSPropertiesEventArgs e) {
    e.Properties["cpSelectionCount"] = (sender as ASPxGridView).Selection.Count.ToString();
}

// JS

   <script type="text/javascript">
    var selectedCount = 0;
   </script>

....

    <dx:ASPxGridView ID="grid" runat="server" AutoGenerateColumns="False" KeyFieldName="CategoryID" OnCustomJSProperties="grid_CustomJSProperties" DataSourceID="AccessDataSource1">
            <ClientSideEvents SelectionChanged="function(s,e) {
            if(e.isChangedOnServer)
                return;
            if(e.isSelected)
                selectedCount += 1;
            else
                selectedCount -= 1;                
            if(e.isSelected && selectedCount > 2) {
                alert('You selected more than 2 records');
                s.UnselectRowOnPage(e.visibleIndex);                  
            return;
        }
    }"  
    Init="function(s,e) {
        selectedCount = parseInt(s.cpSelectionCount);
    }"/>
     <Columns>
     ...
     </Columns>
</dx:ASPxGridView>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文