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
Tan JTan J 

Is DML operation possible via js remoting on a VF page with readonly attribute?

I have a VF page with readonly attribute set to true. As per documentation, action methods called from this page cannot perform DML operation. However, is DML operation possible if I call a method with @RemoteAction On click of a button on this page? I am able to check/select few records from the table on my VF page and update some field values for selected records by calling @remoteAction method via js remote call on click of a button.