-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
4Questions
-
3Replies
Display contact information in account tab
I am looking to pull a specific, custom, text field from the contact tab into the account tab.
Basically, if the given account has a certain member, display it. Otherwise display nothing.
Can this be accomplished with a formula field or does it have to be done with Apex/VF?
-
- ShiftAaron
- January 21, 2010
- Like
- 0
- Continue reading or reply
CTI & Vonage SIP
-
- ShiftAaron
- January 18, 2010
- Like
- 0
- Continue reading or reply
Resize IFrame?
Is it possible to resize an iframe within a VisualForce page? I have a script that would work, but the apex:iframe does not allow OnLoad()
<script language="JavaScript">
<!--
function autoResize(id){
var newheight;
var newwidth;
if(document.getElementById){
newheight=document.getElementById(id).contentWindow.document .body.scrollHeight;
newwidth=document.getElementById(id).contentWindow.document .body.scrollWidth;
}
document.getElementById(id).height= (newheight) + "px";
document.getElementById(id).width= (newwidth) + "px";
}
//-->
</script>
<IFRAME src=" " width="100%" height="200px" id="iframe1" marginheight="0" frameborder="0" onLoad="autoResize('iframe1');"></iframe>
-
- ShiftAaron
- January 08, 2010
- Like
- 0
- Continue reading or reply
Convert Date Time field to two separate fields
I have 1 field that is a datetime datatype and I need to be able to:
1. Split on the date & time using two separate fields for each
2. Convert the date to long date format -- January 7, 2010
-
- ShiftAaron
- January 08, 2010
- Like
- 0
- Continue reading or reply
Resize IFrame?
Is it possible to resize an iframe within a VisualForce page? I have a script that would work, but the apex:iframe does not allow OnLoad()
<script language="JavaScript">
<!--
function autoResize(id){
var newheight;
var newwidth;
if(document.getElementById){
newheight=document.getElementById(id).contentWindow.document .body.scrollHeight;
newwidth=document.getElementById(id).contentWindow.document .body.scrollWidth;
}
document.getElementById(id).height= (newheight) + "px";
document.getElementById(id).width= (newwidth) + "px";
}
//-->
</script>
<IFRAME src=" " width="100%" height="200px" id="iframe1" marginheight="0" frameborder="0" onLoad="autoResize('iframe1');"></iframe>
- ShiftAaron
- January 08, 2010
- Like
- 0
- Continue reading or reply