Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
How to set width for table in freemarker template ?

Votes Newest

Answers


Firstly, there is no difference between using Freemarker or any other templating engine compared to using MessageML directly.

On table widths, they are rendered full width by default. You can choose to resize a particular column by adding style="width:400px" to one or more <td> elements, but not all of them. Adding width styles to all <td> elements in a row will ignore the styles.

If you need the entire table to not render full width, you can nest the table in another <div> and add a width style to the parent <div> like so:

<div style="width:400px">
  <table>
    <tr>
      <td>Hello</td>
      <td>Hello</td>
    </tr>
  </table>
</div>
  
  
Posted 2 years ago
Yong Sheng Tan
39 × 2 Administrator
3K Views
1 Answer
2 years ago
2 years ago
Tags