• dkclx
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 4
    Replies

Is there a way to style/control the field width on the input box for inlineEditSupport?  Right now it's defaulting to 149px which is too narrow for the particular field when you double-click to edit it.  I can control the width of the outputfield just not once you double-click to do inlineEdit.

 

<apex:outputField style="width:500px;" value="{!quoteline.Product_Description__c}">
     <apex:inlineEditSupport showOnEdit="saveButton, cancelButton"
	hideOnEdit="editButton" event="ondblclick" resetFunction="resetInlineEdit"/>
</apex:outputField>

 

Have a Rich Text Field that I have set-up using InlineEditing on my VF Page.  However, when you mouse over it, the area that gets highlighted with the pencil is so narrow in height users can't tell that they have an ability to click and edit the field.  Any other field type works fine.  How do I increase the height of the highlighted area?

 

Sample code for this field is as follows:

<apex:outputField value="{!quote.Quote_Notes__c}">
<apex:inlineEditSupport showOnEdit="saveButton, cancelButton" hideOnEdit="editButton" event="ondblclick" resetFunction="resetInlineEdit"/>
</apex:outputField>

 

trying to figure out the related list name for the S2S connections table to be included with an <apex:relatedlist> tag.  Anyone know what it is or if it can be added to a VF page?