<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>
|
|