Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if (null != mainViewObject && null != getMainViewObject()) {
- Key currentRowKey = null;
- if (null != getMainViewObject().getCurrentRow())
- currentRowKey = getMainViewObject().getCurrentRow().getKey();
- log.debug("currentRowKey:" + currentRowKey);
- refreshPeopleList();
- log.debug("query executed");
- if (null != currentRowKey) {
- Row[] rows = getMainViewObject().findByKey(currentRowKey, 1);
- if (rows != null && rows.length == 1) {
- getMainViewObject().setCurrentRow(rows[0]);
- log.debug("currentRowKey: " + rows[0]);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement