FineUI 官方论坛
标题:
Grid1无法展现问题
[打印本页]
作者:
刘军
时间:
2012-12-3 08:14
标题:
Grid1无法展现问题
目前发现一个问题,使用Grid时,如果启用分页,且页面上无其他FineUI控件存在的情况下,会导致Grid无法加载(一直显示Loading状态),如果不启用分页,或者拖入一个Form,则页面能正常显示。
另外:此问题在ExtAspnet时代不存在。
相关代码:
以下为出错代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
">
<html xmlns="
http://www.w3.org/1999/xhtml
">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<ext
ageManager ID="
ageManager1" runat="server" />
<ext:Grid ID="Grid1" runat="server" AllowPaging="true" EnableCheckBoxSelect="true"
EnableRowNumber="true" Title="Grid">
<Columns>
</Columns>
</ext:Grid>
</div>
</form>
</body>
</html>
以下为正常代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
">
<html xmlns="
http://www.w3.org/1999/xhtml
">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<ext
ageManager ID="
ageManager1" runat="server" />
<ext:Form ID="Form2" runat="server" BodyPadding="5px" EnableBackgroundColor="true"
Title="Form">
<Rows>
<ext:FormRow ID="FormRow1" runat="server">
</ext:FormRow>
<ext:FormRow ID="FormRow2" runat="server">
</ext:FormRow>
</Rows>
</ext:Form>
<ext:Grid ID="Grid1" runat="server" AllowPaging="true" EnableCheckBoxSelect="true"
EnableRowNumber="true" Title="Grid">
<Columns>
</Columns>
</ext:Grid>
</div>
</form>
</body>
</html>
作者:
小小程序员
时间:
2012-12-11 08:29
我也遇到了这个问题,不知道什么情况
欢迎光临 FineUI 官方论坛 (https://fineui.com/bbs/)
Powered by Discuz! X3.4