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

37 lines
2.2 KiB
Plaintext
Raw Permalink 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_width_boxflex.aspx.cs"
Inherits="FineUI.Examples.grid.grid_width_boxflex" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" AutoSizePanelID="Grid1" runat="server" />
<f:Grid ID="Grid1" ShowBorder="true" ShowHeader="true" Title="表格([所学专业]占据空余空间1/3[个人简介]占据空余空间1/3(改变页面大小来观察每列宽度的变化)"
runat="server" DataKeyNames="Id" Margin="5px">
<Columns>
<f:RowNumberField />
<f:BoundField Width="100px" DataField="Name" DataFormatString="{0}" HeaderText="姓名" />
<f:TemplateField Width="60px" HeaderText="性别">
<ItemTemplate>
<%-- Container.DataItem 的类型是 System.Data.DataRowView 或者用户自定义类型 --%>
<%--<asp:Label ID="Label2" runat="server" Text='<%# GetGender(DataBinder.Eval(Container.DataItem, "Gender")) %>'></asp:Label>--%>
<asp:Label ID="Label3" runat="server" Text='<%# GetGender(Eval("Gender")) %>'></asp:Label>
</ItemTemplate>
</f:TemplateField>
<f:BoundField Width="60px" DataField="EntranceYear" HeaderText="入学年份" />
<f:CheckBoxField Width="60px" RenderAsStaticField="true" DataField="AtSchool" HeaderText="是否在校" />
<f:HyperLinkField MinWidth="200px" BoxFlex="1" HeaderText="所学专业BoxFlex=1" DataToolTipField="Major" DataTextField="Major"
DataTextFormatString="{0}" DataNavigateUrlFields="Major" DataNavigateUrlFormatString="http://gsa.ustc.edu.cn/search?q={0}"
UrlEncode="true" Target="_blank" />
<f:BoundField MinWidth="200px" BoxFlex="2" DataField="Desc" HtmlEncode="false" DataToolTipField="Desc" HeaderText="个人简介BoxFlex=2" />
</Columns>
</f:Grid>
<br />
<br />
</form>
</body>
</html>