Getter Setter Visualforce Part-1 | Learn Salesforce Development

Поділитися
Вставка
  • Опубліковано 17 жов 2024

КОМЕНТАРІ • 12

  • @sachinrnayak3420
    @sachinrnayak3420 3 роки тому +3

    Waiting for this video❤️

  • @syedharis7438
    @syedharis7438 2 місяці тому

    What if i want to insert related contact with account

  • @lokeshreddy5671
    @lokeshreddy5671 3 роки тому +1

    @salesforcehulk.
    Applied for cyntexa...When will start selecting process.?

    • @SalesforceHulk
      @SalesforceHulk  3 роки тому +1

      Recruiting team will connect with you soon.

  • @SachinKumar-vt6lk
    @SachinKumar-vt6lk 2 роки тому +1

    how can we add this VF page into notes and attachment as a pdf

  • @chooha
    @chooha 2 роки тому

    can't we make a wrapper and return the whole wrapper in just one getter method?

  • @manimanikanta2230
    @manimanikanta2230 2 роки тому

    How can i add picklist values in drop down list by using custom controller. and Date picker calendar using custom controller( help me Syntax in controller and visual force page)

    • @megheshshenoy
      @megheshshenoy 2 роки тому

      1)Add this in your VF Page custom controller
      public List getCountriesOptions() {
      List countryOptions = new List();
      countryOptions.add(new SelectOption('','-None-'));
      countryOptions.add(new SelectOption('INDIA','India'));
      countryOptions.add(new SelectOption('USA','USA'));
      countryOptions.add(new SelectOption('United Kingdom','UK'));
      countryOptions.add(new SelectOption('Germany','Germany'));
      countryOptions.add(new SelectOption('Ireland','Ireland'));
      return countryOptions;
      }
      -----
      2)For Date Picker you can use a standard one provided by SalesForce
      VF:

  • @rajwaghamode9896
    @rajwaghamode9896 3 роки тому

    Bro make a one.full video on apex programming concepts

  • @mattweisberg3950
    @mattweisberg3950 2 роки тому

    I think ya get set the getset in the instantiation: String accName {get;set;}; No?

    • @megheshshenoy
      @megheshshenoy 2 роки тому +1

      yes by using this you don't have to explicitly write get and set methods.Salesforce does it for you!

  • @rajveersinghrawat3311
    @rajveersinghrawat3311 3 роки тому

    😍