You need to sign in to do that
Don't have an account?

How do you pass an ID to a sControl?
How do you pass an ID to an sControl? I'm trying to figure out a way to know who the calling contact page is when invoking my sControl?
In a typical URL submit you pass the id via the url (ie. www.salesforce.com?id=[id]])...Is there a way to do this? I just need to know who the contact is that called the sControl?
hELP!
In a typical URL submit you pass the id via the url (ie. www.salesforce.com?id=[id]])...Is there a way to do this? I just need to know who the contact is that called the sControl?
hELP!
Now the good news: this is a highly requested feature that has been implemented in the next major salesforce release (feature is already baked in). Basically, you will be able to get the value of query params /or form fields using the new $Request object, e.g.:
var id = '{! $Request.myQueryParam }';
alert('You passed in ' + id);
Message Edited by Doug Chasman on 08-30-2006 08:18 AM
I want to update a checkbox on the record. I have a function in javascript that I want to write. Is there anyway to just update the record?
Maybe I am dumb but the Merge Fields are there for that like {¨!Contact_Id} just check the exact typo and you will get your Contact ID otherwise there is anothe possibility but it is a bit more complicated.
REgards
Thanks,
Ron