如何在 Eclipse RAP 中将 html 代码添加到 table 列 header
How to add html code to the table column header in Eclipse RAP
我正在尝试将 div 添加到 table 列 header,但这并不影响。
TableColumn column = table.getColumn(columnIndex);
column.setData(RWT.MARKUP_ENABLED, Boolean.TRUE);
column.setAlignment(SWT.CENTER);
column.setWidth(COLUMN_WIDTH);
column.setResizable(Boolean.FALSE);
column.setText("<div></div>");
标记只能应用于 TableItem
。 Table 列目前不支持标记。
如果您认为自己有一个有效的用例,您可能想在这里提出增强请求:https://eclipse.org/rap/bugs/
我正在尝试将 div 添加到 table 列 header,但这并不影响。
TableColumn column = table.getColumn(columnIndex);
column.setData(RWT.MARKUP_ENABLED, Boolean.TRUE);
column.setAlignment(SWT.CENTER);
column.setWidth(COLUMN_WIDTH);
column.setResizable(Boolean.FALSE);
column.setText("<div></div>");
标记只能应用于 TableItem
。 Table 列目前不支持标记。
如果您认为自己有一个有效的用例,您可能想在这里提出增强请求:https://eclipse.org/rap/bugs/