of a full 7 days. There is no parameters controlling this behavior.
After some investigation I found that's because I have defined padding
in my stylesheet for TD:
TD {padding-left:5px;padding-right:5px;}
Generally it's not a good idea to change the general TD style,
especially third-party control will be used. I put the padding in my
own table class then problem solved!
3 comments:
this solve the problem:
.ajax__calendar_container td
{
padding:0px;
}
Thanks that solved it.
Thanks Pedro, your code fixes my problem.
Post a Comment