Unobtrusive JavaScript is a general approach to the use of JavaScript in web pages.
1
vote
5answers
45 views
call multiple functions from single event with unobtrusive javascript
I have an input element
<select id="test"></select>
on change I want to call multiple functions
$('#test').change(function1, function2);
functions for now are just alerts for now
...
1
vote
2answers
44 views
Better JavaScript Organisation and Execution The Unobtrusive Way - Self-Executing Anonymous Func
I'm slowly getting a better understanding of JavaScript but I'm stuck on how best to tackle this particular organization/execution scenario.
I come from a C# background and am used to working with ...
1
vote
1answer
73 views
should i use unobtrusive javascript in asp mvc instead of writing my own validation code?
The javascript code for client validations is already written from scratch and is perfectly
working. But to make our solution more scalable and minimize lines we are thinking of replacing our ...
1
vote
5answers
58 views
get data- attributes values without pass HTML element id
I have INPUT HTML tag with type as hidden in view.It looks as follows:
<input type="hidden" data-abc-value1="value1" data-abc-value2="value2" data-abc-
value3="value3"/>
I ...
0
votes
1answer
21 views
Configure the Javascript function + Html Helper
Is there a way to configure a Javascript(which accepts few parameters) and initialize a function with user specified parameters in an unobtrusive way with data-attributes?
Any reference would be ...
0
votes
1answer
107 views
ASP.NET MVC4 Ajax.ActionLink replaces entire page
In my view I have:
@section Header {
@Scripts.Render("~/bundles/jqueryval")
}
<div>
<div>@Ajax.ActionLink("Test", "CurrentTime", new AjaxOptions { UpdateTargetId = "some_div", ...
0
votes
0answers
48 views
unobtrusive jquery asp.net mvc, Object doesn't support property or method 'valid' ,
I need to trigger form validations in my mvc view on clicking a button other than submit. I am using $('form').valid() like this:
This gives me a console error in IE as 'Object doesn't support ...
0
votes
1answer
100 views
ASP.NET MVC Script bundle not rendered
I've included the following line in the BundleConfig.cs file:
bundles.Add(new ScriptBundle("~/bundles/jqueryajax").Include(
"~/Scripts/jquery.unobtrusive-ajax.min.js"));
However when I try to ...
1
vote
0answers
54 views
Converting To Using Unobtrusive JavaScript
I have a desire to understand how to better structure my JavaScript efforts on a current MVC project and I was wondering if someone would be able to help illustrate a specific example for me from a ...
1
vote
1answer
58 views
link_to_remote attributes/arguments in rails 3
I'm trying to upgade from rails 2.3 to 3.0 and I've found that link_to_remote in rails 2 should be changed to link_to in rails 3 with :remote => true attribute.
And unobtrusive javascript(UJS) for ...
0
votes
1answer
55 views
client side decimal validation isn't working as it should
I have a MVC4 application with unobstrusive javascript client-side validation. This is working fine except for decimal validation. I am encoutering some strange and annoying behaviour.
The decimal ...
0
votes
2answers
113 views
Unobtrusive Javascript onclick
I was recently reading on Unobtrusive javascript and decided to give it a shot. Whether or not I decide to use this style is to be determined at a later time. This is just for my own curiosity and not ...
0
votes
0answers
35 views
How create custom unobtrusive validate
Script:
<script type="text/javascript">
$(function () {
var $jQval = $.validator;
$jQval.addMethod('custrequired', function (value, element, param) {
...
0
votes
1answer
82 views
MVC 4 Culture conflict
I'm working on a intranet web application using MVC 4 and Entity Framework. Since the beginning of the development, I have an issue which I couldn't resolve. To illustrate what I'm saying, here is an ...
3
votes
2answers
392 views
Numeric Range validation does not work properly in jquery.validate.unobtrusive.js
I'm using jQuery Validation Plugin, v1.11.0,2/4/2013 with jquery.validate.unobtrusive.js.
I guess I face a bug of Range validation for numeric field: Validation compares String value with String of ...
1
vote
1answer
98 views
unobtrusive javascript not working in Rails app;does not work without refresh
I have been trying to follow the rails cast http://railscasts.com/episodes/205-unobtrusive-javascript
But my need is a bit different than what is shown here. I have a form in which there is a div ...
0
votes
2answers
45 views
Unobtrusive JavaScript on a series of buttons
I'm looking into Unobtrusive JavaScript, suggesting the JavaScript should be separated from HTML.
In my page, I use jQuery 1.9.1 with jQuery Migrate plugin 1.1.1 . I use <li> to simulate menu ...
6
votes
5answers
179 views
What are the differences between using data-attributes and class / ID for javascript behaviour?
I have been working on an application, the front-end is primarily using jQuery.
We rely on certain classed elements being present on the page so that we can attach behaviour to them. For example:
...
0
votes
0answers
64 views
Qunit Javascript unit testing
I am looking for a reference on how to write unit test cases for unobstrusive javascript client validation using Qunit framework:
jQuery.validator.addMethod('requiredifnotempty',
...
0
votes
1answer
416 views
ASP.Net MVC - Client side validation breaks after a partial refresh?
I have a page that contains a search bar, and on default it displays a list of items below.
Each item is wrapped inside an ajaxform so that the user can update the quantity.
The client side validation ...
0
votes
0answers
51 views
How to refactor link_to_function using unobustrive JS in helper?
I am using link_to_function in one of my ApplicationHelper method:
def link_to_add_fields(name, f, association)
new_object = f.object.class.reflect_on_association(association).klass.new
fields = ...
0
votes
0answers
207 views
Unit Testing Unobtrusive Javascript custom validation in MVC3 using Qunit
We have implemented Unobtrusive Javascript custom validation like RequiredIfEmpty,RequiredIfNotEmpty
ex:
jQuery.validator.addMethod('requiredifnotempty',
function(value, element, parameters) {
...
1
vote
0answers
79 views
Ajax.ActionLink Navigates to new Page
Using ASP .NET MVC 4.5, jQuery 1.8.3 and Microsoft jQuery Unobtrusive Ajax v 2.0.30116.0.
I have the following code in a partial view:
@Ajax.ActionLink("Delete", "DeletePost", new AjaxOptions { ...
0
votes
1answer
121 views
Render partial for each element in list using Rails unobtrusive javascript
My controller returns a list of users and renders a javascript file (unobtrusive javascript). I want to loop through that list of users and render a partial for each into a div. I have the following ...
0
votes
1answer
221 views
Ajax.ActionLink created from Ajax.BeginForm in a RenderPartial View
I would like to confirm if this limitation is by design or if I'm doing something wrong:
I have a View with two RenderPartials:
@model Heelp.ViewModels.CompanyIndexViewModel
@{ ...
1
vote
0answers
83 views
Unobtrusive Google Maps API Javascript in Rails View
I have this javascript code inside my app/views/people/show.html.erb. It uses google maps api v3. But the thing is that this is very obtrusive. What I wanted is that I want the js codes to be inside ...
0
votes
1answer
129 views
Unobtrusive JavaScript - Separate JS File Not Found
Using the concept unobtrusive JavaScript, I'm trying, for the first time, to place my JavaScript in a separate file from the HTML. But, no matter what I do, I get an error that the file wasn't found.
...
10
votes
4answers
370 views
Multipage vs Single Page and Unobtrusive Javascript
I have a section of a site with multiple categories of Widget. There is a menu with each category name. For anybody with Javascript enabled, clicking a category reveals the content of the category ...
1
vote
3answers
151 views
Passing Javascript variables to Rails partials
I am new in Rails and I am struggling on an apparently easy task.
I have a (stripped down) form:
<%= form_for @order, html: { :class => 'form-inline' } do |f| %>
<fieldset>
...
1
vote
1answer
50 views
:disable_with but don't resize
Anyone familiar with the :disable_with option will know that it gets resized on click to accomodate the new text entering the button. I'd like to have the button keep its original size regardless of ...
0
votes
2answers
61 views
pass variable through unobtrusive JavaScript
I would like to pass variable from a button to an event handler, but I don't know how what's the right way to do that. Both line x and line y are no good. But I need something like that.
in html head
...
0
votes
0answers
96 views
Load next N posts with asp.net mvc and unobtrusive ajax
I am trying to bring up a simple page that would load next 10(N) news on page in asp.net mvc project using the unobtrusive ajax functionality. Find the code i have come up with below
Controller
...
0
votes
0answers
43 views
Rails: UJS not executing
I have some UJS that's meant to replace a partial in my view. The .js file looks like this:
transition("#content_container", "<%= escape_javascript(render 'users/show') %>");
...
0
votes
2answers
133 views
Call javascript function without inline event
I am trying to highlight cells with user preferred colors. A user will select a cell and drag mouse to select multiple cells that they want to color with the selected color. How can I trigger the ...
1
vote
0answers
255 views
unobstrusive javascript validation without strongly typed html helper
Can we generate the unobtrusive javascript validation attributes
(the data annotation from model, such as
data-val-number="The field WI % must be a number."
data-val-range="The field WI % must be ...
0
votes
3answers
229 views
C# Regex does not work in Javascript, MVC4, Custom RegularExpressionAttribute, IClientValidatable
I have a custom regular expression attribute which implements IClientValidate so that I can use it with unobtrustive validate.
When I run it I get the following error in FireBug
SyntaxError: ...
0
votes
2answers
109 views
Standard coding practices for javascript [closed]
Explaination/Info (Scroll right down to see the summarized questions)
I am implementing a rather large web application and I need some advice concerning best practices when it comes to Javascript.
...
0
votes
2answers
736 views
Find user location using jQuery/JS (without google geolocation api)?
Is there a way to find a clients location on a website using just jQuery. For example, if a user comes to my site, how could I find out what their approximate location is just using jQuery. For ...
0
votes
0answers
67 views
mvc unobtrusive compare validation on variable length list
I've implemented this solution on variable length lists
http://blog.stevensanderson.com/2010/01/28/validating-a-variable-length-list-aspnet-mvc-2-style/
...along with the client side validation as ...
0
votes
2answers
577 views
MVC4 using Ajax.BeginForm not sending ViewModel to controller?
This is what is getting sent to the server:
...
0
votes
1answer
173 views
How to appy font color from li:hover to inner a link text using CSS
<!DOCTYPE html>
<html lang="fr">
<head>
<style>
aside#_left{
width:239px;
margin-left:0px;
margin-right:1px;
...
5
votes
3answers
191 views
KendoUI data- attribute event handlers and 'this' scope
It seems that kendo's unobtrusive-javascript style event calls break this in my method context.
Say I have an object Foo, instantiated as bar = new Foo()
function Foo(){};
Foo.prototype.name = ...
2
votes
2answers
268 views
How can I find a web visitors location using javascript? [closed]
Google analytics is able to find a visitors location using a javascript library. How can this be accomplished with javascript?
1
vote
2answers
65 views
Dynamic Loading Of Javascripts
I am currently building an Ajax web application using JQuery that allows for users to have the same page open multiple times in the same area. By allowing this though it tends to cause conflicts with ...
0
votes
1answer
53 views
How to trigger javascript function from Rails view?
I have this image in my view, which I would like to link to a javascript function when clicked (coffeescript to be precise:
<%= image_tag("minus_un.png", {:id =>"entree-show-minus-2", :title ...
0
votes
0answers
75 views
How can I link the validation/ binding to the DisplayFormat attribute?
I want to make it simple: if a model property has the DisplayFormat attribute with the DataFormatString and ApplyFormatInEditMode properties set, I want to unobtrusively validate the data with the ...
0
votes
1answer
95 views
redirect with jquery in rails
I'm sure this is simple, I just haven't grasped it yet...
I have a big div that I want the user to click it and it will send him to it the model he clicked (like in SO, but clicking anywhere on the ...
0
votes
1answer
131 views
Asynchronous Javascript loading different behaviour
I am developing a widget, and am using extJS framework (along with stomp,orbited servers). It requires 5 different javascript files. To avoid impacting load time for users, I am trying to load them ...
0
votes
1answer
106 views
simple solution to run third party javascript-tags in paralell? (“asyncronously”)?
is there any simple solution to run third party javascript-tags in paralell?
just a few scripts on a html page, which shall not load one after another/sequencial
i know for advertisments it works ...
1
vote
2answers
730 views
ASP.NET MVC jQuery validation: how to show one message for all required fields
I got many [Required] fields in my model.
And, in traditional MVC way, I will add @Html.ValidationMessageFor() for each required textbox.
Then, if user doesn't type anything for 5 textboxes, 5 ...



