Giter VIP home page Giter VIP logo

Comments (4)

aslagle avatar aslagle commented on July 24, 2024

Looks like the html in your code got stripped by the markdown parser - I assume you added the additional class to the td element?

I think people might find this confusing - if I saw the css option, I would expect it to be a string, not a function. If we're going to add this, it probably ought to accept strings, functions, and maybe even arrays. It wouldn't be that hard to add the code, but it would make the documentation more complicated, and I'm not sure it adds much over just using fn to return html with the class you want.

from reactive-table.

kevingzhang avatar kevingzhang commented on July 24, 2024

Yes, my code is just part of the example, trying to help you understand what I meant.
Maybe we can call it css-helper, or css-fn etc. It doesn't have to be what I said. What I meant was I hope there is a solution to add css logic. Currently the fn only works for the cell content.

You said "just using fn to return html", I am not sure if I understood. The fn returns the string inside , how could I use it in the class attribute? If it can, my problem solved.

from reactive-table.

aslagle avatar aslagle commented on July 24, 2024

If it's okay to add the class to an element inside the cell, not the cell itself, you can do something like this:

{ key: 'score', label: 'Score', fn: function (score) { 
        var cssClass = "class2";
        if (score < 10) {
            cssClass = "class1";
        }
        return new Handlebars.SafeString("<div class='" + cssClass + "'>" + score + "</div>");
}}

Is there any particular reason you need the class on the td element?

If you want the new element to fill the cell, e.g. to set a background-color, you could override bootstrap's padding like this:

.table > tbody > tr > td {
    padding: 0;
}

and then add your own padding inside the new element.

from reactive-table.

kevingzhang avatar kevingzhang commented on July 24, 2024

It is OK. thanks

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.