• Vishwajeet_Telang
  • NEWBIE
  • 30 Points
  • Member since 2016
  • Persistent Systems Ltd.

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 7
    Replies
<apex:page standardController="Account">
       <apex:pageBlock title="CONTACTS">
            <apex:pageBlockTable value="{!Account.Contacts}" var="con">
                 <apex:column>
                      <apex:facet name="header" >NAME</apex:facet>
                     {!con.Name}
                </apex:column> 
                <apex:column>
                      <apex:facet name="header">PHONE</apex:facet>
                    {!con.Phone}
                </apex:column>
          </apex:pageBlockTable>
        </apex:pageBlock>
</apex:page>
<apex:page standardController="Account">
       <apex:pageBlock title="CONTACTS">
            <apex:pageBlockTable value="{!Account.Contacts}" var="con">
                 <apex:column>
                      <apex:facet name="header" >NAME</apex:facet>
                     {!con.Name}
                </apex:column> 
                <apex:column>
                      <apex:facet name="header">PHONE</apex:facet>
                    {!con.Phone}
                </apex:column>
          </apex:pageBlockTable>
        </apex:pageBlock>
</apex:page>
Hi,

I want to populate apex:datatable with value returned by javascript remoting.

Javascript remoting is returning a list of sobject and i want to populate the apex:datatable with that list.

Its urgent
Hi Friends ,

I atteched screenshots , those are the my requirement . How can i write the code ?

User-added image



Another one :

User-added image
Hello guys!

I'm new here. I did read a lot of articles about git and etc with salesforce but I can't understand how my flow could work.

Here at my enterprise, we have 8 devs that will work with salesforce. In all our projects, we have been using git and each dev has your own dev env in a local machine.

I can't understand how I can archive something like this with salesforce. 

I want to have a dev env for each dev in my enterprise and use git. Cause a guy that is helping us said that sometimes they do something and another person do something in the same code and who saved last that will persist.. so we need to be carefull to not lose our code.

This is bad, really bad.. I need to controle this and see conflicts, merge and commit to avoid losing data.

Any help?
Hi,

I'am getting headaches when reading documentation or examples about two-way-ssl with Salesforce.
Can anybody explain to me, what is the correct procedure?

We have build a web service residing on a third party tool.
Salesforce makes a SOAP callout.
So we have to set the "clientCertName_x" parameter.
Do we have to create a Self Signed Certificate in Salesforce and  set clientCertName_x using this Certificate?
Do we have to upload a certificate from the third party tool in Salesforce and reference this Certificate?

Thanks!
 
  • January 12, 2017
  • Like
  • 0