Form display

which form do we see when we click account -> Extract to FileI would like to change the name of the download button. Just out of inquisitiveness....what is the form which displays the main menu ie home, accounts,passwords,approvals,tasks etc.Yash
[277 byte] By [yash@IDMa] at [2007-11-27 2:10:29]
# 1
anyone?
yash@IDMa at 2007-7-12 2:02:33 > top of Java-index,Web & Directory Servers,Directory Servers...
# 2

Hi,

just change it in "WPMessages.properties" file what ever you want to change it will reflect on the IDM.

like i have change "Download..." button lable to "Download File" in the "WPMessages.properties" file its reflect in idm.

so do one thing copy the message that you want to change in idm and search it in "WPMessages.properties" file and change it as you want.

Thanx

Shant

Shanta at 2007-7-12 2:02:33 > top of Java-index,Web & Directory Servers,Directory Servers...
# 3
You can also try putting the same in samplecustomcatalog.i have not tried it but i think it should work. This way you will make your upgrade less painful.
idmgurua at 2007-7-12 2:02:33 > top of Java-index,Web & Directory Servers,Directory Servers...
# 4
Hi guys, I am not talking about the name of the button, i want to know the idm form which is displayed to us when we click on accounts -> extract to file tab......As i want to add one more button in that form..Yash
yash@IDMa at 2007-7-12 2:02:33 > top of Java-index,Web & Directory Servers,Directory Servers...
# 5

Hi ,

If u need to add a button to the EXTRACT TO FILE page

(account/ extract.jsp) , which in turn calls com.waveset.ui.web.account.ExtractForm. You have to modify this file to add a button in ExtractForm.java file.

U have two options

1. Adding in the extract.jsp

2. Adding in com.waveset.ui.web.account.ExtractForm

Button downloadButton = new Button("Extract", "UI_DOWNLOAD_DOTS_LABEL");

downloadButton.setPostURL("servlet/filedownload");

form.add(downloadButton);

Regards

Jeyanth

jeyanth23a at 2007-7-12 2:02:33 > top of Java-index,Web & Directory Servers,Directory Servers...
# 6
Hi jayanth, That a great piece of information. I would like to know 2 more things1. I would like to pass a string to this jsp from IDM. How do i do it?2. Does Button in the code you mentioned means java.awt.Button or someother button?Yash
yash@IDMa at 2007-7-12 2:02:33 > top of Java-index,Web & Directory Servers,Directory Servers...