-dangjian
谢谢你的回答。
我按照您的方法做了,但还是没能达到效果。下面是我的代码:
.aspx里
<style type="text/css">
.mystyle
{
overflow:hidden;
text-overflow: ellipsis;
}
</style>
.cs里
FarPoint.Web.Spread.ComboBoxCellType cbbox1 = new FarPoint.Web.Spread.ComboBoxCellType();
cbbox1.DataSource = myds;
cbbox1.DataValueField = "value";
cbbox1.DataTextField = "text";
cbbox1.UseValue = true;
cbbox1.CssClass = "mystyle";
fpSpread1.Sheets[0].Cells[0, 1].CellType = cbbox1;
解析出来的HTML对应内容如下:
<td class="mystyle" valign="middle" FpCellType="readonly" UseValue="1" FpEditorID="fpSpread1_ctl05" CellType="ComboBoxCellType" style="font-size:9pt;font-weight:normal;font-style:normal;text-decoration:none;">测试测试测试</td>
麻烦帮忙看一下,谢谢! |