• pravin joshi 25
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 3
    Replies
window.open('/apex/QuoteTemplate?id={!Quote.Id}','_blank','height=600,width=800,Window Position=center');
how to use window position??
<apex:pageblocktable value="{!qitem}" var="q2" border="1" cellpadding="5" >
                    <apex:column >
                        <apex:facet name="header">PO</apex:facet>
                        {!q2.Sr_No__c}
                    </apex:column>
                    <apex:column >
                        <apex:facet name="header">Product Code</apex:facet>
                        {!q2.Product2.ProductCode}
                    </apex:column>
                    <apex:column >
                        <apex:facet name="header">Delivery Time</apex:facet>
                        {!q2.Delivery_Time__c}
                    </apex:column> 
                </apex:pageblocktable> 
https://c.cs58.visual.force.com/apex/QuoteTemplate?id=0Q00l0000004CZg
 
I am using  ANT tool to get data from org .Then i need to deploy to another org.

How can i get Reports and dashboards in to my local folder?
How can i retrieve them from one org?
Also email templates?
Do i need to indivdually get field updates and other?or just workflow rule brings them?

Thank you .
Hello

I have been directed here for some help from Answers 

I am looking for help creating a button that sits in the list view of both Accounts and Contacts that allows me to change owner on both objects simultaneously regardless of the object list view I in. 

I have been advised I need to write a VF page but I'm afraid I am not a developer. 

Can anyone help or who use such a function? Appreciate in advance. 

Marc 

 
How to get the HTML table header in each page in PDF? I've tried with thead {display:table-header-group; } into CSS which is not supporting in HTMLTOPDF.. Please help me out.