congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
RowComparator
Code IndexAdd Tabnine to your IDE (free)

How to use
RowComparator
in
org.carewebframework.ui.zk

Best Java code snippets using org.carewebframework.ui.zk.RowComparator (Showing top 7 results out of 315)

origin: org.carewebframework/org.carewebframework.cal.ui.reporting

@Override
protected void autowireColumns() {
  RowComparator.autowireColumnComparators(grid);
}

origin: org.carewebframework/org.carewebframework.cal.ui.reporting

@Override
protected void autowireColumns() {
  RowComparator.autowireColumnComparators(listBox);
}

origin: org.carewebframework/org.carewebframework.rpms.ui.skintest

/**
 * @see org.carewebframework.ui.FrameworkController#doAfterCompose(org.zkoss.zk.ui.Component)
 */
@Override
public void doAfterCompose(final Component comp) throws Exception {
  super.doAfterCompose(comp);
  bgoSecurity = BgoUtil.initSecurity("BGO DISABLE SK EDITING", null);
  lbTests.setItemRenderer(skinTestRenderer);
  RowComparator.autowireColumnComparators(lbTests.getListhead().getChildren());
  getAppFramework().registerObject(patientContextEventHandler);
  getAppFramework().registerObject(encounterContextEventHandler);
  patientContextEventHandler.committed();
  log.trace("Controller composed");
}

origin: org.carewebframework/org.carewebframework.cal.ui.reporting

/**
 * Initializes the controller. Loads user preferences and properties.
 */
@Override
protected void initializeController() {
  setMeshElement(listBox, "list");
  super.initializeController();
  listBox.setItemRenderer(itemRenderer);
  setMultiple(listBox.isMultiple());
  
  if (listBox.getListhead() != null) {
    RowComparator.autowireColumnComparators(listBox.getListhead().getChildren());
  }
}

origin: org.carewebframework/org.carewebframework.rpms.ui.problem

/**
 * @see org.carewebframework.ui.FrameworkController#doAfterCompose(org.zkoss.zk.ui.Component)
 */
@Override
public void doAfterCompose(final Component comp) throws Exception {
  super.doAfterCompose(comp);
  bgoSecurity = BgoUtil.initSecurity("BGO DISABLE PROB LIST EDITING", "BGOZ PROBLEM LIST EDIT");
  lbProblems.setItemRenderer(problemRenderer);
  RowComparator.autowireColumnComparators(lbProblems.getListhead().getChildren());
  m_bPersHistAndAct = SecurityUtil.isGranted("BGO PL INCLUDE PERS HIST W ACT");
  
  for (Object item : cboFilter.getItems()) {
    Comboitem ci = (Comboitem) item;
    ProblemFilter filter = ProblemFilter.valueOf(ci.getValue().toString());
    ci.setValue(m_bPersHistAndAct && filter == ProblemFilter.ACTIVE ? ProblemFilter.ACTIVE_PERSONAL : filter);
  }
  
  setFilter(getDefaultFilter());
  getAppFramework().registerObject(patientContextEventHandler);
  getAppFramework().registerObject(encounterContextEventHandler);
  patientContextEventHandler.committed();
  log.trace("Controller composed");
}

origin: org.carewebframework/org.carewebframework.vista.ui.notification

/**
 * Set up display.
 */
@Override
public void init() {
  super.init();
  getContainer().registerProperties(this, "showAll", "alertDuration", "alertThreshold");
  rgFilter.setSelectedItem(showAll ? radAll : radPatient);
  processingController = ProcessingController.create(this);
  lstNotification.setItemRenderer(renderer);
  RowComparator.autowireColumnComparators(lstNotification.getListhead().getChildren());
  model.setMultiple(true);
  updatePatient(true);
  subscribe(true);
}

origin: org.carewebframework/org.carewebframework.cal.ui.reporting

/**
 * Initializes the controller. Loads user preferences and properties.
 */
@Override
protected void initializeController() {
  setMeshElement(grid, "grid");
  super.initializeController();
  grid.setRowRenderer(rowRenderer);
  
  boolean expandAll = getPropertyValue(Constants.PROPERTY_ID_EXPAND_DETAIL, Boolean.class,
    chkExpandAll != null && chkExpandAll.isChecked());
    
  if (this.chkExpandAll != null) {
    this.chkExpandAll.setChecked(expandAll);
  }
  
  AbstractRowRenderer.setExpandDetail(grid, expandAll);
  
  if (grid.getColumns() != null) {
    RowComparator.autowireColumnComparators(grid.getColumns().getChildren());
  }
  
  grid.setVflex("1");
}

org.carewebframework.ui.zkRowComparator

Most used methods

  • autowireColumnComparators

Popular in Java

  • Making http requests using okhttp
  • getSupportFragmentManager (FragmentActivity)
  • onCreateOptionsMenu (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • BoxLayout (javax.swing)
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now