function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
joojoo 

Action Function is not getting called when i use StandardController.

Hi Guys,
 
      I created a page with a standard controlller on custom object and used an apex class as extensions in the page .
      I am trying to call a method of apex class on load of page by action function(via java script) then instead of calling

      this method, control goes to simply contructor and come back(found by debugs).That means class's method is

      not getting called  by actionFunction .If anyone has deal with this type of problem then please help out.
      
      Any suggestions are appreciated.

joojoo

Even  i have used reRender to action function.

bob_buzzardbob_buzzard

Can you post some of your code?

joojoo

Hi bob,

 

Thanks for the quick reply.

We have just resolved this problem.actually we had used CustomObject_RecordType.Name in the hidden field and wanted to access this recordType name in the apex controller .some how this was the issue ,once we removed that hidden field that action function get called controller method .One more thing here is that this page and controller is fine wokring  with hidden field in system administrator profile user  but not other profile user .we are still investigating the reason because RecordType is accessible to all profile and custom object too.

 

 

Thanks.