• hellos_ritz
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies

Hi,

 I want to pass the picklist values from visualforce page to the controller. I am using custom setting object.

The situation is that on the basis of the picklist value selected the depended picklist values need to be displayed. Both the picklists are the fields of the custom settings object. The rest of the logic is working fine when the selected picklist option is hardcoded. The only glitche is that data is not getting passed to the controller

The following is the line of code I am using for this:

 

System.debug('selectedMatCatValue..............'+selectedMatCatValue);
      selectedMatCatValue = system.currentPageReference().getParameters().get('selmatcatvalueref');
Please someone provide help in this case