Tabnine Logo
Panel.onModelChanged
Code IndexAdd Tabnine to your IDE (free)

How to use
onModelChanged
method
in
org.apache.wicket.markup.html.panel.Panel

Best Java code snippets using org.apache.wicket.markup.html.panel.Panel.onModelChanged (Showing top 5 results out of 315)

origin: apache/wicket

/**
 * Dummy override to fix WICKET-1239
 */
@Override
protected void onModelChanged()
{
  super.onModelChanged();
}
origin: org.ops4j.pax.wicket/pax-wicket-service

/**
 * Dummy override to fix WICKET-1239
 * 
 * @see org.apache.wicket.Component#onModelChanged()
 */
@Override
protected void onModelChanged()
{
  super.onModelChanged();
}
origin: de.tudarmstadt.ukp.inception.app/inception-ui-external-search

@Override
protected void onModelChanged()
{
  super.onModelChanged();
  // Since typeChoice uses a lambda model, it needs to be notified explicitly.
  typeChoice.modelChanged();
}
origin: inception-project/inception

@Override
protected void onModelChanged()
{
  super.onModelChanged();
  // Since typeChoice uses a lambda model, it needs to be notified explicitly.
  typeChoice.modelChanged();
}
origin: inception-project/inception

@Override
protected void onModelChanged()
{
  super.onModelChanged();
  // When field become invalid, Wicket stops re-rendering them. Thus we tell all of them that
  // their model has changes such that they clear their validation status.
  visitChildren(new ModelChangedVisitor(recommenderModel));
  // Since toolChoice uses a lambda model, it needs to be notified explicitly.
  toolChoice.modelChanged();
  
  // For new recommenders, default to auto-generation of name, for existing recommenders,
  // do not auto-generate name unless asked to
  Recommender recommender = recommenderModel.getObject();
  if (
      recommender.getId() == null || 
      Objects.equals(recommender.getName(), generateName(recommender))
  ) {
    autoGenerateNameCheckBox.setModelObject(true);
    autoUpdateName(null, nameField, recommenderModel.getObject());
  }
  else {
    autoGenerateNameCheckBox.setModelObject(false);
  }
}
org.apache.wicket.markup.html.panelPanelonModelChanged

Popular methods of Panel

  • renderHead
    Check the associated markup file for a wicket header tag
  • onBeforeRender
  • onInitialize
  • onConfigure
  • onComponentTag
  • onDetach
  • setOutputMarkupId
  • setVisible
  • add
  • setDefaultModel
  • onAfterRender
  • detachModel
  • onAfterRender,
  • detachModel,
  • detachModels,
  • getId,
  • remove,
  • replaceWith,
  • getMarkupId,
  • onComponentTagBody,
  • setMarkupId

Popular in Java

  • Updating database using SQL prepared statement
  • getApplicationContext (Context)
  • compareTo (BigDecimal)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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