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