主頁(yè) > 知識(shí)庫(kù) > 關(guān)于中g(shù)ridview 字符串截取的方法

關(guān)于中g(shù)ridview 字符串截取的方法

熱門標(biāo)簽:電銷語(yǔ)音自動(dòng)機(jī)器人 凱立德導(dǎo)航官網(wǎng)地圖標(biāo)注 地圖標(biāo)注和認(rèn)領(lǐng) 萊蕪?fù)夂綦婁N機(jī)器人價(jià)格 智能電話營(yíng)銷外呼系統(tǒng) 長(zhǎng)春呼叫中心外呼系統(tǒng)哪家好 鄭州400電話辦理 聯(lián)通 戶外地圖標(biāo)注軟件手機(jī)哪個(gè)好用 五常地圖標(biāo)注

首先在前臺(tái)設(shè)置樣式

復(fù)制代碼 代碼如下:

style  type="text/css"> 
 .listover150 

width:150px; 
text-align:left; 
overflow:hidden; 
text-overflow:ellipsis;//超長(zhǎng)設(shè)置省略號(hào) 
white-space:nowrap; 

/style> 

然后在后臺(tái)GridView中的RowDataBind中進(jìn)行設(shè)置

,附帶幾句可以改變鼠標(biāo)移動(dòng)的樣式設(shè)置

 

復(fù)制代碼 代碼如下:

 //列表加載處理 
   protected void gv_showReport_RowDataBound(object sender, GridViewRowEventArgs e) 
   { 

       if (e.Row.RowType == DataControlRowType.DataRow) 
       { 

           //當(dāng)鼠標(biāo)移開(kāi)時(shí)還原背景色 
           e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c"); 
           e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#F4FBFF'"); 
           e.Row.Attributes.Add("onclick", "this.style.backgroundColor='#e2eaf1'"); 
       } 
       if (e.Row.RowType == DataControlRowType.Header) 
       { 
           e.Row.Attributes.Add("style", "background-image:url('../images/grid3-hrow.gif')"); 
       } 
       if (e.Row.RowType == DataControlRowType.DataRow) 
       { 
           //設(shè)置申請(qǐng)?jiān)蜃址@示長(zhǎng)度 
           string strDISC = e.Row.Cells[4].Text.Trim(); 
           e.Row.Cells[4].Text = "div class=/"listover150/">" + strDISC + "/div>"; 
           e.Row.Cells[4].ToolTip = strDISC;//鼠標(biāo)放上去顯示所有 

           //設(shè)置審批備注字符串截取長(zhǎng)度 
           string str = e.Row.Cells[7].Text.Trim(); 
           e.Row.Cells[7].Text = "div class=/"listover150/">" + str + "/div>"; 
           e.Row.Cells[7].ToolTip = str; 

       } 
   } 
 

標(biāo)簽:衢州 湖州 福州 西藏 岳陽(yáng) 宣城 西寧 紅河

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《關(guān)于中g(shù)ridview 字符串截取的方法》,本文關(guān)鍵詞  關(guān),于中,gridview,字符串,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《關(guān)于中g(shù)ridview 字符串截取的方法》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于關(guān)于中g(shù)ridview 字符串截取的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章