You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Mick Knutson <mi...@gmail.com> on 2006/11/22 20:53:42 UTC

can't get t:tabledata to work at all...

I have 2 user objects in a List, then created a ListDataModel out of that
list and tried to display the data in a datatable, but the entire table
looks like this:

<TD colspan="2">
    <t:dataTable id="userList" rows="5"
value="javax.faces.model.ListDataModel@39954" var="user">
    </t:dataTable>
</TD>

Please help me figure out what I am missing...



faces config:
====================================
    <managed-bean>
        <managed-bean-name>userBackingBean</managed-bean-name>
        <managed-bean-class>com.baselogic.tro.user.UserBackingBean
</managed-bean-class>
        <managed-bean-scope>session</managed-bean-scope>
        <managed-property>
            <property-name>userManager</property-name>
            <value>#{userManager}</value>
        </managed-property>
    </managed-bean>


    <navigation-rule>
        <display-name>Admin Utilities</display-name>
        <description>Various Administration functions...</description>
        <from-view-id>/views/admin/index.xhtml</from-view-id>

        <navigation-case>
            <from-outcome>users</from-outcome>
            <to-view-id>/views/admin/users.xhtml</to-view-id>
        </navigation-case>
    </navigation-rule>





users.jsp
=====================================
         <h:form>
            <h:dataTable value="#{userBackingBean.allUsers}" var="user"
               styleClass="customers"
               headerClass="customersHeader" columnClasses="custid,name">
               <h:column>
                  <f:facet name="header">
                     <h:outputText value="username"/>
                  </f:facet>
                  <h:outputText value="#{user.username}"/>
               </h:column>
               <h:column>
                  <f:facet name="header">
                     <h:outputText value="First Name"/>
                  </f:facet>
                  <h:outputText value="#{user.firstName}"/>
               </h:column>
            </h:dataTable>
         </h:form>








here is my UserBackingBean:
======================
    public ListDataModel getAllUsers() {
        log.info("UserBackingBean.getAllUsers()");

        List userList = new ArrayList();

        try {
            userList = userManager.getUsers(new User());

            log.info
("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
            log.info("userList: " + userList.size());
            log.info("userList.toString(): " + userList.toString());
            log.info
("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");

            //outcome = "success";

        } catch (Exception e) {
            //outcome = "failure";
            FacesContext.getCurrentInstance().addMessage(null, new
FacesMessage(e.getMessage()));
            e.printStackTrace();
        }

        return new ListDataModel(userList);
    }


here is my trace showing the 2 users I get back:
========================================
11:42:11,765 INFO  [STDOUT] 11:42:11,765 INFO  [UserBackingBean]
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
11:42:11,765 INFO  [STDOUT] 11:42:11,765 INFO  [UserBackingBean] userList: 2
11:42:11,765 INFO  [STDOUT] 11:42:11,765 INFO  [UserBackingBean]
userList.toString(): [com.baselogic.tro.user.User@1870147
[username=mknutson,password=
password,roles=[],accountExpired=false,accountLocked=false,credentialsExpired=false,enabled=false,confirmPassword=<null>,firstName=Mick,email=mknutson@
baselogic.com,lastName=Knutson,address=2875-F Northtowne
Lane,address2=#374,city=Reno,state=NV,otherState=<null>,postalCode=94110,country=us,lastUpdat
e=2006-11-07 19:44:30.0,creationDate=2006-11-01 18:24:02.0],
com.baselogic.tro.user.User@650e56[username=test1,password=thump,roles=[
com.baselogic.tro
.user.Role$$EnhancerByCGLIB$$8d4b4c7b@12c55fd[name=<null>,description=<null>]],accountExpired=false,accountLocked=false,credentialsExpired=false,enabl
ed=false,confirmPassword=<null>,firstName=Thump,email=thump@thumpradio.com,lastName=User,address=725
Florida Street,address2=#5,city=San Francisco,sta
te=CA,otherState=,postalCode=94110,country=<null>,lastUpdate=2006-11-08
06:47:37.0,creationDate=2006-11-08 06:47:37.0]]
11:42:11,765 INFO  [STDOUT] 11:42:11,765 INFO  [UserBackingBean]
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in via original VariableResolver
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in via original VariableResolver
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in root WebApplicationContext
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Could not resolve variable 'user'
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in root WebApplicationContext
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Could not resolve variable 'user'
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in via original VariableResolver
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in via original VariableResolver
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in root WebApplicationContext
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Could not resolve variable 'user'
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in root WebApplicationContext
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Could not resolve variable 'user'
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in via original VariableResolver
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in via original VariableResolver
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in root WebApplicationContext
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Could not resolve variable 'user'
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in root WebApplicationContext
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Could not resolve variable 'user'
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'messages' in via original VariableResolver

11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'messages' in via original VariableResolver

11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'messages' in via original VariableResolver

11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'messages' in via original VariableResolver

11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in via original VariableResolver
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in via original VariableResolver
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in root WebApplicationContext
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Could not resolve variable 'user'
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in root WebApplicationContext
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Could not resolve variable 'user'
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in via original VariableResolver
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in via original VariableResolver
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in root WebApplicationContext
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Could not resolve variable 'user'
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in root WebApplicationContext
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Could not resolve variable 'user'
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in via original VariableResolver
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in via original VariableResolver
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in root WebApplicationContext
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Could not resolve variable 'user'
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'user' in root WebApplicationContext
11:42:11,765 INFO  [STDOUT] 11:42:11,765 DEBUG [DelegatingVariableResolver]
Could not resolve variable 'user'
11:42:11,781 INFO  [STDOUT] 11:42:11,781 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'traceData' in via original VariableResolve
r
11:42:11,781 INFO  [STDOUT] 11:42:11,781 DEBUG [DelegatingVariableResolver]
Attempting to resolve variable 'traceData' in via original VariableResolve
r
11:42:11,781 INFO  [STDOUT] 11:42:11,781 DEBUG [FacesServlet] service end
11:42:11,781 INFO  [STDOUT] 11:42:11,781 DEBUG [ExceptionTranslationFilter]
Chain processed normally
11:42:11,781 INFO  [STDOUT] 11:42:11,781 DEBUG
[HttpSessionContextIntegrationFilter] SecurityContextHolder set to new
context, as request processing c
ompleted
11:42:11,812 INFO  [STDOUT] 11:42:11,812 DEBUG
[PathBasedFilterInvocationDefinitionMap] Converted URL to lowercase, from:
'/skins/default/prototype/de
fault.css'; to: '/skins/default/prototype/default.css'
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG
[PathBasedFilterInvocationDefinitionMap] Candidate is:
'/skins/default/prototype/default.css'; pattern
is /**; matched=true
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG [DefaultListableBeanFactory]
Returning cached instance of singleton bean 'httpSessionContextIntegration
Filter'
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG [DefaultListableBeanFactory]
Returning cached instance of singleton bean 'securityRequestFilter'
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG [DefaultListableBeanFactory]
Returning cached instance of singleton bean 'exceptionTranslationFilter'
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG [DefaultListableBeanFactory]
Returning cached instance of singleton bean 'filterSecurityInterceptor'
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG [FilterChainProxy]
/skins/default/prototype/default.css at position 1 of 4 in additional filter
chain;
firing Filter: '
org.acegisecurity.context.HttpSessionContextIntegrationFilter@10e1567'
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG
[HttpSessionContextIntegrationFilter] Obtained from ACEGI_SECURITY_CONTEXT a
valid SecurityContext and
set to SecurityContextHolder: '
org.acegisecurity.context.SecurityContextImpl@47d7ce6e: Authentication:
org.acegisecurity.providers.UsernamePasswordAut
henticationToken@47d7ce6e: Username: org.acegisecurity.userdetails.User@0:
Username: mknutson; Password: [PROTECTED]; Enabled: true; AccountNonExpired
: true; credentialsNonExpired: true; AccountNonLocked: true; Granted
Authorities: ROLE_ADMINISTRATOR, ROLE_STAFF, ROLE_USER; Password:
[PROTECTED]; Au
thenticated: true; Details:
org.acegisecurity.ui.WebAuthenticationDetails@1c07a: RemoteIpAddress:
127.0.0.1; SessionId: 2AE3D6F52A3772341C947769AB8AB2
3E; Granted Authorities: ROLE_ADMINISTRATOR, ROLE_STAFF, ROLE_USER'
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG [FilterChainProxy]
/skins/default/prototype/default.css at position 2 of 4 in additional filter
chain;
firing Filter: '
org.acegisecurity.wrapper.SecurityContextHolderAwareRequestFilter@19f3760'
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG [SavedRequestAwareWrapper]
Wrapper not replaced; SavedRequest was: null
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG [FilterChainProxy]
/skins/default/prototype/default.css at position 3 of 4 in additional filter
chain;
firing Filter: 'org.acegisecurity.ui.ExceptionTranslationFilter@1ecb1b2'
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG [FilterChainProxy]
/skins/default/prototype/default.css at position 4 of 4 in additional filter
chain;
firing Filter: '
org.acegisecurity.intercept.web.FilterSecurityInterceptor@862b70'
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG
[PathBasedFilterInvocationDefinitionMap] Converted URL to lowercase, from:
'/skins/default/prototype/de
fault.css'; to: '/skins/default/prototype/default.css'
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG
[PathBasedFilterInvocationDefinitionMap] Candidate is:
'/skins/default/prototype/default.css'; pattern
is /views/admin/**; matched=false
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG
[PathBasedFilterInvocationDefinitionMap] Candidate is:
'/skins/default/prototype/default.css'; pattern
is /views/main.*; matched=false
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG
[PathBasedFilterInvocationDefinitionMap] Candidate is:
'/skins/default/prototype/default.css'; pattern
is /views/secure/**; matched=false
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG [AbstractSecurityInterceptor]
Public object - authentication not attempted
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG [XmlWebApplicationContext]
Publishing event in context [Root WebApplicationContext]: org.acegisecurity.
event.authorization.PublicInvocationEvent[source=FilterInvocation: URL:
/skins/default/prototype/default.css]
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG [FilterChainProxy]
/skins/default/prototype/default.css reached end of additional filter chain;
proceed
ing with original chain
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG [ExceptionTranslationFilter]
Chain processed normally
11:42:11,921 INFO  [STDOUT] 11:42:11,921 DEBUG
[HttpSessionContextIntegrationFilter] SecurityContextHolder set to new
context, as request processing c
ompleted
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG
[PathBasedFilterInvocationDefinitionMap] Converted URL to lowercase, from:
'/skins/default/prototype/ja
vascripts/prototype.js'; to:
'/skins/default/prototype/javascripts/prototype.js'
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG
[PathBasedFilterInvocationDefinitionMap] Candidate is:
'/skins/default/prototype/javascripts/prototype.
js'; pattern is /**; matched=true
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG [DefaultListableBeanFactory]
Returning cached instance of singleton bean 'httpSessionContextIntegration
Filter'
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG [DefaultListableBeanFactory]
Returning cached instance of singleton bean 'securityRequestFilter'
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG [DefaultListableBeanFactory]
Returning cached instance of singleton bean 'exceptionTranslationFilter'
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG [DefaultListableBeanFactory]
Returning cached instance of singleton bean 'filterSecurityInterceptor'
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG [FilterChainProxy]
/skins/default/prototype/javascripts/prototype.js at position 1 of 4 in
additional f
ilter chain; firing Filter: '
org.acegisecurity.context.HttpSessionContextIntegrationFilter@10e1567'
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG
[HttpSessionContextIntegrationFilter] Obtained from ACEGI_SECURITY_CONTEXT a
valid SecurityContext and
set to SecurityContextHolder: '
org.acegisecurity.context.SecurityContextImpl@47d7ce6e: Authentication:
org.acegisecurity.providers.UsernamePasswordAut
henticationToken@47d7ce6e: Username: org.acegisecurity.userdetails.User@0:
Username: mknutson; Password: [PROTECTED]; Enabled: true; AccountNonExpired
: true; credentialsNonExpired: true; AccountNonLocked: true; Granted
Authorities: ROLE_ADMINISTRATOR, ROLE_STAFF, ROLE_USER; Password:
[PROTECTED]; Au
thenticated: true; Details:
org.acegisecurity.ui.WebAuthenticationDetails@1c07a: RemoteIpAddress:
127.0.0.1; SessionId: 2AE3D6F52A3772341C947769AB8AB2
3E; Granted Authorities: ROLE_ADMINISTRATOR, ROLE_STAFF, ROLE_USER'
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG [FilterChainProxy]
/skins/default/prototype/javascripts/prototype.js at position 2 of 4 in
additional f
ilter chain; firing Filter: '
org.acegisecurity.wrapper.SecurityContextHolderAwareRequestFilter@19f3760'
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG [SavedRequestAwareWrapper]
Wrapper not replaced; SavedRequest was: null
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG [FilterChainProxy]
/skins/default/prototype/javascripts/prototype.js at position 3 of 4 in
additional f
ilter chain; firing Filter: '
org.acegisecurity.ui.ExceptionTranslationFilter@1ecb1b2'
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG [FilterChainProxy]
/skins/default/prototype/javascripts/prototype.js at position 4 of 4 in
additional f
ilter chain; firing Filter: '
org.acegisecurity.intercept.web.FilterSecurityInterceptor@862b70'
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG
[PathBasedFilterInvocationDefinitionMap] Converted URL to lowercase, from:
'/skins/default/prototype/ja
vascripts/prototype.js'; to:
'/skins/default/prototype/javascripts/prototype.js'
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG
[PathBasedFilterInvocationDefinitionMap] Candidate is:
'/skins/default/prototype/javascripts/prototype.
js'; pattern is /views/admin/**; matched=false
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG
[PathBasedFilterInvocationDefinitionMap] Candidate is:
'/skins/default/prototype/javascripts/prototype.
js'; pattern is /views/main.*; matched=false
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG
[PathBasedFilterInvocationDefinitionMap] Candidate is:
'/skins/default/prototype/javascripts/prototype.
js'; pattern is /views/secure/**; matched=false
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG [AbstractSecurityInterceptor]
Public object - authentication not attempted
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG [XmlWebApplicationContext]
Publishing event in context [Root WebApplicationContext]: org.acegisecurity.
event.authorization.PublicInvocationEvent[source=FilterInvocation: URL:
/skins/default/prototype/javascripts/prototype.js]
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG [FilterChainProxy]
/skins/default/prototype/javascripts/prototype.js reached end of additional
filter c
hain; proceeding with original chain
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG [ExceptionTranslationFilter]
Chain processed normally
11:42:11,953 INFO  [STDOUT] 11:42:11,953 DEBUG
[HttpSessionContextIntegrationFilter] SecurityContextHolder set to new
context, as request processing c
ompleted
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG
[PathBasedFilterInvocationDefinitionMap] Converted URL to lowercase, from:
'/skins/default/prototype/ja
vascripts/window.js'; to: '/skins/default/prototype/javascripts/window.js'
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG
[PathBasedFilterInvocationDefinitionMap] Candidate is:
'/skins/default/prototype/javascripts/window.js'
; pattern is /**; matched=true
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG [DefaultListableBeanFactory]
Returning cached instance of singleton bean 'httpSessionContextIntegration
Filter'
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG [DefaultListableBeanFactory]
Returning cached instance of singleton bean 'securityRequestFilter'
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG [DefaultListableBeanFactory]
Returning cached instance of singleton bean 'exceptionTranslationFilter'
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG [DefaultListableBeanFactory]
Returning cached instance of singleton bean 'filterSecurityInterceptor'
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG [FilterChainProxy]
/skins/default/prototype/javascripts/window.js at position 1 of 4 in
additional filt
er chain; firing Filter: '
org.acegisecurity.context.HttpSessionContextIntegrationFilter@10e1567'
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG
[HttpSessionContextIntegrationFilter] Obtained from ACEGI_SECURITY_CONTEXT a
valid SecurityContext and
set to SecurityContextHolder: '
org.acegisecurity.context.SecurityContextImpl@47d7ce6e: Authentication:
org.acegisecurity.providers.UsernamePasswordAut
henticationToken@47d7ce6e: Username: org.acegisecurity.userdetails.User@0:
Username: mknutson; Password: [PROTECTED]; Enabled: true; AccountNonExpired
: true; credentialsNonExpired: true; AccountNonLocked: true; Granted
Authorities: ROLE_ADMINISTRATOR, ROLE_STAFF, ROLE_USER; Password:
[PROTECTED]; Au
thenticated: true; Details:
org.acegisecurity.ui.WebAuthenticationDetails@1c07a: RemoteIpAddress:
127.0.0.1; SessionId: 2AE3D6F52A3772341C947769AB8AB2
3E; Granted Authorities: ROLE_ADMINISTRATOR, ROLE_STAFF, ROLE_USER'
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG [FilterChainProxy]
/skins/default/prototype/javascripts/window.js at position 2 of 4 in
additional filt
er chain; firing Filter: '
org.acegisecurity.wrapper.SecurityContextHolderAwareRequestFilter@19f3760'
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG [SavedRequestAwareWrapper]
Wrapper not replaced; SavedRequest was: null
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG [FilterChainProxy]
/skins/default/prototype/javascripts/window.js at position 3 of 4 in
additional filt
er chain; firing Filter: '
org.acegisecurity.ui.ExceptionTranslationFilter@1ecb1b2'
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG [FilterChainProxy]
/skins/default/prototype/javascripts/window.js at position 4 of 4 in
additional filt
er chain; firing Filter: '
org.acegisecurity.intercept.web.FilterSecurityInterceptor@862b70'
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG
[PathBasedFilterInvocationDefinitionMap] Converted URL to lowercase, from:
'/skins/default/prototype/ja
vascripts/window.js'; to: '/skins/default/prototype/javascripts/window.js'
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG
[PathBasedFilterInvocationDefinitionMap] Candidate is:
'/skins/default/prototype/javascripts/window.js'
; pattern is /views/admin/**; matched=false
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG
[PathBasedFilterInvocationDefinitionMap] Candidate is:
'/skins/default/prototype/javascripts/window.js'
; pattern is /views/main.*; matched=false
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG
[PathBasedFilterInvocationDefinitionMap] Candidate is:
'/skins/default/prototype/javascripts/window.js'
; pattern is /views/secure/**; matched=false
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG [AbstractSecurityInterceptor]
Public object - authentication not attempted
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG [XmlWebApplicationContext]
Publishing event in context [Root WebApplicationContext]: org.acegisecurity.
event.authorization.PublicInvocationEvent[source=FilterInvocation: URL:
/skins/default/prototype/javascripts/window.js]
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG [FilterChainProxy]
/skins/default/prototype/javascripts/window.js reached end of additional
filter chai
n; proceeding with original chain
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG [ExceptionTranslationFilter]
Chain processed normally
11:42:11,968 INFO  [STDOUT] 11:42:11,968 DEBUG
[HttpSessionContextIntegrationFilter] SecurityContextHolder set to new
context, as request processing c
ompleted
11:42:12,390 DEBUG [IdleRemover] run: IdleRemover notifying pools, interval:
450000





-- 

Thanks

DJ MICK
http://www.djmick.com
http://www.myspace.com/mickknutson

Re: Changing/Setting the icon for

Posted by Jurgen Lust <Ju...@gmail.com>.
Certainly: just create a custom css theme, setting the "cursor: pointer"
property on the desired areas.

You can create a custom theme by copying the first part of the
tomahawk/core/src/main/resources/org/apache/myfaces/custom/schedule/resource/css/schedule.css
file, and replacing the word 'default' with for example 'mytheme'. Then
in the t:schedule tag, just set the theme property to 'mytheme' (don't
forget to import the css file in your JSF page of course)

Jurgen

Op woensdag 22-11-2006 om 14:43 uur [tijdzone -0600], schreef Stephen
Osella:
> I would like to have the hand (finger) icon to be showing when over
> the body of the schedule, not just an entry.  Is there a way to set
> this for <t:schedule>?
>  
-- 
____________________________________________________
Jurgen Lust
email: jlust@apache.org
blog: http://jroller.com/page/jurgenlust
____________________________________________________


Changing/Setting the icon for

Posted by Stephen Osella <so...@austin.rr.com>.
I would like to have the hand (finger) icon to be showing when over the body of the schedule, not just an entry.  Is there a way to set this for <t:schedule>?

Re: help : t:dataTable with t:dataScroller

Posted by Adrian Mitev <ad...@googlemail.com>.
Please look at here:
http://wiki.apache.org/myfaces/ManagingDataScrollerPage?highlight=%28datascroller%29

2006/11/23, Mr Arvind Pandey <ar...@yahoo.co.in>:
>
> Hi all,
>
>     I am using datatable with dataScroller . tables
> contains 100 rows. At a time I am showing 10 rows on a
> page. on second page of dataTable it shows 11th to
> 20th rows. Now Onclick of row I am showing the details
> of the row below the table on the same page. To show
> the details I am refreshing the page.
>   Suppose i click on 15th row then 15th row info will
> be displayed below the table but dataTable shows the
> 1st to 10th rows.......instead of 11th to 20th rows.
>
>    Pls help,,,I in critical condition...
> Thanks and regards...
> Arvind
>
>
>
> __________________________________________________________
> Yahoo! India Answers: Share what you know. Learn something new
> http://in.answers.yahoo.com/
>

help : t:dataTable with t:dataScroller

Posted by Mr Arvind Pandey <ar...@yahoo.co.in>.
Hi all,

    I am using datatable with dataScroller . tables
contains 100 rows. At a time I am showing 10 rows on a
page. on second page of dataTable it shows 11th to
20th rows. Now Onclick of row I am showing the details
of the row below the table on the same page. To show
the details I am refreshing the page.
  Suppose i click on 15th row then 15th row info will
be displayed below the table but dataTable shows the
1st to 10th rows.......instead of 11th to 20th rows.

   Pls help,,,I in critical condition...
Thanks and regards...
Arvind


		
__________________________________________________________
Yahoo! India Answers: Share what you know. Learn something new
http://in.answers.yahoo.com/