Examples of ICreateFrom


Examples of org.compiere.grid.ICreateFrom

    else if (col.equals("CreateFrom"))
    {
      // Run form only if the button has no process defined - teo_sarca [ 1974354 ]
      if (vButton.getProcess_ID() <= 0)
      {
        ICreateFrom cf = VCreateFromFactory.create(m_curTab);
        if(cf != null)
        {
          if(cf.isInitOK())
          {
            cf.showWindow();
            cf.closeWindow();
            m_curTab.dataRefresh();
          }
          else
            cf.closeWindow();
          return;
        }       
        //  else may start process
      }
    }  //  CreateFrom
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.