This content has been marked as final.
Show 3 replies
-
1. Re: Per window customization even when it is not dashboard
vivek_saini07 Jan 14, 2009 7:01 AM (in response to vivek_saini07)i got it
just change in org.jboss.portal.core.model.portal.command.isDashboard(). Make it return true always. I changed it to following.public boolean isDashboard() { // return dashboard; return true; }
And it reflecting the change i wanted. -
2. Re: Per window customization even when it is not dashboard
vivek_saini07 Jan 14, 2009 7:42 AM (in response to vivek_saini07)sorry that is not a good solution the better way is change org.jboss.portal.core.model.portal.command.action.MoveWindowCommand.execute()
I commented the following conditionif (isDashboard())
And made that block executed always. -
3. Re: Per window customization even when it is not dashboard
vivek_saini07 Jan 14, 2009 8:49 AM (in response to vivek_saini07)pls somebody can tell me more elegant solution. The point is I am not allowed to change source code of JBP. Solution should be pluggable. I can only change XMLs like jboss-service.xml. Can I handle this by making new MBean.