Hi all,
I wanted to add in the table of users in UserBrowser portlet the column
with flag "hasLoddeIn".
But simple insert the line " #entryCell ($!user.hasLoggedIn) " in
user-browser.vm don't provide result.
Why ? This "user" is JetspeedUser and has ".hasLoggedIn" property !?
In UserBrowserAction this "user" appear by the next :
.............................
Iterator users = JetspeedSecurity.getUsers();
List userList = new ArrayList();
...............................
while(users.hasNext())
{
JetspeedUser user = (JetspeedUser)users.next();
userList.add(user);
}
.....................................
Can anybody comment this ?
Thanks in advance, Vladimir