You need to sign in to do that
Don't have an account?

Better placement of the "Edit field" box in a Salesforce 1 page
Hello all, using the below HTML-Visualforce code...
<td>
<apex:outputField value="{!account.Last_Status__c}">
<apex:inlineEditSupport event="onclick" rendered="true"/>
</apex:outputField>
</td>
... my outputField is formatted exactly how I want, but I don't have any control on the positioning of the related Edit window once I click on the field I want to modify: result in Salesforce1 Lightning app is a disaster!
Does anyone know how to get control on this window in order to place it in the middle of the screen?
Thanks in advance for your help on this. Cheers from Germany
I answer myself to this one:
apex:inlineEditSupport is far from being optimized for Salesforce1. My workaround consisted in REPLACING inline Edit Support...
...with the following input Field: Hurrah to me! Andreas