Package com.metadot.book.connectr.client.event

Examples of com.metadot.book.connectr.client.event.ShowFriendPopupEvent


          GWT.log("Friend list clicked");
          if (selectedPropertyButtonRow >= 0) {
            GWT.log("Friend list property button clicked: " + selectedPropertyButtonRow);
            ClickPoint point = display.getClickedPoint(event);
            FriendSummaryDTO friend = friendSummaries.get(selectedPropertyButtonRow);
            eventBus.fireEvent(new ShowFriendPopupEvent(friend, point));
          } else {
            GWT.log("Friend list check box clicked");
            selectedRows = display.getSelectedRows();
            fireFriendListChangeEvent();
          }
View Full Code Here

TOP

Related Classes of com.metadot.book.connectr.client.event.ShowFriendPopupEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.