I successfully made an AjaxFallbackDefaultDataTable, but I want to make the contents of the cells links. How do I do this with Apache Wicket?
相关问题
- component is a repeater and cannot be repainted vi
- Accessing a web application's static resources
- How to force Wicket “onchange” AJAX events to be t
- How to test AjaxEventBehavior(“onClick”) for Apach
- How to defeat browser dialog popup when calling Wi
相关文章
- “Invalid lambda deserialization” when lambda used
- Is RenderStrategy.ONE_PASS_RENDER a reasonable way
- GWT vs Apache Wicket
- How to send binary multipart formdata as base64? [
- Wicket vs Vaadin
- session handling for request object in wicket fram
- Wicket Dropdown with Autocomplete and Categories
- Invalid lambda deserialization
You can use an
AbstractColumn
instead of aPropertyColumn
. This will allow you to add whatever component you like, rather than just the string value of the PropertyModel.Where
LinkPanel
is the component you want to add in the cell.