ZK - 从ItemRenderer访问GUI元素

时间:2018-03-09 13:57:00

标签: java textbox zk itemrenderer

我在ZK项目中访问模型类之外的GUI元素时遇到问题。我有一个ListItemRenderer,当我单击列表框中的元素时,它会呈现数据和相应模型的位置,但是当我再次访问文章类时,我的实例永久为null,以及我在连接时连接的所有GUI元素我是第一次创建类(通过getFellow())。这甚至是正确的方法吗?或者,如果更改了文本框,我可以向一个重新加载文本框的变量添加一个监听器吗?感谢每一个提示,我已经有几个令人沮丧的时间在我身后,希望代码片段足够了。

ZUL:

<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" root="./winArticles"?>
<window id="winArticles" title="Looking for Evidence" width="1100px"  height="880px" 
border="normal" use="xxx.Articles" closable="true" sizable="false">
...
 <listbox id="artikel_output" width="100%" height="" multiple="true"  
          checkmark="true"   vflex="true" nonselectableTags="*">
 <listhead>
      <listheader label="Artikel"/> 
 </listhead> 
 </listbox> 
...
      <div   vflex="1">
            <textbox style="font-size:50px" 
                     id="tb_article_abstract"
                     multiline="true"/>
     </div>
...
</window>

型号:

public class Articles extends Window implements AfterCompose, 
IGenericDomainValueSelectorActions, IUpdateModal, IGenericListActions {
     private static Articles instance;

public Articles() { }

public static Articles getInstance() { 
    if (instance == null) {
        instance = new Articles();
    }
    logger.debug("Instance getInstance " + instance.getId());
    return instance;
}

@Override
public void afterCompose() {
    instance = new Articles(); 
    tb_article_abstract = (Textbox) getFellow("tb_article_abstract");  
  ...}

初始化列表框渲染器:

public void fillListBoxWithArticles(final Listbox lb, List<Article> articles) {  
    if (articles.size() == 0) {
        lb.appendChild((Component) articles.get(0));
    } 
    lb.setItemRenderer(new ArticleItemRenderer());        
    lb.setCheckmark(true);
    lb.setMultiple(true); 
    ListModelList<Article> lml_articles = new ListModelList<Article>(articles);
    lml_articles.setMultiple(true);
    lb.setModel(lml_articles); 
    lb.focus();
}

如果选择了列表框元素,则在文本框中显示它的属性,但文本框始终为空...

public void setArticleToInfobox(Article selectedArticle, int selectedIndex) {
    this.selectedArticle = selectedArticle;  
    // tb_article_abstract = null 
    tb_article_abstract.setValue(selectedArticle.getAbstract_full());
    tb_article_abstract.invalidate();
}}

ItemRenderer获取所选项目的数据(和索引):

public class ArticleItemRenderer implements ListitemRenderer<Article> {  
@Override
public void render(Listitem item, Article data, int index) throws Exception {

    item.appendChild(new Listcell(data.getArticletitle() + ", "  ); 
    item.addEventListener(Events.ON_CLICK, new EventListener() {
        @Override 
        public void onEvent(Event event) throws Exception {     
            EvidenceBasedArticles.getInstance().setArticleToInfobox(data, item.getIndex());
        }});}

1 个答案:

答案 0 :(得分:1)

你在这里犯了一些关键的错误。

public static Articles getInstance() { 
    if (instance == null) {
        instance = new Articles();
    }
    logger.debug("Instance getInstance " + instance.getId());
    return instance;
}

这将永远不会有效,您正在开发一个Web应用程序 这意味着同时有2个用户只能拥有1个实例,但是您的文章被分配到特定桌面,因此1个用户会遇到问题。

错误:

lb.setItemRenderer(new ArticleItemRenderer(tb_article_abstract));

您的渲染器为此特定类设置了一个新实例,因此它已绑定到正确的桌面。
只要你不从DOM中删除该项,这就没问题了。