Giter Club home page Giter Club logo

Comments (4)

smalluban avatar smalluban commented on September 26, 2024

Please look at this section of the documentation: https://hybrids.js.org/#/component-model/templates?id=limitations

This is a platform (basically some of the browser implementation) limitation, that template engine cannot use it's internal way to mark place where the expression should be putted.

In short, you cannot use:

html`<th>BBB_${it}</th>`

You must write:

html`<th>${`BBB_${it}`}</th>`

The difference here is that whole content of the <th> element is an expression, which contains a string value.

BTW, to avoid making a set/get property with default value of an array (in v9 it will be possible by value option) you may try this pattern:

  items: undefined,
  render: ({ items = [1,2] }) => html`...`,

from hybrids.

woyodb avatar woyodb commented on September 26, 2024

I have changed my codes as you mentioned limitation section, but, still have a confused problem:

	 <table>
	 	<thead>
		 	<tr>
				  ${html`<th>AAA</th>`}
					${items && items.map(it=>html`
					   <th>${`BBB_${it}`}</th>
					`)}
			</tr>
	 	</thead>
	 	<tbody>
			<tr>
			${html`<td>aaa</td>`}
			${items.map(it=>html`
			<td>${`bbb_${it}`}</td>
			`)}
			</tr>
			</tbody>
	 </table>

The `AAA' column is rendered fine, but 'td' parts only show the 'aaa', the other 'td' are missing.
I've removed the whitespaces between tr tag, just not work, pls help.

from hybrids.

woyodb avatar woyodb commented on September 26, 2024

I got it. the problem this the tbody still have tr tag not included in a html`` function, so change to following will work:

	 	<tbody>
			${html`
			<tr>
			${html`<td>aaa</td>`}
			${items.map(it=>html`
			<td>${`bbb_${it}`}</td>
			`)}
			</tr>
			`}
			</tbody>

Everything works fine now, except a little verbose. 😁

from hybrids.

smalluban avatar smalluban commented on September 26, 2024

You can avoid one of the ${}:

html`
  <tr>
    ${html`
      <td>aaa</td>
      ${items.map(it=>html`<td>${`bbb_${it}`}</td>`)}
    `}
  </tr>
`

I wish it could be simpler, but nowadays I strongly suggest using CSS Grid over tables - they have so many limitations.

Feel free to re-open if you have other issues with the subject.

from hybrids.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.