hi,
it's always complains that 
 " Markup with path 'check' not found in fragment: roleList"       <table >     
       <tr wicket:id="roleList">                 <td align="center"  
wicket:id="cols">                  <input type="checkbox" wicket:id="check" />  
               <span wicket:id="role"></span>            </td>     </tr>     
</table>GridView<String> gridView = new GridView<String>(roles, "roleList", 
dataProvider) {
   protected void populateItem(Item<String> item) {
    new Check<String>(item, "check", item.getModel());
    new Label(item, "role", (String) item.getModelObject());
   }
   @Override
   protected void populateEmptyItem(Item arg0) {
    // TODO Auto-generated method stub
    
   }
  
  };

I write these code follow the example of  1.2 version. and I also find the 
gridview is disappear in the current one snapshot of wicket 2.0.
Is there anyone can help me ?
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to