FineUI/FineUI_v6/FineUI.Examples/grid/grid_prerowdatabound_cancelled.aspx
三生石上 62ef818ff0 v6.0.3
2017-09-05 11:30:31 +08:00

46 lines
2.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="grid_prerowdatabound_cancelled.aspx.cs"
Inherits="FineUI.Examples.grid.grid_prerowdatabound_cancelled" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" runat="server" />
<f:Grid ID="Grid1" Title="表格" EnableCollapse="true" PageSize="3" ShowBorder="true" ShowHeader="true"
Width="800px" OnPreRowDataBound="Grid1_PreRowDataBound" runat="server"
EnableCheckBoxSelect="True" DataKeyNames="Id,Name" OnRowCommand="Grid1_RowCommand">
<Columns>
<f:RowNumberField />
<f:BoundField Width="100px" DataField="Name" DataFormatString="{0}" HeaderText="姓名" />
<f:TemplateField Width="80px" HeaderText="性别">
<ItemTemplate>
<asp:Label ID="Label2" runat="server" Text='<%# GetGender(Eval("Gender")) %>'></asp:Label>
</ItemTemplate>
</f:TemplateField>
<f:BoundField Width="80px" ColumnID="bfEntranceYear" DataField="EntranceYear" HeaderText="入学年份" />
<f:CheckBoxField ColumnID="cbxAtSchool" TextAlign="Center" Width="80px" RenderAsStaticField="false" DataField="AtSchool"
HeaderText="是否在校" />
<f:HyperLinkField ColumnID="hlMajor" HeaderText="所学专业" DataToolTipField="Major" DataTextField="Major"
DataTextFormatString="{0}" DataNavigateUrlFields="Major" DataNavigateUrlFormatString="http://gsa.ustc.edu.cn/search?q={0}"
UrlEncode="true" Target="_blank" ExpandUnusedSpace="True" />
<f:ImageField Width="80px" Hidden="true" DataImageUrlField="Group" DataImageUrlFormatString="~/res/images/16/{0}.png"
HeaderText="分组">
</f:ImageField>
<f:LinkButtonField TextAlign="Center" ConfirmText="你确定要这么做么?" ConfirmTarget="Top"
ColumnID="lbfAction1" Width="60px" CommandName="Action1" Text="按钮" />
<f:LinkButtonField TextAlign="Center" ConfirmText="你确定要这么做么?" Icon="Delete" ConfirmTarget="Top"
ColumnID="lbfAction2" HeaderText="&nbsp;" Width="60px" CommandName="Action2" />
</Columns>
</f:Grid>
<br />
<f:Label ID="labResult" EncodeText="false" runat="server">
</f:Label>
<br />
本示例不显示入学年份小于2004的行数据通过PreRowDataBound事件参数Cancelled控制在服务器端数据绑定时过滤数据
</form>
</body>
</html>