use of org.opennms.features.poller.remote.gwt.client.events.LocationPanelSelectEvent in project opennms by OpenNMS.
the class PageableLocationList method onItemClickHandler.
/** {@inheritDoc} */
@Override
public void onItemClickHandler(final ClickEvent event) {
final Cell cell = getCellForEvent(event);
LocationInfo location = m_locations.get(cell.getRowIndex() + (getCurrentPageIndex() * getTotalListItemsPerPage()));
fireEvent(new LocationPanelSelectEvent(location.getName()));
}
Aggregations