• milliskenny
  • NEWBIE
  • 0 Points
  • Member since 2006

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 3
    Replies
I am trying to implement an inline s-control with SFDC formatting, however I can't find any documentation that states what the "X" should be in CustomXTab when trying to use a custom tab's formatting in the class attribute of an object. Thanks

Message Edited by milliskenny on 10-22-2007 07:28 AM

Is it possible at this point to use the AJAX toolkit in the sandbox?  I've tried simply logging in as follows and it doesn't work... any ideas?

Code:
<script src="https://www.salesforce.com/services/lib/ajax/beta3.3/sforceclient.js" type="text/javascript"></script>

<script type="text/javascript">

   sforceClient.setLoginUrl('https://test.salesforce.com');

   var loginresult = sforceClient.Login("sandbox_username","sandbox_password");

   sforceClient.setUrl(loginresult.serverURL);

   alert(loginresult.sessionID);

</script>
 
 
 
I hope this isn't a stupid question (I new to Salesforce.com): Is it possible to have custom links displayed when editing a contact?
Here's why: I want to implement a multi-select field where the options are generated from a query againast a custom object.
The standard multi-select field takes it's options list from the field definition, so to add or remove options I need to edit the field.
What I want is more data driven than that, so I thought I'd create an  S-Control using AJAX toolkit to perform a query against the DB, and  present a list of checkboxes for the user. The S-Control would update a field (text or text area) using values checked in the form when the user presses a ok button  (all pretty standard stuff I guess).

However, I need a custom link to call the S-Control, and the "custom-links" section of the form is not presented when I edit the contact record.
Am I missing something ???

GOC