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
AndyuxAndyux 

inlineEdit - apex/visualforce in mobile

I have a custom object with a custom visualforce page layout. Most of the fields are inline edit (picklist and text). It has been used on the desktop for months. Now management is inquiring about using it on mobile. The touch function doesnt seem to replicate a mouse double click.
1- is there any way to have this function on mobile? is this a javascript rewrite?
2- Is it possible to use one object in lightning while leaving the rest of the org in classic?
Any other thoughts? thanks!
Best Answer chosen by Andyux
Prateek Singh SengarPrateek Singh Sengar
Hi Andy,
As far as i know this is not supported. There was an idea posted but it didnt got enough traction you can still view and vote for it

https://success.salesforce.com/ideaView?id=08730000000gPOmAAM

an alternate solution would be to build custom functionality to mimic inline editing. Something like showing an pencil icon next fields on single click and displaying inline edit when clicking the pencil icon. This would be a big overhead in terms of effort though.

All Answers

Prateek Singh SengarPrateek Singh Sengar
Hi Andy,
As far as i know this is not supported. There was an idea posted but it didnt got enough traction you can still view and vote for it

https://success.salesforce.com/ideaView?id=08730000000gPOmAAM

an alternate solution would be to build custom functionality to mimic inline editing. Something like showing an pencil icon next fields on single click and displaying inline edit when clicking the pencil icon. This would be a big overhead in terms of effort though.
This was selected as the best answer
AndyuxAndyux
Thanks Prateek.