jQWidgets Forums
jQuery UI Widgets › Forums › Getting Started › Absolute beginner
Tagged: install, Installation, jqwidgets, Visual Studio
This topic contains 4 replies, has 5 voices, and was last updated by brendons 11 years ago.
-
AuthorAbsolute beginner Posts
-
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 projectI 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
Hello Mo,
Here is what you need to do:
- Download the latest version of jQWidgets;
- Extract the downloaded file to your project’s destination;
- Include the files to your project in Microsoft Visual Studio (right click on the
jQWidgets folder and click Include In Project); - 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,
DimitarjQWidgets team
http://www.jqwidgets.com/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>
For integration with MVC, please refer to our ASP .NET Integration help topics: http://www.jqwidgets.com/jquery-widgets-documentation/
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.com/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 -
AuthorPosts
You must be logged in to reply to this topic.