Tagged Questions
7
votes
2answers
7k views
ASP.NET MVC Grid controls comparison [closed]
There seems to be many grid controls for MVC, but I can't find any comparison between them i.e. which one is better over another one. some support server-side data binding and some support client-side ...
7
votes
1answer
880 views
Preselecting ajax-enabled tab in jquery UI tabs
I have exactly the same problem as described here: http://bugs.jqueryui.com/ticket/7930. The problem is that the maintainer cannot reproduce it, so the ticket is closed. My code looks as following:
...
7
votes
2answers
353 views
IE 8-9 JavaScript issue with long loop
I got the following insistent JS issue just for IE 8-9, in other browsers my code working very well.
Case:
I have the following code in JS, which should start some server process and update progress ...
6
votes
1answer
2k views
ASP.Net MVC 3 Jquery UI Dialog Form
I am trying to make a popup dialog to allow the user to fill in a form.
When they click submit I want to submit the form.
I figured out how to make the modal popup but cannot figure out how to get it ...
6
votes
4answers
9k views
jQuery, MVC3: Submitting a partial view form within a modal dialog
I'm just playing around with jQuery and MVC3 at the moment, and am wondering how I can submit a form, which has been dynamically loaded into a jQueryUI dialog?
My code so far consists of...
...
6
votes
1answer
1k views
MVC form validation in multiple tabs - auto jump to tab with validation errors?
I have tabstrip with multiple tabs. In each tab I have a number of text fields for the user to input.
The tabstrip is surrounded by a form and just below a submit button.
I have annotated validation ...
5
votes
1answer
3k views
Jquery Datepicker Chrome
When using jQuery UI Datepicker, we encouter a problem when used in Google Chrome:
when we enter a date with a day higher than 12, it does not accept it as a valid date, this is because chrome thinks ...
5
votes
2answers
3k views
jQuery validation fails when using KnockoutJS and Jquery dialog
I have a form which is rendered using html.RenderAction in MVC3.
Outside of this I have a jquery template used with knockout. The model is rendered correctly into the view with the default ...
5
votes
1answer
782 views
ASP.NET System.Web.Optimization: Bundling jQueryUI CSS
I am trying to bundle jQueryUI in one request.
Global.asax:
var cssjQuery = new StyleBundle("~/Content/BundleCSS/jQuery");
cssjQuery.IncludeDirectory("~/Content/themes/base", "*.css");
Layout:
...
4
votes
5answers
6k views
jQueryUI modal dialog does not show close button (x)
I'm using a jQuery modal dialog in my ASP .NET MVC 3 application. It works fine except for that there is no close button showing in the top right corner. How can I add this?
...
4
votes
3answers
1k views
How to implement printing in ASP.Net MVC3
As part of my current task in a given list of items, user can select some of them and invoke 'Print' no the selected items.
For each selected item we need to print the details. It is similar to ...
4
votes
3answers
1k views
Download jQuery script to localize datepicker
I want to use jQuery datepicker localize in our MVC project, but I can't find languages js files as here explain we need some file like this: jquery.ui.datepicker-fr.js but the only link I can find is ...
4
votes
1answer
3k views
Display MVC3 Unobtrusive ValidationSummary errors in a jQuery UI Dialog
I'm looking to display MVC3's unobtrusive ValidationSummary errors in a jQuery UI Dialog. Specifically, I want to be able to have a "live" $('.validation-summary-errors').dialog(...);-like ...
4
votes
2answers
911 views
How to return a Json label/value pair from C# Controller Action for jQuery AutoComplete
I need to create a jQuery Autocomplete textbox that gets a list of names from the DB, and when selected, sends the user to the appropriate page link.
I'm trying to do something just like this post: ...
4
votes
3answers
2k views
jquery autocomplete using mvc3 dropdownlist
I am using ASP.NET MVC3 with EF Code First. I have not worked previously with jQuery. I would like to add autocomplete capability to a dropdownlist that is bound to my model. The dropdownlist stores ...