RE: how to remove the file icons from the editable tree table ?

2013-01-24 Thread Colin Rogers
file icons from the editable tree table ? DefaultAbstractTree.newNodeIcon is the culprit ... I guess I can extend class TreeTable, which extends DefaultAbstractTree, and then override newNodeIcon as I need to ... Any easier way ? -- View this message in context: http://apache-wicket.1842946

Re: how to remove the file icons from the editable tree table ?

2013-01-23 Thread Paul Bors
You can: 1) Extend the java class and override its HTML mark-up by preserving the wicket:id component tree in your own markup Then in your own java you can call setVisible(false) or replace it with an empty panel 2) Analyze the HTML for the component: Notice is using CSS w/ a "icon" c