Browse Source

REPORT-45880 使用富文本恢复普通文本后文本格式失效

bugfix/10.0
Yyming 4 years ago
parent
commit
b7051b4470
  1. 15
      designer-realize/src/main/java/com/fr/grid/selection/CellSelection.java

15
designer-realize/src/main/java/com/fr/grid/selection/CellSelection.java

@ -573,11 +573,7 @@ public class CellSelection extends Selection {
for (int i = 0; i < removeElementList.size(); i++) {
CellElement element = removeElementList.get(i);
element.setValue(null);
CellGUIAttr cellGUIAttr = element.getCellGUIAttr();
cellGUIAttr.setShowAsDefault(true);
cellGUIAttr.setShowAsHTML(false);
cellGUIAttr.setShowAsDownload(false);
cellGUIAttr.setShowAsImage(false);
setDefault(element);
}
break;
@ -593,6 +589,15 @@ public class CellSelection extends Selection {
return true;
}
//设置显示内容为default
private void setDefault(CellElement element) {
CellGUIAttr cellGUIAttr = element.getCellGUIAttr();
cellGUIAttr.setShowAsDefault(true);
cellGUIAttr.setShowAsHTML(false);
cellGUIAttr.setShowAsDownload(false);
cellGUIAttr.setShowAsImage(false);
}
@Override
public int[] getSelectedColumns() {

Loading…
Cancel
Save