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
Sunil Wadeyar 4Sunil Wadeyar 4 

Problem with too many selectcheckboxes within apex:column

I have a apex:dataTable in which one column has number of checkboxes. If there are more number of checkboxes trailing checkboxes goes out of the table. 

As I know, setting layout to "pageDirection" renders checkboxes vertically down the page. Is there any way to show checkboxes in multiple lines? 
Best Answer chosen by Sunil Wadeyar 4
Sunil Wadeyar 4Sunil Wadeyar 4
After playing with CSS I found a wonderful solution.

Solution
For the perticular <apex:column> just add style float = left like <apex:column style="float:left">

Thanks if anyone did try to provide solution for this.