I need help for bootstrap table css so When I make column from Jquery In Bootstrap table i get some issue .
My Columns slip down. I dont want to this. I give css In my Column so column seem like this.
Can Anyone Help me ?
JQuery Code
var Tablo=document.getElementById("tablo_icin2");
var tbody=document.getElementById("MyTBody");
json_obj= $.parseJSON(veri);
for(var i in json_obj)
{
var Satir=document.createElement("tr");
var Stun=document.createElement("td");
Stun.appendChild(document.createTextNode(" "));
Satir.appendChild(Stun);
//Yeni Stun Ekliyoruzz
Stun=document.createElement("td");
Stun.classList.add("sorting_1");
Stun.appendChild(document.createTextNode(json_obj[i].KuryeNumarasi ));
Satir.appendChild(Stun);
//Yeni Stun Ekliyoruzz
Stun=document.createElement("td");
Stun.appendChild(document.createTextNode(json_obj[i].TipId ));
Satir.appendChild(Stun);
//Yeni Stun Ekliyoruzz
Stun=document.createElement("td");
Stun.appendChild(document.createTextNode(" " ));
Satir.appendChild(Stun);
//Yeni Stun Ekliyoruzz
//And More Table Rows in down.
Html Code ;
<table id="tablo_icin2" class="table table-bordered table-hover table-striped">
<thead>
<tr>
<th>
<span class="btn btn-default btn-sm checkbox-toggle"><i class="fa fa-square-o"></i></span>
</th>
<th>Kurye Numara</th>
<th>Kurye Tipi</th>
<th>Kurye Resmi</th>
<th>Adı Soyadı</th>
<th>TC Numarası</th>
<th>Cinsiyeti</th>
<th>Doğum Tarihi</th>
<th>Açıklama</th>
<th>İşe Başlama Tarihi</th>
<th>İşten Ayrılma Tarihi</th>
<th>Kan grubu</th>
<th>Boyu</th>
<th>Kilo</th>
<th>Ayakkabı Numara</th>
<th>Prim Grubu</th>
<th>Durumu</th>
<th>Sabit Telefonu</th>
<th>GSM Telefonu</th>
<th>E- mail Adresi</th>
<th>Ev Adresi</th>
<th>Android Kullanıcı Adı</th>
<th>Android Kullanıcı Şifresi</th>
<th>Yakının Adı Soyadı</th>
<th>Tanıdık Telefon 1</th>
<th>Tanıdık Telefon 2</th>
<th>Tanıdık Adres</th>
</tr>
</thead>
<tbody id="MyTBody">
</tbody></table>
You could add a class with whitespace nowrap in these particular cells
.text-nowrap {
white-space: nowrap;
}