cancel
Showing results for 
Search instead for 
Did you mean: 

regarding LinktoUrl UI element

Former Member
0 Kudos

Hi all,

i m using LinktoUrl ui element and able to get the new window for the mail with the email address but i am not able to set the subject of the mail with the item titile that i m creating for a Classifieds.

i am setting the property like:-

<b>reference</b>=with context value

<b>target</b>=_Blank

<b>type</b>=navigation

If there is any way then plz help me out.

Regards,

Deepak

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Just if u want to open any new window,set properties lik this its....

Reference = www.gmail.com

it will work......

Former Member
0 Kudos

Hi Deepak

Can you please explain your requirement more clearly. will that SUBJECT is common for all the mails?

Regards

Chaitanya.A

Former Member
0 Kudos

Hi there,

actually i m creating claassified item.

on the preview of that one email link is there if user click this a window for mail need to be open that is opening with correct mail id but i need to set the subject of that mail with the name of the classified created by me.

right know im setting reference property fot LinktoUrl element like:-

<b>milto://a@a.a?subject=Classified</b>

Regards,

Deepak

Former Member
0 Kudos

Hi

i am using this

<b>mailto:india@gmail.com?Subject=hi </b> in reference property

its working fine,as you desired.<b>hi</b> is coming in subject field.

the point is SUBJECT will come in Outlook express[default email editor], but not in a normal browser

Regards

Chaitanya.A

Former Member
0 Kudos

Hi there,

thanx for your response......

i m aslo doing the same thing ---

String mailto="mailto:"wdContext.currentMailElement().getStaffId()"?Subject=hi";

and setting this to the context like--

wdContext.currentContextElement().setMailTo(mailto);

and placing this as Reference value.

steel it is not coming for me into the Outlook may be 7th version..

Regards

Deepak

Former Member
0 Kudos

Hi,

Can you just try this:

String mailto="mailto:"+wdContext.currentMailElement().getStaffId()+"?subject=hi";

wdContext.currentContextElement().setMailTo(mailto);

Regards,

Satyajit.

Former Member
0 Kudos

Hi all.

i had...but problem is that for me for "To" value is setting but for subject cursor is coming and the value which i m passing is not reflecting there and in the status bar also i seeing only mail is not the subject.....

and i m repeating i m using "LinktoUrl" Ui element in Java WebDynpro for .EAR project........

is there any limitation for that UI element..............???

Regards,

Deepak

Former Member
0 Kudos

Can you have a look into the rendered HTML? How does the HTML for the LinkToURL look like?

Armin