i think this is quite along time already the case.. you are free in it to
fix it ofcourse!

On 4/26/07, Jonathan Locke <[EMAIL PROTECTED]> wrote:



Notice how the markup and the Java don't match below.  Did someone forget
a
checkin?


https://svn.apache.org/repos/asf/incubator/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/debug/RequestsPage.html

                <tr wicket:id="requests">
                        <td wicket:id="startDate"></td>
                        <td wicket:id="timeTaken" align="right"></td>
                        <td wicket:id="eventTarget"></td>
                        <td wicket:id="responseTarget"></td>
                        <td wicket:id="alteredObjects"></td>
                </tr>


https://svn.apache.org/repos/asf/incubator/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/debug/RequestsPage.java


                                item.add(new Label("id", new
Model(rd.getSessionId())).setVisible(sessionData == null));
                                item.add(new Label("startDate", new
Model(sdf.format(rd.getStartDate()))));
                                item.add(new Label("timeTaken", new Model(
rd.getTimeTaken())));
                                item.add(new Label("eventTarget", new
Model(rd.getEventTarget())));
                                item.add(new Label("responseTarget", new
Model(rd.getResponseTarget())));
                                item.add(new Label("alteredObjects", new
Model(rd.getAlteredObjects())))

                                                .setEscapeModelStrings(false);
                                item.add(new Label("sessionSize", new
Model(Bytes.bytes(rd.getSessionSize().longValue()))));

--
View this message in context:
http://www.nabble.com/Debug-panel-busted-tf3653717.html#a10207388
Sent from the Wicket - Dev mailing list archive at Nabble.com.


Reply via email to