cancel
Showing results for 
Search instead for 
Did you mean: 

Avoid opening "Personalize" menu option in new pop-up window

Former Member
0 Kudos

Hi All,

If we have iView with menu in tray ("Refresh","Personalize","Details",etc), is there any way to avoid opening content of "Personalize" page in pop-up window? (i would like to show personalize content in the same iView window (instead of normal content)?

If not, is it possible to add new menu item (e.g. "Edit") that will call doEdit() method of my AbstractPortalComponent?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Dzianis Petrushenka,

In your portalapp.xml

write like this.

<property name="PersonalizationClass" value="com.personalization.MyPersonalization"/>

so under com/personalization create a class MyPersonalization which extends AbstractPortalComponent.

that class should implement methods..

doContent

doEdit

doHandleEditData

In your doEdit method create UI and your logic.

In your doHandleEditData method ,handle the events..

If you have more doubt let me know.

Hope it helps.

Regards,

Karthick Eswaran

Former Member
0 Kudos

Let me explain in more details.

We already have

<property name="PersonalizationClass" value="com.personalization.MyPersonalization"/>

and doContent,doEdit,doHandleEditData methods in our class.

But when we click "Personalize" button from tray menu - new pop-up window opens. And this new window is not good for us - we want to show personalization content in the same place as iView. Without opening any new windows. What do you think, is it possible?