/** * Copyright SocialSite (C) 2009 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.socialsite.course.answer; import org.apache.wicket.MarkupContainer; import org.apache.wicket.markup.html.WebMarkupContainer; import org.apache.wicket.markup.repeater.Item; import org.apache.wicket.markup.repeater.data.DataView; import org.apache.wicket.model.IModel; import com.socialsite.BasePanel; import com.socialsite.dataprovider.AnswerDataProvider; import com.socialsite.persistence.Answer; import com.socialsite.persistence.Question; /** * @author Ananth */ public class AnswersPanel extends BasePanel { /** * */ private static final long serialVersionUID = 1L; private MarkupContainer answersContainer; public AnswersPanel(final String id, final IModel<Question> model) { super(id, model); // allow other panels to update this panel using ajax setOutputMarkupId(true); final Question question = model.getObject(); add(answersContainer = new WebMarkupContainer("answerscontainer")); answersContainer.setOutputMarkupId(true); // TODO add the answers and other things final DataView<Answer> answerView = new DataView<Answer>("answers", new AnswerDataProvider( question.getId())) { /** * */ private static final long serialVersionUID = 1L; @Override protected void populateItem(final Item<Answer> item) { item.add(new AnswerPanel("answer", item.getModel(), answersContainer)); } }; answersContainer.add(answerView); } }