Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <blockquote> <p><code>&lt;span th:text="#{table.tytul}"/&gt;</code></p> </blockquote> <p>` fetches value from message properties so if table.html is opened directly in browser,it will be blank </p> <p>If this page is accessed through application, since ,</p> <blockquote> <p><code>&lt;th th:text=""&gt;</code></p> </blockquote> <p>is not valid thymeleaf expression syntax(because of empty string) , parse error will occur.. And</p> <blockquote> <p><code>&lt;td th:text=""&gt;&lt;span th:text="#{table.tytul}"/&gt;&lt;/td&gt;</code></p> </blockquote> <p>contains span as child of td so, th:text need not be included in td as th:text in td will replace ultimately..</p> <p>further meta tag is not closed..</p> <p>Try this</p> <pre><code>&gt; &lt;!DOCTYPE html&gt; &lt;html xmlns:th="http://www.thymeleaf.org"&gt; &lt;head&gt; &gt; &lt;title&gt;&lt;/title&gt; &gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt; &gt; &lt;/head&gt; &lt;body&gt; &gt; &lt;h3 align="center"&gt;table&lt;/h3&gt; &gt; &lt;div align="left"&gt; &gt; &lt;form action="table.html" th:object="${tytul}" method="get"&gt; &gt; &lt;fieldset&gt; &gt; &lt;div align="center"&gt; &gt; &lt;table border="1"&gt; &gt; &lt;thead&gt; &gt; &lt;tr&gt; &gt; &lt;th &gt;tytul&lt;/th&gt; &gt; &lt;/tr&gt; &gt; &lt;/thead&gt; &gt; &lt;tbody&gt; &gt; &lt;tr&gt; &gt; &lt;td&gt;&lt;span th:text="#{table.tytul}"/&gt;&lt;/td&gt; &gt; &lt;/tr&gt; &gt; &lt;/tbody&gt; &gt; &lt;/table&gt; &gt; &lt;/div&gt; &gt; &lt;/fieldset&gt; &gt; &lt;/form&gt; &gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>And if value on table need to be displayed when directly opened in browser for prototyping purpose, try this</p> <pre><code>&gt; &lt;!DOCTYPE html&gt; &lt;html xmlns:th="http://www.thymeleaf.org"&gt; &lt;head&gt; &gt; &lt;title&gt;&lt;/title&gt; &gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt; &lt;/head&gt; &lt;body&gt; &gt; &lt;h3 align="center"&gt;table&lt;/h3&gt; &gt; &lt;div align="left"&gt; &gt; &lt;form action="table.html" th:object="${tytul}" method="get"&gt; &gt; &lt;fieldset&gt; &gt; &lt;div align="center"&gt; &gt; &lt;table border="1"&gt; &gt; &lt;thead&gt; &gt; &lt;tr&gt; &gt; &lt;th &gt;tytul&lt;/th&gt; &gt; &lt;/tr&gt; &gt; &lt;/thead&gt; &gt; &lt;tbody&gt; &gt; &lt;tr&gt; &gt; &lt;td&gt;&lt;span th:text="#{table.tytul}"/&gt; &lt;span th:remove="all"&gt;content&lt;/span&gt;&lt;/td&gt; &gt; &gt; &lt;/tr&gt; &gt; &lt;/tbody&gt; &gt; &lt;/table&gt; &gt; &lt;/div&gt; &gt; &lt;/fieldset&gt; &gt; &lt;/form&gt; &gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload