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
<div style="over-flow:auto; width:?px; height:?px"> <apex:DataTable> </apex:DataTable> </div>
Thanks for the post. It helped me fix a annoying issue.
I got it working ... until I put it inside an apex:pageBlockSection with an apex:pageBlock
Any clues there?
This is exactly what I'm trying to do too. Because I have a lot of data coming from my database. But the overflow function doesn't work.
Were you able to get it working?
This is what I have so far:
<div style="margin:0px; overflow:auto">
<apex:pageBlock >
<div style="border: 5px solid #461B7E; text-align:left; overflow:auto; padding: 20px; font-family:Helvetica, sans-serif; font-size:10pt; line-height: 1.5em; width:900px;">
<apex:pageBlockTable styleClass="overflow:auto" columnsWidth="10px, 50px" rows="5" value="{!recipes}" var="recipe">
<iframe scrolling="yes">
<apex:column value="{!recipe.Recipe_Name__c}" width="20" />
<apex:column value="{!recipe.Seasonal__c}" width="50" />
<apex:column value="{!recipe.Average_Satisfaction_Rating__c}" width="20" />
</iframe>
</apex:pageBlockTable>
</div>
</apex:pageBlock>
</div>
Thanks! I'll appreciate any answer.
i have the same problem too.. and i've still got no idea.. any help please
I think I found it:
HowToSliderVisualForce
Sorry - this is NOT the solution, but still valuable.
It is easy to add scroll bar to your dataTable but freezing the header of the table might be a bit of challenge.
Thanks for the post. It helped me fix a annoying issue.
I got it working ... until I put it inside an apex:pageBlockSection with an apex:pageBlock
Any clues there?
This is exactly what I'm trying to do too. Because I have a lot of data coming from my database. But the overflow function doesn't work.
Were you able to get it working?
This is what I have so far:
<div style="margin:0px; overflow:auto">
<apex:pageBlock >
<div style="border: 5px solid #461B7E; text-align:left; overflow:auto; padding: 20px; font-family:Helvetica, sans-serif; font-size:10pt; line-height: 1.5em; width:900px;">
<apex:pageBlockTable styleClass="overflow:auto" columnsWidth="10px, 50px" rows="5" value="{!recipes}" var="recipe">
<iframe scrolling="yes">
<apex:column value="{!recipe.Recipe_Name__c}" width="20" />
<apex:column value="{!recipe.Seasonal__c}" width="50" />
<apex:column value="{!recipe.Average_Satisfaction_Rating__c}" width="20" />
</iframe>
</apex:pageBlockTable>
</div>
</apex:pageBlock>
</div>
Thanks! I'll appreciate any answer.
i have the same problem too.. and i've still got no idea.. any help please
I think I found it:
HowToSliderVisualForce
Sorry - this is NOT the solution, but still valuable.