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
Andy StollmeyerAndy Stollmeyer 

CSS Formatting Issues with <apex:repeat>

I am working with bootstrap inside of a VF page and am having issues with the way the <apex:inilneEditSupport> component renders within a repeat.  Below is the code snippet:
 
<apex:panelgrid columns="2" >
    <apex:outputlabel >Competitor: &nbsp; </apex:outputlabel>
    <apex:outputField value="{!Opportunity.Competitor__c}" >
            <apex:inlineEditSupport changedStyleClass="changed" showOnEdit="saveButton"  />
    </apex:outputField>
</apex:panelgrid>

<apex:panelgrid columns="2" >
    <apex:repeat value="{!$ObjectType.Opportunity.FieldSets.DiscoveryMilestones}" var="f" >
        <apex:outputlabel >{!f.Label}:</apex:outputlabel>
        <apex:outputField value="{!Opportunity[f]}" >
            <apex:inlineEditSupport changedStyleClass="changed" showOnEdit="saveButton"  />
        </apex:outputField>
    </apex:repeat>
</apex:panelgrid>

And below is a screenshot of how it renders:
User-added image

As you can see it throws a line break into the apex:repeat component for some reason.  Has anyone encountered this before?
pconpcon
I think this might be expected behavior from how bootstrap does it's min-width and box model.  Can you pelase provide the generated HTML that creates your screenshot?