Log in

View Full Version : print table data



udaybabu
10-04-2012, 06:38 AM
I have a table with scrollbar if i print the table i am getting half of the table..I want to print whole table data.

following is my css,


<link rel='stylesheet' media="all" type='text/css' href='<?=$this->baseUrl('/scripts/jquery/plugins/weekcalendar/demo.css')?>' />

.wc-scrollable-grid {
overflow: auto;
overflow-x: hidden !important;
overflow-y: auto !important;
position: relative;
background-color: #fff;
width: 100%;
}

help me out
uday

bernie1227
10-04-2012, 07:08 AM
Please use the forum's bbcode tags to make it more readable:

for php code............
<?php /* code goes here */ ?>
for html...............
<!-- markup goes here -->.....
for js/css/other.......
code goes here................

which half of the table are you getting? Left/right, or top/bottom?

udaybabu
10-04-2012, 07:42 AM
Hi Bernie, from top to bottom

bernie1227
10-04-2012, 07:57 AM
Alright you'll need to adjust the height of the div,


height: 100%;

Feel free to adjust the height.