I’m relatively new to ember and found the light-table add-on which seems to be able to do all I need. I managed to bring back data from a DB and display it, so the fundamentals seem right. What I would like to do is to display 1 column as a link to another site and have that open in another window/tab when I select it (i.e. target=_blank). However I’m struggeling how to do that , all I get is the regular columnar representation of the values defined in my model
Are you able to provide a condensed example in a public URL containing your application code?
Be sure to use double braces when accessing values:
<a href="{{val1}}" target="_blank">{{val2}}</a>
Also, you can use {{log val1}} or {{debugger}} in your templates to explore what goes on when it renders. The docs have some more info on those helpers.
From what I know of ember-light-table it won’t copy properties you pass in. You could try {{this.model.title}} if the snippet above exists in a route template. I checked their API docs quickly too.
For the 2nd point, you may need to use a custom row component. There is a simple example in their cookbook demo.