Package org.apache.wicket.settings

Examples of org.apache.wicket.settings.IMarkupSettings


     * configure wicket markup settings
     *
     * @param application current application
     */
    private static void configureMarkupSettings(Application application) {
        IMarkupSettings markupSettings = application.getMarkupSettings();

        // wicket markup leads to ui problems because css selectors doesn't match.
        markupSettings.setStripWicketTags(true);
    }
View Full Code Here


   * @throws Exception
   */
  @Test
  public void test7() throws Exception
  {
    final IMarkupSettings markupSettings = Application.get().getMarkupSettings();
    markupSettings.setCompressWhitespace(true);
    markupSettings.setStripComments(true);
    markupSettings.setStripWicketTags(true);

    executeTest(BoxBorderTestPage_1.class, "BoxBorderTestPage_ExpectedResult_7.html");
  }
View Full Code Here

TOP

Related Classes of org.apache.wicket.settings.IMarkupSettings

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.