• CTech
  • NEWBIE
  • 0 Points
  • Member since 2010

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

Hi,

 

I am trying to use the addFields() method of the standardcontroller, But I am unable to use it as it is give a compilation error:

ErrorError: Compile Error: Method not yet implemented at line 6 column 17

 

I got the reference from the Apex developer guide. 

 

 

 

public TestAddFieldsMethod(ApexPages.StandardController controller)
            {
                List<String> fields = new List<String>{'Name'};
                controller.addFields(fields);
            }
Is this method exists or not?
Regards,
Bhawani

 

  • December 21, 2010
  • Like
  • 0

Hi,

 

I am trying to use the addFields() method of the standardcontroller, But I am unable to use it as it is give a compilation error:

ErrorError: Compile Error: Method not yet implemented at line 6 column 17

 

I got the reference from the Apex developer guide. 

 

 

 

public TestAddFieldsMethod(ApexPages.StandardController controller)
            {
                List<String> fields = new List<String>{'Name'};
                controller.addFields(fields);
            }
Is this method exists or not?
Regards,
Bhawani

 

  • December 21, 2010
  • Like
  • 0

I am using related list in VF page, on display under related list grid, first column comes as Action (with Delete/edit or Approve/reject).

Is there any way to hide the Action coulmn.

 

Thanks

Raj