You need to sign in to do that
Don't have an account?
venkatsforce
Popup for individual field
i want to dispaly the popup for the field value when i doubleclick on that particular field value............example plz(Using javascript or Vf)
thanks
=============
VenkatSforce89
Please find the below code to open a VF page on double click of a label
<apex:page standardController="Account">
<script>
function openPage()
{
window.open('/apex/Tst','_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes');
}
</script>
<apex:outputLabel value="DoubleClick" ondblclick="openPage();"></apex:outputLabel>
</apex:page
Subha A
i already done this page popup,i want a particular field popup in Visualforce page......For example:If Account object have AccountName field if i click that name field then it displays the popup with Name field in visualforcepage...
=============
VenkatSforce89