jqgrid ellipsis
问题 In jqGrid, is there a native way to show "..." at the end of a column if it's text did not fit and was truncated? I see that there is a ui-ellipsis class but I'm confused as to if it's automatically added if the text is truncated and if it goes away automatically once the column is resized? 回答1: You can solve the problem using the following CSS <style type="text/css"> .ui-jqgrid tr.jqgrow td { text-overflow: ellipsis;-o-text-overflow: ellipsis; } </style> In the case you will have the results