I am working on customizing my Skuid pages and one of the services I use with my business is Box. I am having a hard time trying to determine how I include the iframe in the template or custom component.
The code that is used on the account page in my SF org is :
<apex:page standardController=“Account”>
<apex:stylesheet value="{!$Resource.box__BoxFilesCSS}" />
<apex:iframe src="https://www.box.com/widget_sso/salesforce?token=%7B%22server_url%22%3A%22{!URLENCODE($Api.Partner_Server_URL_120)}%22%2C%22session_id%22%3A%22{!URLENCODE($Api.Session_ID)}%22%7D&salesforce_object_typed_id={!$CurrentPage.parameters.Id}&partner_object_type=Account&partner_object_name={!URLENCODE(account.name)}&partner_object_email=&partner_object_id={!$CurrentPage.parameters.Id}&open_new_window=1&partner_user_id={!URLENCODE($User.Id)}&partner_user_name={!URLENCODE($User.FirstName)}%20{!URLENCODE($User.LastName)}&partner_user_email={!URLENCODE($User.Email)}&email_recipients=&debug=0" width="100%" height="100%" scrolling="true" id="theIframe"/> </apex:page> So I am wondering how I take this code and put it into my skuid component so that my Box information can show up in my different pages. Thanks for the help




