Package org.olat.core.gui.components.table

Examples of org.olat.core.gui.components.table.TableEvent


   *      org.olat.core.gui.control.Controller, org.olat.core.gui.control.Event)
   */
  protected void event(UserRequest ureq, Controller source, Event event) {
    if (source == subscriptionsTableCtr) {
      if (event.getCommand().equals(Table.COMMANDLINK_ROWACTION_CLICKED)) {
        TableEvent te = (TableEvent) event;
        String actionid = te.getActionId();
        Subscriber sub = subscriptionsTableModel.getObject(te.getRowId());
        if (actionid.equals("launch")) {
          // User want to go to the subscription source, e.g. the forum or the
          // folder
          NotificationUIFactory.launchSubscriptionResource(ureq, getWindowControl(), sub);
        } else if (actionid.equals("del")) {
View Full Code Here

TOP

Related Classes of org.olat.core.gui.components.table.TableEvent

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.