How to remove "Remember my credential" checkbox from a specific taskspace application?
Could someone help on this
Hi,
You can achieve this by customizing login component in wdk level.Taskspace does not provide such configurations for a particular taskspace application.
Thanks for the reply Imran. We can remove the checkbox from applications as mentioned in the thread.
https://community.emc.com/message/118376#118376
Is there any possibilities to remove it only for a particular child application
I guess this would not be a big deal in wdk level.
For access a particular taskspace application we have to submit a parameter "appname" with the value of the application name.
For example it looks like this,
http://192.168.4.20:8080/taskspace/?appname=my_app_name
So you can customize the login.jsp like this.
<%
if(paramAppname="my_app_name"){
//disable for custom application
}else{
%>
//enable for others
<dmf:checkbox name='<%=Login.CONTROL_SAVE_CREDENTIAL%>' nlsid='MSG_SAVE_OPTION'/>
<%}%>
You have to find the way for extract the appname parameter value in login.jsp.
Hope this helps
Thank you Imran!! It works
353301, award imran points!