我无法扩展我的 ext:gridpanel
我的页面中有 gridpanel,我想扩展它(比如 height=100%),但我找不到任何可以使用的属性 这是我的代码
这是我的代码:
<ext:Panel runat="server" ID="pnlEest">
<Body>
<div>
<ext:FitLayout ID="FitLayout1" runat="server">
<ext:GridPanel ID="GridPanel1" runat="server" StoreID="Store1" >
<TopBar>
<ext:Toolbar ID="ToolBar1" runat="server">
<Items>
<ext:Button ID="BtnInsert" runat="server" Text="Insert" IconCls="Button_Add">
<AjaxEvents>
<Click OnEvent="BtnInsert_Click">
<EventMask ShowMask="true" />
</Click>
</AjaxEvents>
</ext:Button>
<ext:Button ID="BtnUpdate" runat="server" Text="Update" IconCls="Button_Add">
<Listeners>
<Click Handler="#{GridPanel1}.reload();" />
</Listeners>
</ext:Button>
<ext:Button ID="BtnDelete" runat="server" Text="Delete" IconCls="Button_Add">
<Listeners>
<Click Handler="#{GridPanel1}.reload();" />
</Listeners>
</ext:Button>
</Items>
</ext:Toolbar>
</TopBar>
<ColumnModel ID="ColumnModel1" runat="server">
<Columns>
<ext:RowNumbererColumn />
<ext:Column ColumnID="IDField" DataIndex="Id" Header="Id" Sortable="true" Width="50"
Hidden="true">
<PrepareCommand Handler="" Args="grid,command,record,row,col,value" FormatHandler="False">
</PrepareCommand>
<PrepareCommands Handler="" Args="grid,commands,record,row,col,value" FormatHandler="False">
</PrepareCommands>
</ext:Column>
<ext:Column DataIndex="LocalName" Header="LocalName" Sortable="true" Width="120">
<PrepareCommand Handler="" Args="grid,command,record,row,col,value" FormatHandler="False">
</PrepareCommand>
<PrepareCommands Handler="" Args="grid,commands,record,row,col,value" FormatHandler="False">
</PrepareCommands>
</ext:Column>
<ext:Column DataIndex="LatinName" Header="LatinName" Sortable="true" Width="120">
<PrepareCommand Handler="" Args="grid,command,record,row,col,value" FormatHandler="False">
</PrepareCommand>
<PrepareCommands Handler="" Args="grid,commands,record,row,col,value" FormatHandler="False">
</PrepareCommands>
</ext:Column>
</Columns>
</ColumnModel>
<SelectionModel>
<ext:RowSelectionModel ID="RowSelectionModel1" runat="server" />
</SelectionModel>
<LoadMask ShowMask="true" />
<BottomBar>
<ext:PagingToolbar Cls="DataGrid_Footer" ID="PagingToolBar1" runat="server" DisplayInfo="True"
DisplayMsg="Documents {0} - {1} OF {2}" PageSize="2" StoreID="Store1" />
</BottomBar>
</ext:GridPanel>
</ext:FitLayout>
</div>
</Body>
</ext:Panel>
i have gridpanel in my page and i want to expand it (somthing like height=100%) but i can't find any property that can use
this is my code
this is my code :
<ext:Panel runat="server" ID="pnlEest">
<Body>
<div>
<ext:FitLayout ID="FitLayout1" runat="server">
<ext:GridPanel ID="GridPanel1" runat="server" StoreID="Store1" >
<TopBar>
<ext:Toolbar ID="ToolBar1" runat="server">
<Items>
<ext:Button ID="BtnInsert" runat="server" Text="Insert" IconCls="Button_Add">
<AjaxEvents>
<Click OnEvent="BtnInsert_Click">
<EventMask ShowMask="true" />
</Click>
</AjaxEvents>
</ext:Button>
<ext:Button ID="BtnUpdate" runat="server" Text="Update" IconCls="Button_Add">
<Listeners>
<Click Handler="#{GridPanel1}.reload();" />
</Listeners>
</ext:Button>
<ext:Button ID="BtnDelete" runat="server" Text="Delete" IconCls="Button_Add">
<Listeners>
<Click Handler="#{GridPanel1}.reload();" />
</Listeners>
</ext:Button>
</Items>
</ext:Toolbar>
</TopBar>
<ColumnModel ID="ColumnModel1" runat="server">
<Columns>
<ext:RowNumbererColumn />
<ext:Column ColumnID="IDField" DataIndex="Id" Header="Id" Sortable="true" Width="50"
Hidden="true">
<PrepareCommand Handler="" Args="grid,command,record,row,col,value" FormatHandler="False">
</PrepareCommand>
<PrepareCommands Handler="" Args="grid,commands,record,row,col,value" FormatHandler="False">
</PrepareCommands>
</ext:Column>
<ext:Column DataIndex="LocalName" Header="LocalName" Sortable="true" Width="120">
<PrepareCommand Handler="" Args="grid,command,record,row,col,value" FormatHandler="False">
</PrepareCommand>
<PrepareCommands Handler="" Args="grid,commands,record,row,col,value" FormatHandler="False">
</PrepareCommands>
</ext:Column>
<ext:Column DataIndex="LatinName" Header="LatinName" Sortable="true" Width="120">
<PrepareCommand Handler="" Args="grid,command,record,row,col,value" FormatHandler="False">
</PrepareCommand>
<PrepareCommands Handler="" Args="grid,commands,record,row,col,value" FormatHandler="False">
</PrepareCommands>
</ext:Column>
</Columns>
</ColumnModel>
<SelectionModel>
<ext:RowSelectionModel ID="RowSelectionModel1" runat="server" />
</SelectionModel>
<LoadMask ShowMask="true" />
<BottomBar>
<ext:PagingToolbar Cls="DataGrid_Footer" ID="PagingToolBar1" runat="server" DisplayInfo="True"
DisplayMsg="Documents {0} - {1} OF {2}" PageSize="2" StoreID="Store1" />
</BottomBar>
</ext:GridPanel>
</ext:FitLayout>
</div>
</Body>
</ext:Panel>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用 add
而不是解决了这个问题
i solved this with add
instead of