jQWidgets Forums

jQuery UI Widgets Forums Getting Started Absolute beginner

This topic contains 4 replies, has 5 voices, and was last updated by  brendons 11 years ago.

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
  • Absolute beginner #33210

    Mo
    Participant

    Just downloaded the package and copied it to my project and tried to test the menu but I am getting error “0x800a01b6 – JavaScript runtime error: Object doesn’t support property or method ‘jqxMenu’
    Looks like I am missing something like a reference or link or didn’t copy the package correctly to my project

    I am using Visual Studio 2013 and ASP MVC 5. I need a walkthrough step by step on how to install the package to my project

    Absolute beginner #39457

    Dimitar
    Participant

    Hello Mo,

    Here is what you need to do:

    1. Download the latest version of jQWidgets;
    2. Extract the downloaded file to your project’s destination;
    3. Include the files to your project in Microsoft Visual Studio (right click on the
      jQWidgets folder and click Include In Project);
    4. Open one of the demos from the demos folder and run it.

    If you have followed the instructions correctly, there should be no issues in running an example. If you have further question, do not hesitate to ask.

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

    Absolute beginner #48129

    bobby.wallace
    Participant

    I am having a similar issue. The following is what MVC turnout out:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="utf-8" />
        <link href="/Content/site.css" rel="stylesheet"/>
        <link href="/Content/styles/jqx.base.css" rel="stylesheet" />
        <link href="/Content/styles/jqx.shinyblack.css" rel="stylesheet" />
    
        <script src="/Scripts/modernizr-2.6.2.js"></script>
    
        <script src="/Scripts/jquery-1.8.2.js"></script>
    
        <script src="/Scripts/jqwidgets/jqxcore.js"></script>
        <script src="/Scripts/jqwidgets/jqxmenu.js"></script>
    
    </head>
    <body>
        <script>
            $(document).ready(function () {
                // Create a jqxMenu
                $("#jqxMenu").jqxMenu({ width: 600, height: 30, theme: 'shinyblack' });
            });
        </script>
    
        <div id="wrapper">
            <div id='jqxmenu'>
                <ul>
                    <li><a href="#">Home</a></li>
                    <li>About Us</li>
                    <li>Services </li>
                    <li>Products
                </ul>
            </div>
            .
            .
            .
        </div>
    </body>
    </html>
    Absolute beginner #48133

    Peter Stoev
    Keymaster

    For integration with MVC, please refer to our ASP .NET Integration help topics: http://www.jqwidgets.com/jquery-widgets-documentation/

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com/

    Absolute beginner #51619

    brendons
    Participant

    Dear jQWidgets Team

    The asp.net CRUD example in the asp.net integration section seems to be messed up.
    Step 9 looks like a block of PHP (it should be ASP.NET).

    I think us absolute beginners would benefit if this example was corrected and updated please.

    I am using VB.NET, MVC5, Entity Framework Database first, and the grid is successfully displaying records in the index page, but how would I pass the ID of the selected row in the grid to open the details page.
    Something like:

    @Html.ActionLink(“Details”, “Details”, New With {.id = dataAdapter.EmployeeID })

    Cheers
    Brendons

Viewing 5 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic.