• Devang Rana 6
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 7
    Questions
  • 10
    Replies
Hello every one.
  I m trying to call my VF pages in TabPanel. but i dont have idea how to call that pages in this below tab.

User-added image
This is my VF PAGE CODE
<apex:page controller="TabTest">
 <apex:tabPanel switchType="client" selectedTab="{!ActiveTab}" id="slipTabPanel">
    <apex:tab label="Tab 1" name="tab1" id="tab1">
      Tab1
    </apex:tab>
    <apex:tab label="abb" name="abb" id="abb">
      Tab2 
    </apex:tab>
    <apex:tab label="Tab 3" name="tab3" id="tab3">
      Tab3
    </apex:tab>
 </apex:tabPanel>
</apex:page>
And i want to call this page in Tab

User-added image

please guid me.
Thanks in advance

 
hello every one i m new in API development i m trying to run this CURL
this is my url  
    
curl https://technosoft-dev-ed.my.salesforce.com/services/data/v20.0/ -H "Authorization: Bearer access_token" -H "X-PrettyPrint:1"

And this is my json response.

[ {
  "message" : "Session expired or invalid",
  "errorCode" : "INVALID_SESSION_ID"
} ]


plz help me and guid me what i should i do.
Hello every one 
      i m trying to put all my custome  object data into Select list but not abel to do.
  User-added image

My controller is this
public class DisplayBooks {  

    public String openPresentationOptions { get; set; }

    public String selectedVal { get; set; }       

    public List<SelectOption> getPresentationOptions(){    

         List<selectOption> options = new List<selectOption>();           

        for(DevTech__Book__c book : [SELECT DevTech__bookname__c,DevTech__Price__c FROM DevTech__Book__c]){

            options.add(new SelectOption(book.DevTech__bookname__c,book.DevTech__Price__c));
        }
        return options;
    }    
}


my vf Page

<apex:page controller="DisplayBooks">  
<apex:form>  
    < apex:selectList>   
    < apex:selectOptions value="{!openPresentationOptions}" />  
</apex:selectList>  
</apex:form>  
</apex:page>  
Hello every one. I m new in salesforce i want to create my 1st site. please give me a proper guidence.

thanks in advance.
Hello Every one.
  I need my Company logo insted of Salesforce, when i do login. 
    please give me a path how can i do that.
User-added image
User-added image

If i select 5 from picklest then in page only display 5 records. and if i m select 10 from picklest then it will be display 10 records in page.

please some one give suggeation hoe can i do that?

Thanks in advance.
public class AddmultipleAccountsController {
User-added image            Account account = new Account();
                      public list<Account> listAccount{ get; set; }

                  public AddmultipleAccountsController() 
                         {
                           listAccount=new list<Account>();
                           listAccount.add(Account);
                         }
                                    
                    Public void addAccount()
                          { 
                             Account acc = new Account();
                             listAccount.add(acc);                        
                          }
                          
                    public PageReference saveAccount() 
                    {
                         for(Integer i=0; i<listAccount.size(); i++)
                            {
                            insert listAccount;
                            }
                       return Page.Allaccountssaved;    
                }
}
Hello every one.
  I m trying to call my VF pages in TabPanel. but i dont have idea how to call that pages in this below tab.

User-added image
This is my VF PAGE CODE
<apex:page controller="TabTest">
 <apex:tabPanel switchType="client" selectedTab="{!ActiveTab}" id="slipTabPanel">
    <apex:tab label="Tab 1" name="tab1" id="tab1">
      Tab1
    </apex:tab>
    <apex:tab label="abb" name="abb" id="abb">
      Tab2 
    </apex:tab>
    <apex:tab label="Tab 3" name="tab3" id="tab3">
      Tab3
    </apex:tab>
 </apex:tabPanel>
</apex:page>
And i want to call this page in Tab

User-added image

please guid me.
Thanks in advance

 
hello every one i m new in API development i m trying to run this CURL
this is my url  
    
curl https://technosoft-dev-ed.my.salesforce.com/services/data/v20.0/ -H "Authorization: Bearer access_token" -H "X-PrettyPrint:1"

And this is my json response.

[ {
  "message" : "Session expired or invalid",
  "errorCode" : "INVALID_SESSION_ID"
} ]


plz help me and guid me what i should i do.
Hello every one 
      i m trying to put all my custome  object data into Select list but not abel to do.
  User-added image

My controller is this
public class DisplayBooks {  

    public String openPresentationOptions { get; set; }

    public String selectedVal { get; set; }       

    public List<SelectOption> getPresentationOptions(){    

         List<selectOption> options = new List<selectOption>();           

        for(DevTech__Book__c book : [SELECT DevTech__bookname__c,DevTech__Price__c FROM DevTech__Book__c]){

            options.add(new SelectOption(book.DevTech__bookname__c,book.DevTech__Price__c));
        }
        return options;
    }    
}


my vf Page

<apex:page controller="DisplayBooks">  
<apex:form>  
    < apex:selectList>   
    < apex:selectOptions value="{!openPresentationOptions}" />  
</apex:selectList>  
</apex:form>  
</apex:page>  
Hello every one. I m new in salesforce i want to create my 1st site. please give me a proper guidence.

thanks in advance.
Hello Every one.
  I need my Company logo insted of Salesforce, when i do login. 
    please give me a path how can i do that.
User-added image
public class AddmultipleAccountsController {
User-added image            Account account = new Account();
                      public list<Account> listAccount{ get; set; }

                  public AddmultipleAccountsController() 
                         {
                           listAccount=new list<Account>();
                           listAccount.add(Account);
                         }
                                    
                    Public void addAccount()
                          { 
                             Account acc = new Account();
                             listAccount.add(acc);                        
                          }
                          
                    public PageReference saveAccount() 
                    {
                         for(Integer i=0; i<listAccount.size(); i++)
                            {
                            insert listAccount;
                            }
                       return Page.Allaccountssaved;    
                }
}