- Timestamp:
- Jun 30, 2005, 11:29:22 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r832 r849 259 259 classpathref="install.compile.classpath" 260 260 debug="true" 261 deprecation="true" 261 262 > 262 263 <compilerarg value="-Xlint:unchecked" /> … … 308 309 classpathref="web.compile.classpath" 309 310 debug="true" 311 deprecation="true" 310 312 > 311 313 <compilerarg value="-Xlint:unchecked" /> … … 329 331 <include name="**/*.jar"/> 330 332 <exclude name="**/jai*.jar" /> 331 <exclude name="**/servlet.jar" /> 333 <exclude name="**/servlet-api.jar" /> 334 <exclude name="**/jsp-api.jar" /> 332 335 </fileset> 333 336 <fileset dir="${lib}/dist"> -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/tab/Tab.java
r440 r849 182 182 if (!(getParent() instanceof TabControl)) throw new JspTagException("Tag <t:tab> must be inside a <t:tabcontrol> tag"); 183 183 tc = (TabControl)getParent(); 184 return EVAL_BODY_ TAG;184 return EVAL_BODY_BUFFERED; 185 185 } 186 186 -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/table/Cell.java
r529 r849 177 177 table = data.getTable(); 178 178 if (!isVisible()) return SKIP_BODY; 179 return table.isColumnVisible(columnId) ? EVAL_BODY_ TAG: SKIP_BODY;179 return table.isColumnVisible(columnId) ? EVAL_BODY_BUFFERED : SKIP_BODY; 180 180 } 181 181
Note: See TracChangeset
for help on using the changeset viewer.