How to know the markupStream of a border body

2007-12-12 Thread buealb
Hi, I have a simple border: wicket:border test wicket:body/ /wicket:border and when I use this border I add content in the body: div wicket:id=myBorder more text more text /div Now, I want to know what is the markupStream of this border. I'm trying with MarkupStream st

Re: Extending parent of the parent markup

2007-11-30 Thread buealb
would look like this: View (with markup) |-- AbstractTableView | -- MyView (provides its markup) |-- TableView (with markup) | -- SearchView Alex. buealb wrote: hi, jeje, We really have AbstractTableView, but the problem is another. We have

Re: Extending parent of the parent markup

2007-11-30 Thread buealb
the common functionality to an abstract class (AbstractTableView) which extends View, and both TableView MyTableView should extend the AbstractTableView. Regards, Alex. buealb wrote: Because I have a lot of functionality in TableView that I want to use... Alex Objelean wrote

Extending parent of the parent markup

2007-11-29 Thread buealb
Hi, I have this situation: View.html border .. child/ .. /border TableView.html (extends of View) extend .. child/ .. /extend MyTableView.html (extends of TableView) extend .. /extend In this case, MyTableView is extending by default the markup of TableView, because I'm extending

Re: Extending parent of the parent markup

2007-11-29 Thread buealb
Because I have a lot of functionality in TableView that I want to use... Alex Objelean wrote: Since you want to redefine the markup of the TableView.html, why just not to extend the View.html? buealb wrote: Hi, I have this situation: View.html border .. child

Re: setRenderAllowed not called in Tree items

2007-09-14 Thread buealb
I'm working with the trunk. What wicket version are you using? -Matej On 9/13/07, buealb [EMAIL PROTECTED] wrote: Hi, I'm using Tree component. I have problems with the rendering of the children of an TreeItem. If I look the code of Component.renderComponent, after of calling

setRenderAllowed not called in Tree items

2007-09-13 Thread buealb
Hi, I'm using Tree component. I have problems with the rendering of the children of an TreeItem. If I look the code of Component.renderComponent, after of calling to beforeRender(), you check if component and its children are allowed to be rendered (setRenderAllowed). But in Tree component, when