function readOnly(count){ }
Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
Hi all,
Any idea how to align two inputField within a <fieldset> on the same line, without using <table> ?
Found a solution, writing it here in case someone in the future has the same problem:
I had a fieldset (HTML fieldset, not the SFDC notion of fieldset) and inputs were displayed on seperate lines, the solution in CSS is:
.fieldsetClass > * { display:inline-block !important; }
Hey,
How about:
Obviously change to your needs. It depends on what the inputfield is inside aswell (outputPanel, PageBlockSection etc.)
<apex:inputField style="float:left; padding-right:20px;">
Cheers,
Adam
Found a solution, writing it here in case someone in the future has the same problem:
I had a fieldset (HTML fieldset, not the SFDC notion of fieldset) and inputs were displayed on seperate lines, the solution in CSS is:
All Answers
Hey,
How about:
Obviously change to your needs. It depends on what the inputfield is inside aswell (outputPanel, PageBlockSection etc.)
Cheers,
Adam
Found a solution, writing it here in case someone in the future has the same problem:
I had a fieldset (HTML fieldset, not the SFDC notion of fieldset) and inputs were displayed on seperate lines, the solution in CSS is: