source: trunk/www/WEB-INF/tab.tld @ 5904

Last change on this file since 5904 was 5904, checked in by Nicklas Nordborg, 12 years ago

References #1655: GUI improvements

  • Started on tabcontrol re-design. It does look good on popup windows with tabs at bottom, but there are optimizations to be made still.


  • Started working on a few more dialogs in the BASE menu. The look good, but there is more optimizations to be made.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1" ?>
2<!DOCTYPE taglib
3   PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
4   "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
5<!--
6  $Id: tab.tld 5904 2011-12-09 13:52:53Z nicklas $
7
8  Copyright (C) 2005 Nicklas Nordborg
9  Copyright (C) 2006 Jari Häkkinen, Nicklas Nordborg
10
11  This file is part of BASE - BioArray Software Environment.
12  Available at http://base.thep.lu.se/
13
14  BASE is free software; you can redistribute it and/or
15  modify it under the terms of the GNU General Public License
16  as published by the Free Software Foundation; either version 3
17  of the License, or (at your option) any later version.
18
19  BASE is distributed in the hope that it will be useful,
20  but WITHOUT ANY WARRANTY; without even the implied warranty of
21  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  GNU General Public License for more details.
23
24  You should have received a copy of the GNU General Public License
25  along with BASE. If not, see <http://www.gnu.org/licenses/>.
26-->
27<taglib>
28
29  <!-- The version number of this tag library -->
30  <tlibversion>1.0</tlibversion>
31
32  <!-- The JSP specification version required to function -->
33  <jspversion>1.1</jspversion>
34
35  <!-- The short name of this tag library -->
36  <shortname>tab</shortname>
37
38  <uri>tab</uri>
39
40  <!-- General information about this tag library -->
41  <info>
42    A tabcontrol for dialog boxes.
43  </info>
44
45
46  <tag>
47    <name>tabcontrol</name>
48    <tagclass>net.sf.basedb.clients.web.taglib.tab.TabControl</tagclass>
49    <attribute>
50      <name>id</name>
51      <required>true</required>
52      <rtexprvalue>true</rtexprvalue>
53    </attribute>
54    <attribute>
55      <name>clazz</name>
56      <required>false</required>
57      <rtexprvalue>true</rtexprvalue>
58    </attribute>
59    <attribute>
60      <name>subclass</name>
61      <required>false</required>
62      <rtexprvalue>true</rtexprvalue>
63    </attribute>
64    <attribute>
65      <name>style</name>
66      <required>false</required>
67      <rtexprvalue>true</rtexprvalue>
68    </attribute>
69    <attribute>
70      <name>contentstyle</name>
71      <required>false</required>
72      <rtexprvalue>true</rtexprvalue>
73    </attribute>
74    <attribute>
75      <name>active</name>
76      <required>false</required>
77      <rtexprvalue>true</rtexprvalue>
78    </attribute>
79    <attribute>
80      <name>validate</name>
81      <required>false</required>
82      <rtexprvalue>true</rtexprvalue>
83    </attribute>
84    <attribute>
85      <name>switch</name>
86      <required>false</required>
87      <rtexprvalue>true</rtexprvalue>
88    </attribute>
89    <attribute>
90      <name>position</name>
91      <required>false</required>
92      <rtexprvalue>true</rtexprvalue>
93    </attribute>
94    <attribute>
95      <name>remember</name>
96      <required>false</required>
97      <rtexprvalue>true</rtexprvalue>
98    </attribute>
99    <attribute>
100      <name>notabs</name>
101      <required>false</required>
102      <rtexprvalue>true</rtexprvalue>
103    </attribute>
104    <attribute>
105      <name>extensions</name>
106      <required>false</required>
107      <rtexprvalue>true</rtexprvalue>
108    </attribute>
109  </tag>
110
111  <tag>
112    <name>tab</name>
113    <tagclass>net.sf.basedb.clients.web.taglib.tab.Tab</tagclass>
114    <attribute>
115      <name>id</name>
116      <required>true</required>
117      <rtexprvalue>true</rtexprvalue>
118    </attribute>
119    <attribute>
120      <name>clazz</name>
121      <required>false</required>
122      <rtexprvalue>true</rtexprvalue>
123    </attribute>
124    <attribute>
125      <name>style</name>
126      <required>false</required>
127      <rtexprvalue>true</rtexprvalue>
128    </attribute>
129    <attribute>
130      <name>title</name>
131      <required>true</required>
132      <rtexprvalue>true</rtexprvalue>
133    </attribute>
134    <attribute>
135      <name>tooltip</name>
136      <required>false</required>
137      <rtexprvalue>true</rtexprvalue>
138    </attribute>
139    <attribute>
140      <name>validate</name>
141      <required>false</required>
142      <rtexprvalue>true</rtexprvalue>
143    </attribute>
144    <attribute>
145      <name>activate</name>
146      <required>false</required>
147      <rtexprvalue>true</rtexprvalue>
148    </attribute>
149    <attribute>
150      <name>visible</name>
151      <required>false</required>
152      <rtexprvalue>true</rtexprvalue>
153    </attribute>
154    <attribute>
155      <name>helpid</name>
156      <required>false</required>
157      <rtexprvalue>true</rtexprvalue>
158    </attribute>
159  </tag>
160</taglib>
161
Note: See TracBrowser for help on using the repository browser.