FineUI 官方论坛

标题: 表中有工具栏时出错 [打印本页]

作者: yygy    时间: 2014-10-16 23:15
标题: 表中有工具栏时出错
本帖最后由 yygy 于 2014-10-16 23:16 编辑

IE8

  1. <P><f:Grid ID="Grid1" Title="表格" ShowBorder="true" ShowHeader="true"
  2. DataKeyNames="id" runat="server" Width="145px" EnableRowDoubleClickEvent="true"
  3. EnableCheckBoxSelect="true">
  4. <Toolbars>
  5. <f:Toolbar ID="Toolbar1" runat="server" Position="Bottom">
  6. //当Position="Bottom"时不能加载数据,Position="Top"时可以加载数据
  7. </FONT><Items>
  8. <f:Button ID="Button2" Icon="SystemClose" runat="server" Text="确定">
  9. </f:Button>
  10. </Items>
  11. </f:Toolbar>
  12. </Toolbars>
  13. <Columns>
  14. <f:BoundField DataField="部门" Width="160px" HeaderText="部门"></f:BoundField>
  15. </Columns>
  16. </f:Grid>
  17. --------------------------------------------------
  18. if (!IsPostBack)
  19. {
  20. string sql = "select id,部门 from 部门23 order by 部门 asc";
  21. DataSet ds = Class2.GetDs(sql);
  22. Grid1.DataSource = ds;
  23. Grid1.DataBind();
  24. Grid1.SelectedRowIndex = 0;
  25. }</P>
复制代码






欢迎光临 FineUI 官方论坛 (https://fineui.com/bbs/) Powered by Discuz! X3.4