use of org.entirej.framework.core.data.EJDataRecord in project rap by entirej.
the class EJRWTBarChartRecordBlockRenderer method getRecord.
private EJDataRecord getRecord(String dataLbl, double pointValue, String lbl) {
EJScreenItemController dataItem = null;
List<EJScreenItemController> screenItems = getScreenItems();
for (EJScreenItemController sItem : screenItems) {
String label = sItem.getProperties().getLabel();
if (label.trim().isEmpty()) {
label = sItem.getProperties().getReferencedItemName();
}
if (label.equals(dataLbl)) {
dataItem = sItem;
break;
}
}
if (dataItem != null) {
Collection<EJDataRecord> records = _block.getRecords();
Object lastVal = null;
for (EJDataRecord record : records) {
Object value = record.getValue(dataItem.getName());
if (value == null)
value = lastVal;
if (value instanceof BigDecimal) {
value = ((BigDecimal) value).doubleValue();
}
if (record.getValue(xAxisColumn) != null && getStrValue(record.getValue(xAxisColumn)).equals(lbl) && value != null && value.equals(pointValue)) {
return record;
}
lastVal = value;
}
}
return null;
}
use of org.entirej.framework.core.data.EJDataRecord in project rap by entirej.
the class EJRWTLineChartRecordBlockRenderer method enterInsert.
@Override
public void enterInsert(EJDataRecord record) {
if (_block.getInsertScreenRenderer() == null) {
EJMessage message = new EJMessage("Please define an Insert Screen Renderer for this form before an insert operation can be performed.");
_block.getForm().getMessenger().handleMessage(message);
} else {
EJDataRecord focusedRecord = getFocusedRecord();
if (focusedRecord != null) {
final String pid = _rendererProp.getStringProperty(EJRWTTreeTableBlockDefinitionProperties.PARENT_ITEM);
final String rid = _rendererProp.getStringProperty(EJRWTTreeTableBlockDefinitionProperties.RELATION_ITEM);
record.setValue(rid, focusedRecord.getValue(pid));
}
_block.getInsertScreenRenderer().open(record);
}
}
use of org.entirej.framework.core.data.EJDataRecord in project rap by entirej.
the class EJRWTLineChartRecordBlockRenderer method refresh.
public void refresh(Object input) {
if (_chartView != null && !_chartView.isDisposed()) {
if (xAxisColumn == null && xAxisColumn.isEmpty()) {
return;
}
Map<Object, Map<String, Float>> dataset = new HashMap<Object, Map<String, Float>>();
Map<Object, Map<String, EJCoreVisualAttributeProperties>> datasetVa = new HashMap<Object, Map<String, EJCoreVisualAttributeProperties>>();
Collection<EJDataRecord> records = _block.getRecords();
Collection<EJScreenItemController> screenItems = getScreenItems();
List<Object> labelsIndex = new ArrayList<Object>();
Map<String, Number> lastVal = new HashMap<String, Number>();
for (EJDataRecord ejDataRecord : records) {
Object xobject = ejDataRecord.getValue(xAxisColumn);
if (xobject != null) {
Map<String, Float> set = dataset.get(xobject);
Map<String, EJCoreVisualAttributeProperties> setVa = datasetVa.get(xobject);
if (set == null) {
set = new HashMap<String, Float>();
setVa = new HashMap<String, EJCoreVisualAttributeProperties>();
dataset.put(xobject, set);
datasetVa.put(xobject, setVa);
labelsIndex.add(xobject);
}
for (EJScreenItemController sItem : screenItems) {
if (!sItem.isSpacerItem()) {
Object yvalue = ejDataRecord.getValue(sItem.getName());
Float val = null;
if (yvalue instanceof Number) {
lastVal.put(sItem.getName(), (Number) yvalue);
val = ((Number) yvalue).floatValue();
} else {
Number last = lastVal.get(sItem.getName());
val = last != null ? last.floatValue() : 0f;
}
set.put(sItem.getName(), val);
EJCoreVisualAttributeProperties visualAttribute = ejDataRecord.getItem(sItem.getName()).getVisualAttribute();
if (visualAttribute == null)
visualAttribute = sItem.getItemRenderer().getVisualAttributeProperties();
setVa.put(sItem.getName(), visualAttribute);
}
}
}
}
List<String> xlabel = new ArrayList<String>(labelsIndex.size());
for (Object object : labelsIndex) {
String xvalue;
xvalue = getStrValue(object);
xlabel.add(xvalue);
}
LineChartRowData chartRowData = new LineChartRowData(xlabel.toArray(new String[0]));
for (EJScreenItemController sItem : screenItems) {
if (sItem.isSpacerItem())
continue;
List<Float> row = new ArrayList<Float>();
List<EJCoreVisualAttributeProperties> rowVa = new ArrayList<EJCoreVisualAttributeProperties>();
for (Object object : labelsIndex) {
Map<String, Float> map = dataset.get(object);
Map<String, EJCoreVisualAttributeProperties> mapVa = datasetVa.get(object);
if (map == null || mapVa == null)
continue;
row.add(map.get(sItem.getName()));
rowVa.add(mapVa.get(sItem.getName()));
}
float[] floatArray = new float[row.size()];
ChartStyle[] styleArray = new ChartStyle[row.size()];
int i = 0;
for (Float f : row) {
floatArray[i] = (f != null ? f : 0);
ChartStyle colors = new ChartStyle(220, 220, 220, 0.8f);
EJCoreVisualAttributeProperties attributeProperties = rowVa.get(i);
if (attributeProperties != null) {
if (attributeProperties.getForegroundColor() != null) {
Color color = attributeProperties.getForegroundColor();
colors = new ChartStyle(color.getRed(), color.getGreen(), color.getBlue(), 0.8f);
}
if (attributeProperties.getBackgroundColor() != null) {
Color color = attributeProperties.getBackgroundColor();
colors.setFillColor(new RGB(color.getRed(), color.getGreen(), color.getBlue()));
}
}
styleArray[i] = colors;
i++;
}
/*
* String pointStyle = "circle";
*
* ChartStyle chartStyle;
*/
LineChartRowData.RowInfo info = new LineChartRowData.RowInfo();
String label = sItem.getProperties().getLabel();
if (label.trim().isEmpty()) {
label = sItem.getProperties().getReferencedItemName();
}
ChartStyle colors = new ChartStyle(220, 220, 220, 0.8f);
EJCoreVisualAttributeProperties attributeProperties = sItem.getItemRenderer().getVisualAttributeProperties();
if (attributeProperties != null) {
if (attributeProperties.getForegroundColor() != null) {
Color color = attributeProperties.getForegroundColor();
colors = new ChartStyle(color.getRed(), color.getGreen(), color.getBlue(), 0.8f);
}
if (attributeProperties.getBackgroundColor() != null) {
Color color = attributeProperties.getBackgroundColor();
colors.setFillColor(new RGB(color.getRed(), color.getGreen(), color.getBlue()));
}
}
info.setLabel(label);
info.setChartStyle(colors);
info.setHidden(!sItem.isVisible());
EJCoreMainScreenItemProperties mainScreenItemProperties = (EJCoreMainScreenItemProperties) sItem.getProperties();
info.setFill(mainScreenItemProperties.getBlockRendererRequiredProperties().getBooleanProperty(SHOW_FILL, info.isFill()));
String action = mainScreenItemProperties.getBlockRendererRequiredProperties().getStringProperty("action");
if (action == null || action.trim().isEmpty()) {
action = "select";
}
info.setAction(action);
info.setPointStyle(mainScreenItemProperties.getBlockRendererRequiredProperties().getStringProperty(POINT_STYLE));
info.setShowLine(mainScreenItemProperties.getBlockRendererRequiredProperties().getBooleanProperty(SHOW_LINE, info.isShowLine()));
info.setLineWidth(mainScreenItemProperties.getBlockRendererRequiredProperties().getIntProperty(LINE_WIDTH, info.getLineWidth()));
info.setLineTension(mainScreenItemProperties.getBlockRendererRequiredProperties().getFloatProperty(LINE_TENSION, (float) info.getLineTension()));
info.setSteppedLine(mainScreenItemProperties.getBlockRendererRequiredProperties().getStringProperty(STEPPED_LINE));
chartRowData.addRow(info, floatArray, styleArray);
// chartRowData.addRow(floatArray, colors);
}
_chartView.load(chartRowData, options);
}
}
use of org.entirej.framework.core.data.EJDataRecord in project rap by entirej.
the class EJRWTLineChartRecordBlockRenderer method processAction.
protected void processAction(String method, JsonObject parameters) {
if (parameters.names().contains("data_label") && parameters.names().contains("value")) {
currentRec = null;
EJScreenItemController dataItem = null;
List<EJScreenItemController> screenItems = getScreenItems();
for (EJScreenItemController sItem : screenItems) {
String label = sItem.getProperties().getLabel();
if (label.trim().isEmpty()) {
label = sItem.getProperties().getReferencedItemName();
}
if (label.equals(parameters.get("data_label").asString())) {
dataItem = sItem;
break;
}
}
if (dataItem != null) {
Collection<EJDataRecord> records = _block.getRecords();
Object lastVal = null;
for (EJDataRecord record : records) {
Object value = record.getValue(dataItem.getName());
if (value == null)
value = lastVal;
if (value instanceof BigDecimal) {
value = ((BigDecimal) value).doubleValue();
}
if (record.getValue(xAxisColumn) != null && getStrValue(record.getValue(xAxisColumn)).equals(parameters.get("label").asString()) && value != null && value.equals(parameters.get("value").asDouble())) {
currentRec = record;
break;
}
lastVal = value;
}
}
}
if (currentRec != null) {
_block.newRecordInstance(currentRec);
}
if (!method.equals("select")) {
_block.executeActionCommand(method, EJScreenType.MAIN);
}
}
use of org.entirej.framework.core.data.EJDataRecord in project rap by entirej.
the class EJRWTHtmlTableBlockRenderer method buildGuiComponent.
@Override
public void buildGuiComponent(EJRWTEntireJGridPane blockCanvas) {
if (_browser != null && !_browser.isDisposed()) {
_browser.dispose();
}
EJBlockProperties blockProperties = _block.getProperties();
EJMainScreenProperties mainScreenProperties = blockProperties.getMainScreenProperties();
EJFrameworkExtensionProperties blockRendererProperties = blockProperties.getBlockRendererProperties();
boolean addHeader = true;
if (blockRendererProperties != null) {
addHeader = blockRendererProperties.getBooleanProperty(EJRWTMultiRecordBlockDefinitionProperties.SHOW_HEADING_PROPERTY, true);
EJCoreFrameworkExtensionPropertyList propertyList = blockRendererProperties.getPropertyList(ACTIONS);
if (propertyList != null) {
List<EJFrameworkExtensionPropertyListEntry> allListEntries = propertyList.getAllListEntries();
for (EJFrameworkExtensionPropertyListEntry entry : allListEntries) {
String actionID = entry.getProperty(ACTION_ID);
String actionkey = entry.getProperty(ACTION_KEY);
if (actionID != null && actionkey != null && actionID.trim().length() > 0 && actionkey.trim().length() > 0) {
addActionKeyinfo(actionkey, actionID);
}
}
}
}
GridData gridData = new GridData(GridData.FILL_BOTH);
gridData.widthHint = mainScreenProperties.getWidth();
gridData.heightHint = mainScreenProperties.getHeight();
gridData.horizontalSpan = mainScreenProperties.getHorizontalSpan();
gridData.verticalSpan = mainScreenProperties.getVerticalSpan();
gridData.grabExcessHorizontalSpace = mainScreenProperties.canExpandHorizontally();
gridData.grabExcessVerticalSpace = mainScreenProperties.canExpandVertically();
// if (gridData.grabExcessHorizontalSpace)
// gridData.minimumHeight = mainScreenProperties.getHeight();
// if (gridData.grabExcessVerticalSpace)
// gridData.minimumWidth = mainScreenProperties.getHeight();
blockCanvas.setLayoutData(gridData);
scrollComposite = new EJRWTScrolledComposite(blockCanvas, SWT.V_SCROLL | SWT.H_SCROLL);
scrollComposite.setData(EJ_RWT.CUSTOM_VARIANT, EJ_RWT.CSS_CV_ITEM_GROUP);
scrollComposite.setExpandHorizontal(true);
scrollComposite.setExpandVertical(true);
scrollComposite.setMinSize(mainScreenProperties.getWidth(), mainScreenProperties.getHeight());
boolean filtered = blockRendererProperties.getBooleanProperty(EJRWTTreeBlockDefinitionProperties.FILTER, false);
this.filterKeepOnRefresh = blockRendererProperties.getBooleanProperty(EJRWTTreeBlockDefinitionProperties.FILTER_KEEP_ON_REFRESH, false);
this.textSelection = blockRendererProperties.getBooleanProperty(TEXT_SELECTION, false);
if (mainScreenProperties.getDisplayFrame()) {
String frameTitle = mainScreenProperties.getFrameTitle();
if (frameTitle != null && frameTitle.length() > 0) {
Group group = new Group(scrollComposite, SWT.NONE);
group.setData(EJ_RWT.CUSTOM_VARIANT, EJ_RWT.CSS_CV_ITEM_GROUP);
hookKeyListener(group);
scrollComposite.setContent(group);
group.setLayout(new GridLayout());
scrollComposite.setLayoutData(gridData);
if (frameTitle != null && frameTitle.length() > 0) {
group.setText(frameTitle);
}
if (filtered) {
filterHtml = new EJRWTAbstractFilteredHtml(group, SWT.NONE, textSelection) {
@Override
public void filter(String filter) {
_filteredContentProvider.setFilter(filter);
createHTML();
}
@Override
protected EJRWTHtmlView doCreateTableViewer(Composite parent, int style, boolean textSelection) {
return new EJRWTHtmlView(parent, SWT.NONE, textSelection) {
private static final long serialVersionUID = 1L;
@Override
public void action(String method, JsonObject parameters) {
if ("eselect".equals(method)) {
final Object arg1 = parameters.get("0").asString();
if (arg1 instanceof String) {
EJDataRecord recordAt = getRecordAt(Integer.valueOf((String) arg1));
if (currentRec != recordAt) {
currentRec = recordAt;
if (currentRec != null)
_block.newRecordInstance(currentRec);
}
}
} else if ("eaction".equals(method)) {
final Object arg1 = parameters.get("0").asString();
Object arg2 = parameters.get("1").asString();
if (arg1 instanceof String) {
if (arg2 instanceof String) {
EJDataRecord recordAt = getRecordAt(Integer.valueOf((String) arg2));
if (currentRec != recordAt) {
currentRec = recordAt;
if (currentRec != null)
_block.newRecordInstance(currentRec);
}
}
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
try {
_block.executeActionCommand((String) arg1, EJScreenType.MAIN);
} catch (EJApplicationException exception) {
_block.getFrameworkManager().handleException(exception);
}
}
});
}
} else if ("esort".equals(method)) {
handleSort(parameters);
}
}
};
}
};
_browser = filterHtml.getViewer();
defaultMessage = blockRendererProperties.getStringProperty(EJRWTTextItemRendererDefinitionProperties.PROPERTY_MESSAGE);
if (defaultMessage != null)
filterHtml.getFilterControl().setMessage(defaultMessage);
} else {
_browser = new EJRWTHtmlView(group, SWT.NONE, textSelection) {
private static final long serialVersionUID = 1L;
@Override
public void action(String method, JsonObject parameters) {
if ("eselect".equals(method)) {
final Object arg1 = parameters.get("0").asString();
if (arg1 instanceof String) {
EJDataRecord recordAt = getRecordAt(Integer.valueOf((String) arg1));
if (currentRec != recordAt) {
currentRec = recordAt;
if (currentRec != null)
_block.newRecordInstance(currentRec);
}
}
} else if ("eaction".equals(method)) {
final Object arg1 = parameters.get("0").asString();
Object arg2 = parameters.get("1").asString();
if (arg1 instanceof String) {
if (arg2 instanceof String) {
EJDataRecord recordAt = getRecordAt(Integer.valueOf((String) arg2));
if (currentRec != recordAt) {
currentRec = recordAt;
if (currentRec != null)
_block.newRecordInstance(currentRec);
}
}
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
try {
_block.executeActionCommand((String) arg1, EJScreenType.MAIN);
} catch (EJApplicationException exception) {
_block.getFrameworkManager().handleException(exception);
}
}
});
}
} else if ("esort".equals(method)) {
handleSort(parameters);
}
}
};
}
} else {
if (filtered) {
filterHtml = new EJRWTAbstractFilteredHtml(scrollComposite, SWT.NONE, textSelection) {
@Override
public void filter(String filter) {
_filteredContentProvider.setFilter(filter);
createHTML();
}
@Override
protected EJRWTHtmlView doCreateTableViewer(Composite parent, int style, boolean textSelection) {
return new EJRWTHtmlView(parent, SWT.NONE, textSelection) {
private static final long serialVersionUID = 1L;
@Override
public void action(String method, JsonObject parameters) {
if ("eselect".equals(method)) {
final Object arg1 = parameters.get("0").asString();
if (arg1 instanceof String) {
EJDataRecord recordAt = getRecordAt(Integer.valueOf((String) arg1));
if (currentRec != recordAt) {
currentRec = recordAt;
if (currentRec != null)
_block.newRecordInstance(currentRec);
}
}
} else if ("eaction".equals(method)) {
final Object arg1 = parameters.get("0").asString();
Object arg2 = parameters.get("1").asString();
if (arg1 instanceof String) {
if (arg2 instanceof String) {
EJDataRecord recordAt = getRecordAt(Integer.valueOf((String) arg2));
if (currentRec != recordAt) {
currentRec = recordAt;
if (currentRec != null)
_block.newRecordInstance(currentRec);
}
}
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
try {
_block.executeActionCommand((String) arg1, EJScreenType.MAIN);
} catch (EJApplicationException exception) {
_block.getFrameworkManager().handleException(exception);
}
}
});
}
} else if ("esort".equals(method)) {
handleSort(parameters);
}
}
};
}
};
_browser = filterHtml.getViewer();
defaultMessage = blockRendererProperties.getStringProperty(EJRWTTextItemRendererDefinitionProperties.PROPERTY_MESSAGE);
if (defaultMessage != null)
filterHtml.getFilterControl().setMessage(defaultMessage);
scrollComposite.setContent(filterHtml);
scrollComposite.setLayoutData(gridData);
} else {
filterHtml = null;
_browser = new EJRWTHtmlView(scrollComposite, SWT.BORDER, textSelection) {
private static final long serialVersionUID = 1L;
@Override
public void action(String method, JsonObject parameters) {
if ("eselect".equals(method)) {
final Object arg1 = parameters.get("0").asString();
if (arg1 instanceof String) {
EJDataRecord recordAt = getRecordAt(Integer.valueOf((String) arg1));
if (currentRec != recordAt) {
currentRec = recordAt;
if (currentRec != null)
_block.newRecordInstance(currentRec);
}
}
} else if ("eaction".equals(method)) {
final Object arg1 = parameters.get("0").asString();
Object arg2 = parameters.get("1").asString();
if (arg1 instanceof String) {
if (arg2 instanceof String) {
EJDataRecord recordAt = getRecordAt(Integer.valueOf((String) arg2));
if (currentRec != recordAt) {
currentRec = recordAt;
if (currentRec != null)
_block.newRecordInstance(currentRec);
}
}
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
try {
_block.executeActionCommand((String) arg1, EJScreenType.MAIN);
} catch (EJApplicationException exception) {
_block.getFrameworkManager().handleException(exception);
}
}
});
}
} else if ("esort".equals(method)) {
handleSort(parameters);
}
}
};
scrollComposite.setContent(_browser);
scrollComposite.setLayoutData(gridData);
}
}
} else {
if (filtered) {
filterHtml = new EJRWTAbstractFilteredHtml(scrollComposite, SWT.NONE, textSelection) {
@Override
public void filter(String filter) {
_filteredContentProvider.setFilter(filter);
createHTML();
}
@Override
protected EJRWTHtmlView doCreateTableViewer(Composite parent, int style, boolean textSelection) {
return new EJRWTHtmlView(parent, SWT.NONE, textSelection) {
private static final long serialVersionUID = 1L;
@Override
public void action(String method, JsonObject parameters) {
if ("eselect".equals(method)) {
final Object arg1 = parameters.get("0").asString();
if (arg1 instanceof String) {
EJDataRecord recordAt = getRecordAt(Integer.valueOf((String) arg1));
if (currentRec != recordAt) {
currentRec = recordAt;
if (currentRec != null)
_block.newRecordInstance(currentRec);
}
}
} else if ("eaction".equals(method)) {
final Object arg1 = parameters.get("0").asString();
Object arg2 = parameters.get("1").asString();
if (arg1 instanceof String) {
if (arg2 instanceof String) {
EJDataRecord recordAt = getRecordAt(Integer.valueOf((String) arg2));
if (currentRec != recordAt) {
currentRec = recordAt;
if (currentRec != null)
_block.newRecordInstance(currentRec);
}
}
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
try {
_block.executeActionCommand((String) arg1, EJScreenType.MAIN);
} catch (EJApplicationException exception) {
_block.getFrameworkManager().handleException(exception);
}
}
});
}
} else if ("esort".equals(method)) {
handleSort(parameters);
}
}
};
}
};
_browser = filterHtml.getViewer();
scrollComposite.setContent(filterHtml);
scrollComposite.setLayoutData(gridData);
defaultMessage = blockRendererProperties.getStringProperty(EJRWTTextItemRendererDefinitionProperties.PROPERTY_MESSAGE);
if (defaultMessage != null)
filterHtml.getFilterControl().setMessage(defaultMessage);
} else {
filterHtml = null;
_browser = new EJRWTHtmlView(scrollComposite, SWT.NONE, textSelection) {
private static final long serialVersionUID = 1L;
@Override
public void action(String method, JsonObject parameters) {
if ("eselect".equals(method)) {
final Object arg1 = parameters.get("0").asString();
if (arg1 instanceof String) {
EJDataRecord recordAt = getRecordAt(Integer.valueOf((String) arg1));
if (currentRec != recordAt) {
currentRec = recordAt;
if (currentRec != null)
_block.newRecordInstance(currentRec);
}
}
} else if ("eaction".equals(method)) {
final Object arg1 = parameters.get("0").asString();
Object arg2 = parameters.get("1").asString();
if (arg1 instanceof String) {
if (arg2 instanceof String) {
EJDataRecord recordAt = getRecordAt(Integer.valueOf((String) arg2));
if (currentRec != recordAt) {
currentRec = recordAt;
if (currentRec != null)
_block.newRecordInstance(currentRec);
}
}
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
try {
_block.executeActionCommand((String) arg1, EJScreenType.MAIN);
} catch (EJApplicationException exception) {
_block.getFrameworkManager().handleException(exception);
}
}
});
}
} else if ("esort".equals(method)) {
handleSort(parameters);
}
}
};
scrollComposite.setContent(_browser);
scrollComposite.setLayoutData(gridData);
hookKeyListener(scrollComposite);
}
}
_browser.addFocusListener(new FocusListener() {
private static final long serialVersionUID = 1L;
@Override
public void focusLost(FocusEvent arg0) {
setHasFocus(false);
}
@Override
public void focusGained(FocusEvent arg0) {
setHasFocus(true);
}
});
_browser.addMouseListener(new MouseAdapter() {
private static final long serialVersionUID = 1L;
@Override
public void mouseDown(MouseEvent arg0) {
setHasFocus(true);
}
});
if (_items.isEmpty()) {
Collection<EJItemGroupProperties> allItemGroupProperties = _block.getProperties().getScreenItemGroupContainer(EJScreenType.MAIN).getAllItemGroupProperties();
int cellSpacing = blockProperties.getBlockRendererProperties().getIntProperty(CELL_SPACING_PROPERTY, 0);
int cellPadding = blockProperties.getBlockRendererProperties().getIntProperty(CELL_PADDING_PROPERTY, 0);
String paddingStyle = "";
if (cellPadding > 0) {
String str = String.valueOf(cellPadding);
paddingStyle += String.format("padding: %spx %spx %spx %spx; ", str, str, str, str);
}
StringBuilder header = new StringBuilder("<thead><tr>");
boolean rowSelection = blockProperties.getBlockRendererProperties().getBooleanProperty(ROW_SELECTION, false);
String selectionTD = "<th width=1 ></td>";
if (rowSelection) {
header.append(selectionTD);
}
for (EJItemGroupProperties groupProperties : allItemGroupProperties) {
Collection<EJScreenItemProperties> itemProperties = groupProperties.getAllItemProperties();
for (EJScreenItemProperties screenItemProperties : itemProperties) {
EJCoreMainScreenItemProperties itemProps = (EJCoreMainScreenItemProperties) screenItemProperties;
EJScreenItemController item = _block.getScreenItem(EJScreenType.MAIN, itemProps.getReferencedItemName());
EJManagedItemRendererWrapper renderer = item.getManagedItemRenderer();
if (renderer != null) {
EJRWTAppItemRenderer itemRenderer = (EJRWTAppItemRenderer) renderer.getUnmanagedRenderer();
ColumnLabelProvider labelProvider = itemRenderer.createColumnLabelProvider(itemProps, item);
_items.add(itemProps);
_itemLabelProviders.put(itemProps.getReferencedItemName(), labelProvider);
if (addHeader) {
String styleClass = "default_all";
EJFrameworkExtensionProperties rendererProperties = item.getReferencedItemProperties().getItemRendererProperties();
EJFrameworkExtensionProperties extentionProperties = itemProps.getBlockRendererRequiredProperties();
int width = -1;
if (width == -1) {
width = extentionProperties.getIntProperty(DISPLAY_WIDTH_PROPERTY, 0);
}
header.append("<th ");
if (width > 0) {
Font font = labelProvider.getFont(new Object());
if (font == null)
font = _browser.getFont();
if (font != null) {
float avgCharWidth = RWTUtils.getAvgCharWidth(font);
if (avgCharWidth > 0) {
if (width != 1) {
// add +1 padding
width = ((int) (((width + 1) * avgCharWidth)));
}
}
}
header.append(String.format(" width=%s ", width));
}
header.append(" ");
String alignment = null;
String alignmentProperty = rendererProperties.getStringProperty(PROPERTY_ALIGNMENT);
if (alignmentProperty == null) {
alignmentProperty = rendererProperties.getStringProperty("ALLIGNMENT");
}
alignment = getComponentAlignment(alignmentProperty);
SortInfo sortInfo = null;
if (extentionProperties.getBooleanProperty(ALLOW_ROW_SORTING, true)) {
EJRWTAbstractTableSorter columnSorter = itemRenderer.getColumnSorter(itemProps, item);
if (columnSorter != null) {
_itemSortProviders.put(itemProps.getReferencedItemName(), columnSorter);
sortInfo = new SortInfo();
sortInfo.columnName = itemProps.getReferencedItemName();
_sortContext.put(sortInfo.id, sortInfo);
}
}
String functionDef = null;
if (sortInfo != null) {
functionDef = String.format("em='esort' earg='%s' ", sortInfo.id);
}
String valueVA = blockProperties.getBlockRendererProperties().getStringProperty(HEADER_VA);
if (valueVA != null && valueVA.length() > 0) {
styleClass = valueVA;
valueVA = rendererProperties.getStringProperty(HEADER_VA);
if (valueVA != null && valueVA.length() > 0)
styleClass = valueVA;
}
header.append(String.format(" class=\"%s\" ", styleClass));
if (alignment != null) {
header.append(String.format(" align=\'%s\'", alignment));
}
if (paddingStyle != null) {
header.append(String.format(" style=\'%s\'", paddingStyle));
}
if (itemProps.getHint() != null && !itemProps.getHint().isEmpty()) {
header.append(String.format(" title=\'%s\'", itemProps.getHint()));
}
header.append("> ");
if (itemProps.getLabel() != null) {
if (functionDef != null) {
header.append(String.format("<ejl><u %s class=\"%s, %s\" ", "style=\"line-height: 100%\"", ("default_all".equals(styleClass) ? "default_link_fg" : "default_link"), styleClass));
header.append(functionDef).append(">");
}
header.append(!(extentionProperties.getBooleanProperty(ENABLE_MARKUP, false) || rendererProperties.getBooleanProperty("HTML_FORMAT", false)) ? ignoreHtml(itemProps.getLabel()) : itemProps.getLabel());
if (sortInfo != null)
header.append(String.format("<esh %s/>", sortInfo.id));
}
header.append("</th>");
}
}
}
}
if (addHeader) {
header.append("</tr></thead>");
_headerTag = header.toString();
}
}
hookKeyListener(_browser);
final EJRWTAbstractFilteredHtml _filterHtml = filterHtml;
_filteredContentProvider = new FilteredContentProvider() {
boolean matchItem(EJDataRecord rec) {
if (filter != null && filter.trim().length() > 0) {
for (ColumnLabelProvider filterTextProvider : _itemLabelProviders.values()) {
String text = filterTextProvider.getText(rec);
if (text != null && text.toLowerCase().contains(filter.toLowerCase())) {
return true;
}
}
// if no match try to match Numeric value
try {
double parseDouble = Double.parseDouble(filter);
for (String item : _itemLabelProviders.keySet()) {
Object value = rec.getValue(item);
if (value instanceof Number) {
if (((Number) value).doubleValue() == parseDouble) {
return true;
}
}
}
} catch (NumberFormatException e) {
// ignore
}
}
return false;
}
@Override
public void setFilter(String filter) {
if (getFilter() != null && getFilter().equals(filter))
return;
super.setFilter(filter);
_tableBaseRecords.clear();
if (filter == null || filter.trim().length() == 0) {
if (_filterHtml != null) {
_filterHtml.clearText();
}
_tableBaseRecords.addAll(_block.getBlock().getRecords());
} else {
for (EJDataRecord record : _block.getBlock().getRecords()) {
if (matchItem(record)) {
_tableBaseRecords.add(record);
}
}
}
}
};
createHTML();
}
Aggregations