• Sakti
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies
Hi,

I am new to salesforce customization. I am devloping a page, where I need a pop up after clicking on preview button. In my 1st page I have two fields. After filling up the field values, I am clicking on preview button. Now Ia ma able tp open pop up. But not able to pass parameters in the pop up. Here during clicking the button, i am not storing the field values. 

Can anyone help me out how to pass parameter in the pop up without generating the record id.

Many Thanks in Advance.
  • September 11, 2015
  • Like
  • 0
Hi,

I am preparing a Export process by using CLI. I tested in my personal system it is working fine. But in the system of my Organization does not allow me to log in, as it has proxy set up in internet Explorer. So I need to add Proxy section in my process-config.xml file.

The following values I have added:
         <entry key="sfdc.proxyHost" value="xxxx.xxxx.xxxx"/>
         <entry key="sfdc.proxyPort" value="xxxx"/>
         <entry key="sfdc.proxyUsername" value="xxxx"/>
         <entry key="sfdc.proxyPassword" value= "xxxx"/>
         <entry key="sfdc.proxyNTLMDomain" value="xxxx"/>

Here the same set up i used in Apex dataloader User Interface . It is working but in CLI it is not working. Can any one helpp me out what should be the format for these values should be.

Thanks,
Sakti Sahoo
  • November 24, 2014
  • Like
  • 0
Hi,

I am new to salesforce customization. I am devloping a page, where I need a pop up after clicking on preview button. In my 1st page I have two fields. After filling up the field values, I am clicking on preview button. Now Ia ma able tp open pop up. But not able to pass parameters in the pop up. Here during clicking the button, i am not storing the field values. 

Can anyone help me out how to pass parameter in the pop up without generating the record id.

Many Thanks in Advance.
  • September 11, 2015
  • Like
  • 0

Hi:

 

I am using the following in my visualforce page to open a new window but it is opening in the same window, can anyone please tell me how to open a popup window ?

 

    <script type="text/javascript">
    function popupwindow(){
        var newwindow = window.open('/apex/CallReportDataComponentPage','Call Report'); 
        newwindow.focus();
    }
    </script>

<apex:commandButton action="{!InvokeCallReport}" value="Generate Report" onclick="popupwindow"/>