Hi all,

I habe a problem with the <wicket:remove> element inside a list. If I add the element to my markup, the design of the list is broken in firefox and Chrome (windows) during designtime. Runs the markup inside wicket, everything works.

Here is an example of my Problem. If you open the markup in your browser, you see that the two lists looks different, although they should look the same.
<html>
<head>
    <style>
        ul {
            list-style-type: none;
            display: flex;
            flex-wrap: wrap;
        }

        li {
            border: solid red thin;
            width: 25vw;
        }
    </style>
</head>
<body>

<ul>
    <li wicket:id="consultant_data_item">Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
    <li>Item 4</li>
</ul>
<ul>
    <li wicket:id="consultant_data_item">Item 1</li>
    <wicket:remove>
    <li>Item 2</li>
    <li>Item 3</li>
    <li>Item 4</li>
    </wicket:remove>
</ul>

</body>
</html>

Does anyone have an idea on how to fix that? Otherwise I always get problems with my markup designer.

Regards
Malte




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to