Tagged Questions
-3
votes
2answers
49 views
Hide or display links on view depending on mouse click
So on my MVC application I want to display a link in the view, which when clicked allows a set of links to appear on screen through the following code:
<ul class="productmenu">
@foreach ...
0
votes
3answers
50 views
How do i apply Table Header color to Table body using JQuery
I am working on ASP.NET MVC pplication. It has functionality to show monthly figures using Table. It is showing according to the Quarter so it is dynamically creating. Each month showing as
Week -1 ...
0
votes
3answers
28 views
Accessing contents in a div in a controller action (ASP.NET MVC3 Application)
I have a div in my form in my view. Using javascript I use jqwidgets to generate the combo box.
Now in the form I also have the submit button. The rest of the contents in the form are passed as ...
0
votes
3answers
31 views
MVC: Javascript confirm for delete action not working
I'm pretty new to MVC and Javascript; I'm trying to make a delete action work; I'm using an ActionLink with a Javascript function for confirmation. The JAvascript confirm doesn't work, the delete ...
0
votes
3answers
32 views
change text of label on onchange event of @Html.TextboxFor in mvc3
i am working with MVC3 Razor. I want to change the text of label on onchange event of @Html.TextboxFor.
Here is my code for what i am trying:
On View:
@Html.TextBoxFor(x => x.ItnScanCaseCode, ...
0
votes
3answers
37 views
Button onclick inside whole clickable div
I have a whole clickable div.
This is my code:
<div onclick="location.href='@Url.Action("SubClass", "Product", new { id = productClass.HierarchyId })';" class="menu-class">
<img ...
0
votes
1answer
34 views
MVC: Set action name using javascript fails
I need to set the action a form posts to using javascript. I tried to do this:
$('form').get(0).setAttribute('action', formAction);
and
$("#form").attr('action', formAction);
In both cases, ...
0
votes
1answer
55 views
Document.ready not working on my login page
So, I have this login page (see code below) and Document.ready not working. Is the problem in the script? Could there be something in my code that would make the document.ready not work correctly?
I ...
0
votes
1answer
33 views
Javascript inconsistent behavior when website is deployed
We have an ASP.NET MVC website and the problem we have is this:
When the website is deployed, we see some strange Javascript related bugs, that never occur when running the website locally (on any of ...
1
vote
1answer
40 views
Does ajax can make a web application stateful?
I am a beginner with the concept of ajax. Please bear with me. From what I understand, ajax can return the information on a browser without the need of a refresh. Does it mean it stores ID in a ...
0
votes
4answers
37 views
MVC Ajax Call issue
In an MVC view I have,
a submit button where, I check for all the validation. If the validation is wrong I returns false. So that the form will not post.
However I was checking for a duplicate check ...
1
vote
3answers
63 views
Save Two forms at the same time using jquery or ajax?
Im planning to save 2 forms but the 1st form is where i get the Foreign key for the Second form
This is my Attempt to save this Using Javascript
$("#btnSave").click(function (e) {
...
0
votes
0answers
17 views
begin with Web gis application development ?
I want to Develop a Webgis application and want to know the right path to move ahead, So that I will start work smoothly.I am good in .net , c#, jquery, HTML, Ajax etc. Actually I am working on a ...
3
votes
1answer
45 views
Submitting two Forms is possible? asp.net mvc
I have two forms in a single page, and both have a save button respectively.
Whenever I click the other button, I want the changes that I added on the other form to be saved as well.
This is my code:
...
2
votes
4answers
83 views
If else condition on dropdown list on MVC
I have a two dropdown list on my web application. The populated data of two dropdown comes from a database. They contain the same data.
What I want is if one of the list is selected on the first ...