volosoft / jtable

A JQuery plugin to create AJAX based CRUD tables.
http://www.jtable.org
1.1k stars 505 forks source link

Vertical Headings #2048

Open myounus96 opened 7 years ago

myounus96 commented 7 years ago

Is there any way to change the orientation of column headings horizontal to vertical in jtable asp webforms...

misterparsons commented 6 years ago

Try some css like

div.jtable-column-header-container {
        height: 4em !important;
    transform: rotate(270deg);
    padding-left: 5px;
    padding-right: : 5px;
    width: 4em ;
    vertical-align: middle;
}

note the top & left & bottom & right also get rotated.
It's probably advisable to put <br> inside your field titles.
You will need to experiment for your table.
myounus96 commented 6 years ago

Ohk Thanx Sir