Search Results for

    Show / Hide Table of Contents

    FastReport .NET and jQuery

    The WebReport object from FastReport .NET uses the jQuery library. You may already be using this library in your project.

    To avoid duplication of jQuery boot scripts and styles in the client browser when working with markup Razor, you must use the following lines in _Layout.cshtml:

    @WebReportGlobals.ScriptsWOjQuery()
    @WebReportGlobals.StylesWOjQuery()
    

    replacing these lines, which include all jQuery files:

    @WebReportGlobals.Scripts()
    @WebReportGlobals.Styles()
    

    You must set the property ExternalJquery = true (defaults to false) when working with ASPX markup.

    Back to top © 1998-2025 Copyright Fast Reports Inc.