use of org.drools.workbench.screens.scenariosimulation.client.widgets.ScenarioGrid in project drools-wb by kiegroup.
the class CollectionEditorDOMElement method internalFlush.
protected void internalFlush(final String value) {
final int rowIndex = context.getRowIndex();
final int columnIndex = context.getColumnIndex();
((ScenarioGrid) gridWidget).getEventBus().fireEvent(new SetGridCellValueEvent(((ScenarioGrid) gridWidget).getGridWidget(), rowIndex, columnIndex, value));
}
use of org.drools.workbench.screens.scenariosimulation.client.widgets.ScenarioGrid in project drools-wb by kiegroup.
the class ScenarioCellTextAreaDOMElement method internalFlush.
protected void internalFlush(final String value) {
final int rowIndex = context.getRowIndex();
final int columnIndex = context.getColumnIndex();
((ScenarioGrid) gridWidget).getEventBus().fireEvent(new SetGridCellValueEvent(((ScenarioGrid) gridWidget).getGridWidget(), rowIndex, columnIndex, value));
}
Aggregations