tomahawk JSF组件扩展组件(一)

时间:2021-07-10 16:36:07

<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>

一.资源文件的反编译:native2ascii -reverse -encoding gb2313 b.properties a.properties

二.<f:verbatim>组件用于将HTML元素添加到页面中,并使 HTML 元素具有这些组件的行为。直接把HTML元素放在<h:panelGroup>中会发生错误,因为HTML元素并不是JSF的子组件。如果使用 Faces Verbatim 组件,请确保遵循以下准则:

  • IDE 使用的 JSP 页中的代码必须是对称的、格式正确的XML,包括 <f:verbatim> 标记内的标记。例如,在 <f:verbatim> 标记中不能以 <table> 开头,但可以将结束 </table> 标记放在结束 </f:verbatim> 标记后面。
  • <f:verbatim> 组件中不能嵌入其他 JavaServer Faces 组件。

三.HTML编辑器组件:<t:inputHtml id="inputHtml" value="#{dvoFace.map['inputHtml']}" displayValueOnly="#{dvoFace.attribute}"/>

四.Tomahawk 组件中的 forceId 属性能使生成出来的组件ID不像JSF生成出来的form:cid 的形式,forceId="true"使生成出来的ID就是实际编写的ID。

五.<t:validate*/>组件中包含大量已定义的验证:
  
<t:validateEmail />        电子邮件验证
    <t:validateCreditCard />    信用卡验证
    <t:validateRegExpr pattern='/d{5}' />    使用正则表达式验证
    <t:validateEqual for="equal" />        与id="equal"的组件组做相等验证
六.aliasBean和aliasBeanScope(aliasBeanScope组件里可以设置多个aliasBean组件.)组件可以为subview里有组件或页面以别名的方式为当前view传递bean
<t:aliasBean alias="#{ali}" value="#{alibean}">
   <f:subview id="subviewer">
    <t:outputText forceId="true" id="ot" value="#{ali.name}"></t:outputText>
   </f:subview>
  </t:aliasBean>

七.<t:buffer>组件的使用:

<t:buffer into="#{buffer1}">
        <t:div><h:outputText value="Buffer One"/></t:div>
</t:buffer>
<t:buffer into="#{buffer2}">
        <t:div><h:outputText value="Buffer Two"/></t:div>
</t:buffer>
<h:outputText value="#{buffer2}" escape="false"/>
<h:outputText value="#{buffer1}" escape="false"/>
<h:outputText value="#{buffer2}" escape="false"/>
它可以把内容先缓冲起来,再用<h:outputText>组件显现出来,这样就可以把顺序比较后的组件先render出来。
八.在table的排序:
list.sort:

 

tomahawk JSF组件扩展组件(一)< t:dataTable styleClass = " standardTable "
tomahawk JSF组件扩展组件(一)            headerClass
= " standardTable_SortHeader "
tomahawk JSF组件扩展组件(一)            footerClass
= " standardTable_Footer "
tomahawk JSF组件扩展组件(一)            rowClasses
= " standardTable_Row1,standardTable_Row2 "
tomahawk JSF组件扩展组件(一)            var
= " car "
tomahawk JSF组件扩展组件(一)            value
= " #{list.cars} "
tomahawk JSF组件扩展组件(一)            sortColumn
= " #{list.sort} "
tomahawk JSF组件扩展组件(一)            sortAscending
= " #{list.ascending} "
tomahawk JSF组件扩展组件(一)            preserveDataModel
= " true "
tomahawk JSF组件扩展组件(一)            preserveSort
= " true " >
tomahawk JSF组件扩展组件(一)
tomahawk JSF组件扩展组件(一)        
< f:facet name = " header " >
tomahawk JSF组件扩展组件(一)            
< h:outputText value = " (header table) "    />
tomahawk JSF组件扩展组件(一)        
</ f:facet >
tomahawk JSF组件扩展组件(一)        
< f:facet name = " footer " >
tomahawk JSF组件扩展组件(一)            
< h:outputText value = " (footer table) "    />
tomahawk JSF组件扩展组件(一)        
</ f:facet >
tomahawk JSF组件扩展组件(一)
tomahawk JSF组件扩展组件(一)        
< h:column >
tomahawk JSF组件扩展组件(一)            
< f:facet name = " header " >
tomahawk JSF组件扩展组件(一)                
< t:commandSortHeader columnName = " type "  arrow = " true " >
tomahawk JSF组件扩展组件(一)                    
< h:outputText value = " #{example_messages['sort_cartype']} "   />
tomahawk JSF组件扩展组件(一)                
</ t:commandSortHeader >
tomahawk JSF组件扩展组件(一)            
</ f:facet >
tomahawk JSF组件扩展组件(一)            
< h:outputText value = " #{car.type} "   />
tomahawk JSF组件扩展组件(一)            
< f:facet name = " footer " >
tomahawk JSF组件扩展组件(一)                
< h:outputText id = " ftr1 "  value = " (footer col1) "    />
tomahawk JSF组件扩展组件(一)            
</ f:facet >
tomahawk JSF组件扩展组件(一)        
</ h:column >
tomahawk JSF组件扩展组件(一)
tomahawk JSF组件扩展组件(一)        
< h:column >
tomahawk JSF组件扩展组件(一)            
< f:facet name = " header " >
tomahawk JSF组件扩展组件(一)                
< t:commandSortHeader columnName = " color "  arrow = " true " >
tomahawk JSF组件扩展组件(一)                    
< h:outputText value = " #{example_messages['sort_carcolor']} "   />
tomahawk JSF组件扩展组件(一)                
</ t:commandSortHeader >
tomahawk JSF组件扩展组件(一)            
</ f:facet >
tomahawk JSF组件扩展组件(一)            
< h:outputText value = " #{car.color} "   />
tomahawk JSF组件扩展组件(一)            
< f:facet name = " footer " >
tomahawk JSF组件扩展组件(一)                
< h:outputText id = " ftr2 "  value = " (footer col2) "    />
tomahawk JSF组件扩展组件(一)            
</ f:facet >
tomahawk JSF组件扩展组件(一)        
</ h:column >
tomahawk JSF组件扩展组件(一)
tomahawk JSF组件扩展组件(一)
</ t:dataTable >
tomahawk JSF组件扩展组件(一)protected   void  sort( final  String column,  final   boolean  ascending)
tomahawk JSF组件扩展组件(一)tomahawk JSF组件扩展组件(一)
... {
tomahawk JSF组件扩展组件(一)        Comparator comparator 
= new Comparator()
tomahawk JSF组件扩展组件(一)tomahawk JSF组件扩展组件(一)        
...{
tomahawk JSF组件扩展组件(一)            
public int compare(Object o1, Object o2)
tomahawk JSF组件扩展组件(一)tomahawk JSF组件扩展组件(一)            
...{
tomahawk JSF组件扩展组件(一)                SimpleCar c1 
= (SimpleCar)o1;
tomahawk JSF组件扩展组件(一)                SimpleCar c2 
= (SimpleCar)o2;
tomahawk JSF组件扩展组件(一)                
if (column == null)
tomahawk JSF组件扩展组件(一)tomahawk JSF组件扩展组件(一)                
...{
tomahawk JSF组件扩展组件(一)                    
return 0;
tomahawk JSF组件扩展组件(一)                }

tomahawk JSF组件扩展组件(一)                
if (column.equals("type"))
tomahawk JSF组件扩展组件(一)tomahawk JSF组件扩展组件(一)                
...{
tomahawk JSF组件扩展组件(一)                    
return ascending ? c1.getType().compareTo(c2.getType()) : c2.getType().compareTo(c1.getType());
tomahawk JSF组件扩展组件(一)                }

tomahawk JSF组件扩展组件(一)                
else if (column.equals("color"))
tomahawk JSF组件扩展组件(一)tomahawk JSF组件扩展组件(一)                
...{
tomahawk JSF组件扩展组件(一)                    
return ascending ? c1.getColor().compareTo(c2.getColor()) : c2.getColor().compareTo(c1.getColor());
tomahawk JSF组件扩展组件(一)                }

tomahawk JSF组件扩展组件(一)                
else return 0;
tomahawk JSF组件扩展组件(一)            }

tomahawk JSF组件扩展组件(一)        }
;
tomahawk JSF组件扩展组件(一)        Collections.sort(_cars, comparator);
tomahawk JSF组件扩展组件(一)}