Tagged Questions
0
votes
2answers
33 views
ASP.NET MVC - Propagate a server side event to the client
In my ASP.NET MVC app, the user clicks a button on the UI to make a phone call. An ajax request goes to the MVC app, which calls a phone dialer -- a method in library that calls an external component ...
0
votes
1answer
36 views
How should I auto log someone away out of my site?
So I'm building a website in MVC4, and I have a series of services, of which I have built a into a dll which wraps all of the calls and automatically changes the xml into specified objects. So instead ...
-2
votes
1answer
30 views
web api not called from other server of asp.net mvc 4
I am using asp.net web api of mvc 4 in my application.
When I am calling that web api from my computer It is getting data
$.getJSON("api/MyAction/?dt=" + dateString,
function (data) ...
0
votes
3answers
37 views
How to show message from resources with special characters?
I want to show messages in alerts from resources in mvc,
which contains special characters too in which double quotes or single quotes also comes and it generate me jquery error of quotes if my alert ...
1
vote
2answers
52 views
How to use Knockout's data-bind attribute in Mvc helpers like Html.EditorFor()
I tried this
@Html.EditorFor(model => model.Name, " ", new { data_bind = "value:firstName" });
and other possible overloades but none of them seem to work.
The rest of code:
<script ...
0
votes
4answers
43 views
how can i set the drop down as readonly in jquery? [duplicate]
I want to set the drop down as readonly.
For that I user the code readonly="readonly".But its not working in asp.netmvc4.How can I solve this problem?Please help
0
votes
2answers
32 views
How to check model values in View Model from Javascript in MVC4
I want to check that a Model value is NULL or NOT NULL in my view model in JavaScript, using mvc4.
How would I check this?
How do I get the values from my Model in JavaScript in the View model?
0
votes
3answers
79 views
ASP.NET MVC4 - JQuery jqFancyTransitions error: TypeError: $(…).jqFancyTransitions is not a function
I have my Index.cshtml view, and for some reason, the JQuery is having a hard time firing the jqFancyTransitions method (it's acting as if the jqFancyTransitions library isn't included). The ...
0
votes
0answers
23 views
Hide/Disable Weekends from Kendo UI dateTimepicker
I am using kendo DateTimePicker and just don't want user to select from Weekends.
I have tried assigning MonthTemplate() aproach as follows:
@(Html.Kendo().DateTimePickerFor(m => Data)
...
0
votes
1answer
32 views
Javascript not being used and object reference error on submit of form with attached model
I am working on a password reset functionality for a website that updates a users password in a backend database. I am successfully able to change a users password by entering a strong password i.e. ...
0
votes
1answer
45 views
why isn't jscript displaying my items?
I have the following Javascript:
$(document).ready(function () {
$.getJSON("api/products/",
function (data) {
$.each(data, function (key, val) {
// Format ...
0
votes
1answer
37 views
Posting datatype html to ASP.NET WebAPI
Have some problem to post html datatype to a webapi post method.
This is the post code
$('form#katalog').submit(function(e) {
e.preventDefault();
var data = {
action: ...
2
votes
3answers
69 views
MVC-4 FileUpload success message
I am having few problems with displaying a success message after a file has been uploaded.
I first tried with using the ViewBag.Message , and it works good and display the Success message after the ...
0
votes
0answers
18 views
opening client default mail application with lot of bcc address
I've implemented a functionality in my MVC 4 web application where the user can select a set of email addresses from a list and by clicking a button it opens the default mail client in the client ...
2
votes
1answer
69 views
Close Popup Windows MVC Controller
I have a popup window opened when clicked a link on screen, the view that has the link is _DetailsSurvey. After clicking the link pop up window opens with the content of _EditSurvey view. At the end ...
1
vote
2answers
64 views
How can i move items from one Listbox to another in ASP MVC 4?
How is it possible to move items from one Listbox to another Listbox in the same view without having to reload the entire page but just update the two listboxes in ASP MVC 4?
It is in order to have ...
1
vote
0answers
66 views
Getting AJAX to not load a new page after submitting a form and instead render a partial view or nothing
I'm in a bit of a bind here, I am trying to submit a form using ajax, all goes well and dandy until after the server has done it's thing, it decides to load to the action onto a new page, which is ...
1
vote
2answers
58 views
Partial View does not show when passed a parameter
I have a partial view for a create function that uses a dialog box and pops up whenever i click a specific button within the index page (the controllers for the index and create page are different). ...
0
votes
1answer
40 views
What is the best solution to check if dataset has been changed (added / edited ,deleted records)?
I'm working on a project where the user has to be able to add or edit hours that he will work or worked. The dataset I'm using for this I retreive from ASP.net / MVC 4. What is the best way to check ...
0
votes
1answer
242 views
javascript/jquery modal popup dialog MVC 4 / render partial view
I have been using the DevExpress PopupControl. They look nice and pretty but they do not display the scrollbars on iOS/Android devices. So I want to come up with an alternative. My immediate use is ...
7
votes
5answers
80 views
MVC4 view is not detecting JQuery
I have a @Html.DropDownList which calls a jquery function. But it failed to call the function.
I have tried-
$(document).ready(function () {
$('.test').change(function () {
alert("1"); ...
1
vote
0answers
58 views
Server side tracking clicks with unique visitors
I'm trying to create a little ad system with ASP.NET MVC 4 to track impressions and clicks. What would be the best way of doing this to calculate unique visitors? Is there a solution out there that ...
1
vote
3answers
57 views
How to do permission-based UI display
UPDATE-
I have altered the question based on new information:
We have a small application that is returning Search results in a grid. There is only one controller action because this is all the ...
1
vote
0answers
45 views
Save dynamically generated javascript into html file OR get this content in a string and send to Controller
I have an MVC4 application where I render a View but most of the content is generated dynamically with javascript after I pass a parameter. I would like to know how I could either save all this html ...
0
votes
0answers
31 views
How do I listen for a date change in JavaScript when using Html.DatePickerFor
I have a date input field on a page in my ASP.Net MVC 4 application. I need some client side validation to run when the user changes this date.
The code to generate this field is:
...
0
votes
0answers
54 views
Kendo UI treeview posting hierarchy back to server
I need to create folder structure in ftp as that of tree structure on my view. I want to allow user to edit tree structure before creating folders. I have TreeView with server binding:
@model ...
0
votes
0answers
55 views
Regarding multiple master pages in mvc4
I have one master page named Site.Master in which I have tabs logic
<div id="menubar">
@Html.SimpleNav(new[] {
new SimpleNavItem{Text="Home", Action="Index", Controller = ...
1
vote
0answers
43 views
Javascript menu jqsimplemenu MVC
Im using MVC to show a menu.
I installed the MvcSiteProvider and with jqsimplemenu I make it work.
But in the mvc.sitemap, if I set an item not clickable, the menu will go crazy.
I need to set the ...
0
votes
0answers
32 views
Updating page content using JS during asynchronous operation
I am trying to solve an issue with webservice call in my MVC 4 project. What I am doing is that when user submits form on page, I call webservice and wait for result. Meanwhile server returns ...
0
votes
1answer
37 views
db inserting with script help. (Mvc )
Hello I'm a bit lost and getting real short in time.
I need to create something like this script
$(function () {
var i = 0;
$('#addButton').click(function () {
...
0
votes
2answers
76 views
I am trying to minifying javascript files using mvc4 bundle feature
I want to bundle all my javascript files so it should hit to server only once. but with this i am facing a problem.
bundles.Add(new ScriptBundle("~/LayoutJs").Include(
...
2
votes
1answer
62 views
JavaScript to choose droplist value not working in ASP .NET MVC4 with HTMLHelper and “All”
I'm using JavaScript to get the selected value of a drop list in MVC 4 but have an issue I think is caused by the HTMLHelper.
CONTROLLER - to populate droplist
private string ...
0
votes
1answer
55 views
Getting ID of a Div by the class, Nested Divs
In my ASP.NET MVC 4 project I want to add dynamically divs, and divs in those divs
But when I have 1 div in another div, they have to be linked with an ID
My problem is not knowing how to get that ID ...
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
2answers
155 views
Redirect to Action-Controller MVC 4 inside Jquery
I need a little help with this since I am very new to AJAX in general. In a given page that I have (a view) I display a button which brings up a form. What I ultimately want is to pass the data input ...
0
votes
0answers
57 views
Javascript or jQuery method to parse ASP.NET MVC Route URL
I'm building an ASP.NET MVC 4 website that needs to be available offline (HTML 5 manifests/caching), so I will be unable to take advantage of server side HTML generation.
Right now, I just have ...
1
vote
5answers
67 views
I want to detect if a user types a certain string into a textbox
I have a textbox that looks like this
<%= Html.TextBoxFor(model => model.ContactAddress, new { autocomplete = "off", maxlength = "75" })%>
in my javascript i have this
...
2
votes
1answer
113 views
'Object Expected' error in IE8 [JavaScript]
I keep getting an 'Object expected' error in IE8, works fine in Chrome & Firefox. The error points to this bit of script:
<script type="text/javascript">
var oEdit1 = new ...
2
votes
1answer
132 views
Manually Trigger Uploads with FineUploader on MVC 4
i'm trying to use FineUploader to be able to submit several files to the server on a single page using Asp-Net MVC 4. I'm using the code from the examples:
HTML:
<div ...
0
votes
1answer
138 views
Loading Bootstrap before Jquery UI in ASP.Net MVC 4/Hot Towel template
I am using MVC 4, Hot Towel templating and jQuery UI dialog.
The thing is that there is an issue between Bootstrap and jQuery UI that should be solved by loading Bootstrap before jQuery UI scripts.
...
0
votes
0answers
77 views
Display images in kendo grid column
the grid do not display anything, this is the code in the javascript method
columns: [
{ field: "Dimension", title: "Mois", width: "130px" },
{ field: "Value", title: "Variation CA", ...
1
vote
1answer
74 views
Cachebuster parameter caused by javascript postback?
In a previous question I was trying to work out why my site was so slow. Someone there answered correctly that according to the Fiddler screenshot below, all my javascripts on a certain page are ...
1
vote
3answers
87 views
How to find out why Javascript is downloading so slowly?
I have an ASP.NET MVC project, which is running as slow as molasses. I opened up Fiddler on one particular call, and found several calls where there's a lot of room for improvement, to say the least:
...
1
vote
4answers
61 views
how to get URL with two parameters in javascript?
i works in a MVC 4 project, and i have a small problem in my script, this is my script :
function IsReportCheckpoint(cc,carNum) {
var url = '/Home/IsReportAlertWebService/'+cc+',' + ...
0
votes
1answer
46 views
Planning tool JQuery / MVC 4
The webapplication I would like to build gives the user the possibility to select a period on a calendar. On the selected days they can write the start and end hour. The total amount of hours gets ...
0
votes
0answers
49 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
0answers
51 views
Kendo UI chart inside tabTsrip not showing
I have KendoChart that works fine. I want this chart inside a kendo tabStrip, where the chart is shown in the first tab and in the second tab I want the chart information in table-form.
Outside the ...
2
votes
1answer
55 views
Dynamically accessing properties of knockoutjs observable array
I am using the below code for handling sort functionality. It is working for me. But is there any way to make the code as common and so i can use it whenever needed.
<span class="sorting" ...
2
votes
2answers
174 views
TypeScript and ASP.NET MVC 4
How to use TypeScript with ASP.NET MVC 4?
I want my IDE to do these steps:
Compile (interpret) my typescript files (*.ts) by typescript compiler.
Minimize all the javascript by asp.net mvc 4 ...
0
votes
2answers
45 views
Clear text with JavaScript in MVC 4
I've the following search box:
@Html.TextBox("SearchString", "search...", new { @class = "SearchTxtBox" })
A text box with a default text "search...", I want to clear the text when the user enters ...





