Fórum

How to remove check box in User list

thumbnail
Mani kandan, modificado 12 Anos atrás.

How to remove check box in User list

Expert Postagens: 492 Data de Entrada: 15/09/10 Postagens Recentes
Hi all,

I want to remove the check box in User list which in control panel.

How to do it ? which jsp file i want to modify?
Nisarg Parikh, modificado 12 Anos atrás.

RE: How to remove check box in User list

Expert Postagens: 262 Data de Entrada: 31/12/09 Postagens Recentes
May be you have to look into

taglib/ui/search-iterator/page.jsp

but may be if you modify this page it will affect all pages where search-iterator has been used.
thumbnail
Mani kandan, modificado 12 Anos atrás.

RE: How to remove check box in User list

Expert Postagens: 492 Data de Entrada: 15/09/10 Postagens Recentes
Is there any other way to achieve this?emoticon
thumbnail
Arvind Mishra, modificado 12 Anos atrás.

RE: How to remove check box in User list

Regular Member Postagens: 226 Data de Entrada: 13/02/08 Postagens Recentes
You can use css styling also.

Wrap the checkboxes in a separate css class and make display:none for that.
venka reddy, modificado 12 Anos atrás.

RE: How to remove check box in User list

Regular Member Postagens: 231 Data de Entrada: 23/03/11 Postagens Recentes
Hi
Remove these code

RowChecker checker=new RowChecker(renderResponse);
searchContainer.setRowChecker(checker);
thumbnail
Mani kandan, modificado 12 Anos atrás.

RE: How to remove check box in User list

Expert Postagens: 492 Data de Entrada: 15/09/10 Postagens Recentes
venka reddy:
Hi
Remove these code

RowChecker checker=new RowChecker(renderResponse);
searchContainer.setRowChecker(checker);



Which file has this code? Where to find?
venka reddy, modificado 12 Anos atrás.

RE: How to remove check box in User list

Regular Member Postagens: 231 Data de Entrada: 23/03/11 Postagens Recentes
Hi Mani,

In Path html\portlet\enterprise_admin\view_users.jsp

you can find this code
<liferay-ui:search-container
rowChecker="<%= new RowChecker(renderResponse) %>"
searchContainer="<%= new UserSearch(renderRequest, portletURL) %>"


remove this code (rowChecker="<%= new RowChecker(renderResponse) %>")
thumbnail
Mani kandan, modificado 12 Anos atrás.

RE: How to remove check box in User list

Expert Postagens: 492 Data de Entrada: 15/09/10 Postagens Recentes
Hmm well thanks venkat. its working