All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.schema.entities.extended_data_table_attributes.ent Maven / Gradle / Ivy

The newest version!

    
    
        preserveDataModeljava.lang.String
            Indicates whether a state of the whole DataModel should be saved and
            restored.
            Default: false
        
    
    
        forceIdIndexFormulajava.lang.String
            A formula that overrides the defaut row index in the construction of table
            body components.
            Example : #{myRowVar.key}
            Warning, the EL should evaluate to a unique value for each row!
        
    
    
        sortColumnjava.lang.String
            Value reference to a model property that gives the current sort column name
        
    
    
        sortAscendingjava.lang.String
            Value reference to a model property that gives the current sort direction
        
    
    
        preserveSortjava.lang.String
            Indicates whether the state of the sortColumn and sortAscending attribute
            should be saved and restored and written back to a model during an
            update model phase.
            Default: true
        
    
    
        renderedIfEmptyjava.lang.String
            Indicates whether this table should be rendered if the underlying DataModel is
            empty.
            You could as well use rendered="#{not empty bean.list}", but this one causes
            the getList method of your model bean beeing called up to five times per
            request, which is not optimal when the list is backed by a DB table.
            Using renderedIfEmpty="false" solves this problem, because the MyFaces
            extended HtmlDataTable automatically caches the DataModel and calles the
            model getter only once per request.
            Default: true
        
    
    
        rowIndexVarjava.lang.String
            A parameter name, under which the current rowIndex is set in request scope
            similar to the var parameter
        
    
    
        rowCountVarjava.lang.String
            A parameter name, under which the rowCount is set in request scope
            similar to the var parameter
        
    
    
        previousRowDataVarjava.lang.String
            A parameter name, under which the previous RowData Object is set in request scope
            similar to the rowIndexVar and rowCountVar parameters.
            Mind that the value of this request scope attribute is null in the first row
            or when isRowAvailable returns false for the previous row
        
    
    
        rowOnClickjava.lang.String
            Defines a JavaScript onclick event handler for each table row
        
    
    
        rowOnDblClickjava.lang.String
            Defines a JavaScript ondblclick event handler for each table row
        
    
    
        rowOnMouseDownjava.lang.String
            Defines a JavaScript onmpusedown event handler for each table row
        
    
    
        rowOnMouseUpjava.lang.String
            Defines a JavaScript onmouseup event handler for each table row
        
    
    
        rowOnMouseOverjava.lang.String
            Defines a JavaScript onmouseover event handler for each table row
        
    
    
        rowOnMouseMovejava.lang.String
            Defines a JavaScript onmousemove event handler for each table row
        
    
    
        rowOnMouseOutjava.lang.String
            Defines a JavaScript onmouseout event handler for each table row
        
    
    
        rowOnKeyPressjava.lang.String
            Defines a JavaScript onkeypress event handler for each table row
        
    
    
        rowOnKeyDownjava.lang.String
            Defines a JavaScript onkeydown event handler for each table row
        
    
    
        rowOnKeyUpjava.lang.String
            Defines a JavaScript onkeyup event handler for each table row
        
    
    
        rowIdjava.lang.String
            The id to use for <tr> elements that are generated by a table
        
    
    
        rowStyleClassjava.lang.StringCorresponds to the HTML class attribute for the row tr tag
    
    
        rowStylejava.lang.StringCorresponds to the HTML style attribute for the row tr tag
    
    





© 2015 - 2024 Weber Informatics LLC | Privacy Policy