Giter VIP home page Giter VIP logo

Comments (6)

aslagle avatar aslagle commented on July 24, 2024

Yes, just create a Handlebars.SafeString from the HTML. See here for how I created the table library links. I don't think there's a way to use {{pathFor}}, but you can call the route's path function.

I should probably document this.

from reactive-table.

aslagle avatar aslagle commented on July 24, 2024

Add to the documentation under Virtual Columns

from reactive-table.

dvzrd avatar dvzrd commented on July 24, 2024

Hello,

Can you explain how to call the route's path function please?

If I have a route setup that shows the detailed view of one item like this:

this.route('itemDetails', {
    path: '/items/:_id',
    waitOn: function() {
      return Meteor.subscribe('singleItem', this.params._id);
    },
    data: function() {
      return Items.findOne(this.params._id);
    }
});

How would I add a SafeString with a link to that path?

I set up an object in the fields array like this:

{
  key: '_id',
  label: 'Actions',
  fn: function (value) {
    return new Spacebars.SafeString('<a href="+Routes.route['itemDetails'].path({/items/_id:value})+"');
  }
}

But I'm getting some errors. Can you please point me in the right direction? Thanks a lot.

from reactive-table.

brugnara avatar brugnara commented on July 24, 2024

Firstly, this JSON completely wrong:

{/items/_id:value}
// should be
{'/items/_id':value}

Lastly:

You can use templates. Instead of fn, use a tmpl

tmpl: Template.item_operations

where Template.item_operations is something similar to this:

<a href="/items/{{value}}"> LINK HERE </a>

You can use Routes.route if you want. I've done this example just to show you how a template works.
Hope it helps.

from reactive-table.

dvzrd avatar dvzrd commented on July 24, 2024

Thanks for the example and advice, this helped clear up my confusion.

from reactive-table.

brugnara avatar brugnara commented on July 24, 2024

Glad to help. You are welcome!

from reactive-table.

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.