Re: Override getStatelessHiint for InlineFrame

2018-03-03 Thread Martin Grigorov
Hi Alberto, It is OK to override getStatelessHint() to return 'true'. There is a comment in InlineFrame saying that it is stateful just "to be on the safe side": https://github.com/apache/wicket/blob/b728c69ad42dcac9f9920ee811bdf1cc7014d0bb/wicket-core/src/main/java/org/apache/wicket/markup/html/l

Override getStatelessHiint for InlineFrame

2018-03-02 Thread Alberto Brosich
Hello, I have a page containing an InlineFrame component. This page should be stateless because the content of InlineFrame never change. Is it a good practice override getStatelessHint() method of InlineFrame component? Best regards Alberto ---