zoukankan      html  css  js  c++  java
  • dev 官网

    https://www.devexpress.com/Support/Center/Example/Details/E1343

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication15.WebForm1" %>

    <%@ Register Assembly="DevExpress.Web.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Namespace="DevExpress.Web" TagPrefix="dx" %>

    <!DOCTYPE html>

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <script type="text/javascript">
    function aa() {
    grid.SelectionChanged();
    }

    function SelChanged(s, e) {

    //var cbSelName = "cbCheck" + e.visibleIndex;

    //if (eval(cbSelName).GetInputElement() != null)
    // eval(cbSelName).SetChecked(s.IsRowSelectedOnPage(e.visibleIndex));
    var key = s.GetRowKey(e.visibleIndex);
    alert(key);
    }
    function OnGridSelectionComplete(values) {
    var str = "No: " + values[0] + ", Name: " + values[1] ;
    selDescription.SetValue(str);
    }
    </script>
    </head>
    <body>
    <form id="form1" runat="server">
    <div>
    <dx:ASPxMemo ID="selDescription" runat="server" EnableClientSideAPI="true" />
    <br />
    <dx:ASPxGridView ID="ASPxGridView1" KeyFieldName="No" ClientInstanceName="grid" runat="server" AutoGenerateColumns="False">

    <SettingsPager PageSize="30" Position="Bottom" >
    </SettingsPager>
    <Settings ShowGroupPanel="True" ShowGroupFooter="VisibleAlways"></Settings>
    <SettingsBehavior AllowFixedGroups="False" AllowGroup="True" AllowDragDrop="True"/>

    <Columns>
    <dx:GridViewDataTextColumn FieldName="No" UnboundType="Integer" VisibleIndex="0">
    </dx:GridViewDataTextColumn>
    <dx:GridViewDataTextColumn FieldName="Name" UnboundType="String" VisibleIndex="1">
    </dx:GridViewDataTextColumn>
    </Columns>
    <GroupSummary>
    <dx:ASPxSummaryItem DisplayFormat="合计:0" FieldName="Name" SummaryType="Sum" />
    </GroupSummary>



    <ClientSideEvents SelectionChanged="function(s, e) { SelChanged(s, e); }" />
    </dx:ASPxGridView>
    </div>
    </form>
    </body>
    </html>

  • 相关阅读:
    Salesforce Javascript(四) 展开语法 ...
    salesforce零基础学习(一百零二)Limitation篇之 CPU Limit
    salesforce lightning零基础学习(十七) 实现上传 Excel解析其内容
    php orm的C扩展 ycdatabase
    php ice框架
    不错的PHP扩展
    php的各种序列化对比
    ubuntu 使用tree打印树形结构
    文件写入速度对比
    服务器cli模式下的定时器
  • 原文地址:https://www.cnblogs.com/kexb/p/4883941.html
Copyright © 2011-2022 走看看