37c00523e669b16f1838bb233481645987e77905.svn-base 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <title>����Ϣά��ҳ��</title>
  5. <link rel="stylesheet" href="../../../styles/dhtmlxtabbar.css" type="text/css"></link>
  6. <script type="text/javascript" src="../../../scripts/grid/loading_creating_tabs_content/dhtmlxcommon.js"></script>
  7. <script type="text/javascript" src="../../../scripts/grid/loading_creating_tabs_content/dhtmlxtabbar_start.js"></script>
  8. <script type="text/javascript" src="../../../scripts/grid/loading_creating_tabs_content/dhtmlxtabbar.js"></script>
  9. </head>
  10. <body onLoad="creatTag();">
  11. <div id="a_tabbar" style="position: absolute; width: 99%; height: 99%; left: 1; top: 10;"/>
  12. <script>
  13. Request = {
  14. QueryString : function(item){
  15. var svalue = location.search.match(new RegExp("[\?\&]" + item + "=([^\&]*)(\&?)","i"));
  16. return svalue ? svalue[1] : svalue;
  17. }
  18. }
  19. var listid = Request.QueryString("listid");
  20. function creatTag(){
  21. tabbar=new dhtmlXTabBar("a_tabbar","top");
  22. tabbar.setImagePath("../../../images/xgirdimgs/dhtmlxTabbar/imgs/");
  23. tabbar.loadXMLString("<?xml version=\"1.0\"?><tabbar hrefmode=\"iframe\"><row>"
  24. +"<tab id=\"b1\" width='100px' selected=\"1\" href=\"config/config.jsp?listid="+listid+"\">基本信息</tab>"
  25. +"<tab id=\"b2\" width='100px' href=\"config/table/list_ext.jsp?listid="+listid+"\">查询表定义</tab>"
  26. +"<tab id=\"b3\" width='100px' href=\"config/condition/list.jsp?listid="+listid+"\">查询条件定制</tab>"
  27. +"<tab id=\"b4\" width='100px' href=\"config/urlpram/list.jsp?listid="+listid+"\">Url参数定制</tab>"
  28. +"</row></tabbar>");
  29. tabbar.setSkinColors("white","#FFFACD");
  30. }
  31. </script>
  32. </body>
  33. </html>