//dataGrid的Column的formatScript屬性,定義一個自定義方法,比如wrapText。然後在aspx中定義該方法,如下:
function wrapText(value) {
return "<p style='margin:0px;word-wrap:break-word;white-space:normal'>" + value + "</p>";
}