Giter VIP home page Giter VIP logo

Comments (4)

deftdawg avatar deftdawg commented on May 31, 2024

@gbelmm I think you're trying to ask how to use the COLORIZE example right?

You'll want to use ``` to format code on github (or just use the code <> icon in the composer). Also your code is missing the style that actually changes the colour, so yours only upper cases it.

I'm by no means an Angular expert, so there might be better ways to do it, but this solution worked for me:

Create a file src/assets/js/custom.js with the following:

function COLORIZE(v) {
    v = '<span style="color:' + v + '">' + v.toUpperCase() + '</span>';
    return v;
}

At the end of src/app/jexcel-spreadsheet/jexcel-spreadsheet.component.ts add ngAfterViewChecked with the following to load the javascript

  ngAfterViewChecked() {
    var s = document.createElement("script");
    s.type = "text/javascript";
    s.src = "../../assets/js/custom.js";
    this.spreadsheet.nativeElement.appendChild(s);
  }

}

from example-with-angular.

deftdawg avatar deftdawg commented on May 31, 2024

@gbelmm kindly close the issue by clicking the Close Issue button in the comment box, if you're good wth my suggestion.

from example-with-angular.

pphod avatar pphod commented on May 31, 2024

In the end of the day, those methods should be available in the global scope.

from example-with-angular.

gbelmm avatar gbelmm commented on May 31, 2024

it is possible to pass the custom function by parameters inside jexcel, in angular, vue, react it is complicated to leave the global variable, I have tried but it does not work?

from example-with-angular.

Related Issues (5)

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.