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; }
it looks right now, there's not enough informations, want add rest of sentence don't want inline.
someone have ideas ?
Comments
Post a Comment