Tagged Questions
The unobtrusive tag has no wiki summary.
8
votes
4answers
3k views
How to change 'data-val-number' message validation in MVC while it generate by helper
Assume this model:
Public Class Detail
...
<DisplayName("Custom DisplayName")>
<Required(ErrorMessage:="Custom ErrorMessage")>
Public Property PercentChange As Integer
...
4
votes
1answer
319 views
Validation message contain '{PropertyName}' instead of name of property
I use fluent validation with client side unobtrusive validation.
<fieldset class="edit-root-form">
<p>
@Html.LabelFor(model => model.Login, UserRes.Login)
...
4
votes
4answers
2k views
ASP.Net MVC 3 unobtrusive client validation does not work with drop down lists
I have a simple drop down list, the first item in the list has an empty value. If I do not select anything in the list the client validation ignores it. I have that field set up as required on the ...
4
votes
1answer
539 views
CakePHP and jQuery - Unobtrusive actions
I'm trying to make an unobtrusive action for deleting bookmarks in CakePHP.
Allthough it's working just fine, I suspect there must be a better way to do this. Could someone please point me in the ...
4
votes
7answers
399 views
Best way to include unobtrusive information on a web page
So I've got some scripts I've written which set up a Google map on my page. These scripts are in included in the <head> of my page, and use jQuery to build the map with markers generated from a ...
3
votes
2answers
887 views
jQuery.validator.unobtrusive.adapters.addMinMax round trips, doesn't work in MVC3
I am creating a day range validator using DataAnnotations, jQuery.validate and jquery.validate.unobtrusive. I've already read the following:
...
3
votes
2answers
1k views
MVC 3 specifying validation trigger for Remote validation
I have implemented remote validation using MVC 3 unobtrusive validation as follows
The model
public class MyViewModel {
[Remote("ValidateAction", "Validation")]
public string Text { get; ...
3
votes
4answers
79 views
Creating a record for an association unobtrusively when attempting access?
I have a simple has_one/belongs_to relationship between two models.
This is a new association in my application so there are many records that do not yet have the associated record created.
...
2
votes
2answers
112 views
How to unobtrusively add new Validation methods to Magento checkout
I want to prevent customers entering PO Boxes into the shipping address for selected Shipping Methods (UPS specifically in this case). I could override js/prototype/validation.js to insert a new ...
2
votes
5answers
117 views
Difference between obtrusive and unobtrusive javascript
What is the difference between obtrusive and unobtrusive javascript - in plain english. Brevity is appreciated. Short examples are also appreciated.
2
votes
2answers
83 views
Need help on making my Javascript unobtrusive
So I have created an order form in HTML + Javascript, and what I am wanting to use Javascript for is when someone hovers over the "label" for the soup, a hidden div will be visible (later on I intend ...
2
votes
4answers
66 views
Javascript inside AJAX request
I have a little problem with an AJAX function:
PAGE A stands for the page.
PAGE X stands for the loaded content.
RES A stands for the page results.
RES B stands for some AJAX loaded content => new ...
2
votes
4answers
2k views
ASP.NET MVC - How to prevent double clic submit with jquery.validate.unobtrusive lib?
I need to avoid the double click submitting behavior. I'm using the client validation with the unobtrusive library. I have the following code for avoiding the double clic:
...
2
votes
6answers
316 views
Unobtrusive JavaScript - Safe Attributes?
I'm working on separating JavaScript code from my HTML. I currently have code that looks like this:
<div onclick="return do_something_with('100566');" class="clickable">Click Me!</div>
...
2
votes
4answers
349 views
How to embed an unobtrusive flash?
I have an embedded flash that is transparent so it looks like part of the background. I achieved that by setting wmode to transparent.
My problem is that the area underneath the flash becomes ...
1
vote
1answer
6 views
ASP.MVC3 ModelState.IsValid not include RemoteAttribute checking
I define a variable as
public class EditModel
{
[Remote("IsNameAvailable", "Home", ErrorMessage = "Name is in use.")]
[Display(Name = "Name")]
public string Name{ get; set; }
}
and in ...
1
vote
3answers
45 views
Implementing Unobtrusive Javascript
I'm reworking an old website and am focusing on making the Javascript/jQuery as unobtrusive as possible. I'm looking for some advice on one part of the project: UJ requires that, if Javascript is ...
1
vote
1answer
74 views
jQuery Button Handler vs inline onClick
Here's the problem:
I have a list of items on a page, each with its own link/button to delete it. Currently, I have an onclick on each button because each button needs to pass the id and a ...
1
vote
1answer
192 views
Context is Missing when using Unobtrusive ajax in asp.net mvc-3
i have just shifted to unobtrusive ajax that ships with mvc-3 but it is breaking at one point.
Here is my link
<%:Ajax.ActionLink("Edit", "Home", "Edit", new{id = Model.SomeID}, new ...
1
vote
1answer
202 views
Unobtrusively add block in cart
For a module I'm working on, I want to add a block in the shopping cart screen, I want to do it unobtrusively and I'd like to place it beneath the cart content and before the other blocks (coupon, ...
1
vote
1answer
106 views
Using unobtrusive Ajax but still running Javascript of the page being fetched
I want to start with pages that work without Javascript, then add Javascript fanciness and finally add some bits of Ajax.
This all seems to keep stuff clean, I was very happy with my first ...
0
votes
0answers
37 views
disable enable unobtrusive validation mvc
I have a wizard which contains a very large form. The wizard has an area where the user chooses one of two options which shows and hides a div with other input elements. The problem is that the ...
0
votes
1answer
198 views
asp.net MVC3 unobtrusive validation causes IE8 browser to hang
I am using unobtrusive validation to validate a form. It works in most of the browsers - IE7, IE8 in compatibility mode, FF and Chrome. However, in IE8 stand-alone mode, it fires the validation and ...
0
votes
2answers
68 views
How do I remove the asterisk produced by MVC3 unobtrusive validation?
I've upgraded my .net MVC project to MVC3 and am now playing around with the build in client validation. I noticed that the javascript adds an asterisk * after each input field in all of my older ...
0
votes
2answers
213 views
ASP .NET MVC 3 - Submitting an Ajax form redirects instead of updating within page
I'm submitting an Ajax form but when it hits the controller the Request.IsAjax returns false and my page therefore redirects. Anyone know why it would do this?
I have searched the internet and made ...
0
votes
1answer
98 views
No data-val* attributes with Partial Views
I have a view with Html.BeginForm() that calls a partial view(mentioned below and has no Form) passing in the main viewmodel. The Model has Data Annotation.
On initial load of the page validation ...
0
votes
1answer
38 views
Jquery ready function conventions
what is the difference b/w
$(function(){
});
and
(function ($) {
//found this code in jquery uobtrusive ajax
}(JQuery));
first code snippet is simply shorthand for document ready. i have no ...
0
votes
1answer
162 views
ASP.Net MVC3 - Can we apply custom client validation at the level of EditorTemplate
If one of the fields in the Model is bound to a EditorTemplate, will the javascript unobtrusive data-val-* parameters be generated for the EditorTemplate if the field in the Model is decorated with ...
0
votes
5answers
131 views
SOA, unobtrusive JavaScript
Let us say I have a restful web service which can deal with DTOs in json format to perform a CRUD operation.
Let us also say I use jquery in an unobtrusive way to serialise my form at the frontend ...