css - c# line break in dataTable -


i have gridview filled datatable. columns display in datagrid view have limited display of character css. problem doesn't show enough characters i'd put line break first sentence, i'm using webforms.

the datagridview bind :

string strsql = @"select id, dernieresolution, descriptiondemande, nomcontact, numero, sousrubrique, titredemande                 datatable 1=1"; datatable dtdeskcache = databasecachedigitalhepdeskconnection.sqldatatable(strsql, "dbname");   gvdata.datasource = dtdeskcache; gvdata.databind(); 

and css code hide part of informations :

.hotline-search  #gvdata tr td {     max-width: 100px;     overflow: hidden;     text-overflow: ellipsis;     white-space: nowrap; } 

enter image description here

it looks right now, there's not enough informations, want add rest of sentence don't want inline.

someone have ideas ?


Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -