Code Monkey home page Code Monkey logo

Comments (2)

randallgann avatar randallgann commented on June 28, 2024

I'm running into an issue where the view is not rendering the data in the Tabulator() table. I've installed the tabulator files by right clicking on the wwwroot and adding client-side library. I've added script tags to the view and also to backtest.js and confirmed the id value of the table in the html.

var table = new Tabulator("#tabulator_table", {});

The tabulator formatting is working when I create a test table inside the BackTest index.cshtml file. I copied the javascript code into backtest.js and it gets loaded correctly and the table is rendered with tabulator formatting. I don't know why the script isn't being loaded when I click the submit button and the _BackTestResponse.cshtml is rendered.

from traderdashboard.

randallgann avatar randallgann commented on June 28, 2024

The reason the _BackTestResponse partial view table was not getting formatted by tabulator was due to the fact that the backtest.js file was being loaded before the partial view and therefore whenever the partial view table was loaded the javascript did not pickup the id of the partial view table. The resolution was to add the following to the partial view.

<script> $(document).ready(function () { var table1 = new Tabulator("#CandlesPlusBackTestTable", { height: "40vh", layout: "fitDataStretch", pagination: "local", paginationSize: 10, paginationSizeSelector: [10,20,30,50,100] }); </script>

from traderdashboard.

Related Issues (17)

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.