Package org.apache.ecs.xhtml

Examples of org.apache.ecs.xhtml.a


                PrintDataElement pde = (PrintDataElement) obj;
                String value = pde.getValueDisplay(language)//  formatted
                if (pde.getColumnName().endsWith("_ID") && extension != null)
                {
                  //link for column
                  a href = new a("javascript:void(0)");                 
                  href.setID(pde.getColumnName() + "_" + row + "_a");                 
                  td.addElement(href);
                  href.addElement(Util.maskHTML(value));
                  if (cssPrefix != null)
                    href.setClass(cssPrefix + "-href");
                 
                  extension.extendIDColumn(row, td, href, pde);
                                                     
                }
                else
View Full Code Here

TOP

Related Classes of org.apache.ecs.xhtml.a

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.