1 25 26 package org.objectweb.jonas.webapp.taglib; 27 28 import javax.servlet.jsp.JspException ; 29 30 35 public class JonasGridTag extends GridTag { 36 37 39 44 public int doStartTag() 45 throws JspException { 46 setEvenStyleClass("gridRowEven"); 48 setOddStyleClass("gridRowOdd"); 49 setCellSpacing(0); 50 setCellPadding(2); 51 setBorder(0); 52 setWidth("100%"); 53 return super.doStartTag(); 54 } 55 56 } | Popular Tags |