sourcegrid控件文本过长自动换行
sourcegrid控件文本过长自动换行SourceGrid.Cells.Cellc=newSourceGrid.Cells.Cell("文本很长需要自动换行")...
sourcegrid控件文本过长自动换行
SourceGrid.Cells.Cell c = new SourceGrid.Cells.Cell("文本很长需要自动换行") 展开
SourceGrid.Cells.Cell c = new SourceGrid.Cells.Cell("文本很长需要自动换行") 展开
2个回答
展开全部
Ext的Grid在默认情况下,单元格中的内容超长时会显示成: XXXXX.....,省略号为未显示出来的内容,但在某些时候,我们需要让内容自动换行显示,可参考下面这种方法:
写一个Renderer
view plaincopy to clipboardprint?
//呈现Grid单元格内容时,如果内容超长,则换行显示
var renderAutoNewLine = function(v) {
return "<div style="word-wrap:break-word;word-break: break-all;" mce_style="word-wrap:break-word;word-break: break-all;">" + v + "</div>";
}
为需要自动换行的列指定Renderer:
view plaincopy to clipboardprint?
<ext:Column Sortable="true" Width="120" DataIndex="GovernmentAgency" Css="table-layout" Align="Center"
Header="发证机关">
<Renderer Fn="renderAutoNewLine" />
</ext:Column>
写一个Renderer
view plaincopy to clipboardprint?
//呈现Grid单元格内容时,如果内容超长,则换行显示
var renderAutoNewLine = function(v) {
return "<div style="word-wrap:break-word;word-break: break-all;" mce_style="word-wrap:break-word;word-break: break-all;">" + v + "</div>";
}
为需要自动换行的列指定Renderer:
view plaincopy to clipboardprint?
<ext:Column Sortable="true" Width="120" DataIndex="GovernmentAgency" Css="table-layout" Align="Center"
Header="发证机关">
<Renderer Fn="renderAutoNewLine" />
</ext:Column>
追问
说的是c#的第三方控件Source Grid,有没有方法让文本自动换行啊,默认超过长度只能显示省略号
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询