Fórum

Chat

thumbnail
Ricardo Vela, modificado 12 Anos atrás.

Chat

Junior Member Postagens: 85 Data de Entrada: 14/04/10 Postagens Recentes
Hi...

is there a way to make chat portlet only show 1 or 2 users (selected by me), in order to make it work as a some king of "online help"???

Regards...
thumbnail
Hitoshi Ozawa, modificado 12 Anos atrás.

RE: Chat

Liferay Legend Postagens: 7942 Data de Entrada: 24/03/10 Postagens Recentes
If you don't mind hard coding, add a logic to webapps\chat-portlet\view.jsp in the for loop to show only your selected users.

<%
for (Object[] buddy : buddies) {
long userId = (Long)buddy[0];
String firstName = (String)buddy[1];
String middleName = (String)buddy[2];
String lastName = (String)buddy[3];
long portraitId = (Long)buddy[4];
boolean awake = (Boolean)buddy[5];

String fullName = ContactConstants.getFullName(firstName, middleName, lastName); <- add if block using fullName to skip display
%>