更改SmartGWT listgrid的默认文本

时间:2014-08-23 06:24:46

标签: smartgwt

当没有要显示的记录时,如何更改smartgwt listgrid默认显示的文本。对于例如现在它显示一个文本“没有要显示的项目”。我希望能够更改此文本。改变的另一个原因是我的应用程序有RTL语言,并希望能够以该语言输入文本。

1 个答案:

答案 0 :(得分:2)

来自ListGrid来源:

/**
 * The string to display in the body of a listGrid with an empty data array, if showEmptyMessage is true.
 *
 * @param emptyMessage emptyMessage Default value is "No items to show."
 * @see com.smartgwt.client.widgets.grid.ListGrid#setShowEmptyMessage
 * @see com.smartgwt.client.widgets.grid.ListGrid#setEmptyMessageStyle
 * @see <a href="http://www.smartclient.com/smartgwt/showcase/#grid_appearance_empty_grid" target="examples">Empty grid Example</a>
 */
public void setEmptyMessage(String emptyMessage) {
    setAttribute("emptyMessage", emptyMessage, true);
}