Tagged Questions
-2
votes
5answers
46 views
Read the first column values of a HTML table with jquery
I got a table:
<table id="ItemsTable" >
<tbody>
<tr>
<th>
Number
</th>
<th>
Number2
</th>
</tr>
...
0
votes
0answers
25 views
IE Issue: IE + MVC3 + Fineuploader
I am having what appears to be an issue with Internet Explorer and it's default security settings for internet sites.
Im using MVC3 with Fineuploader
When I try to upload a file it runs the ...
0
votes
1answer
18 views
Setting asp.net MVC4 web api route url in javascript is returning empty string
Here is the code that I am using to set the api url:
var clientUrl = '@Url.RouteUrl("ApiControllerAction", new { httproute="", controller = "Client"})';
In my route.config the route looks like ...
0
votes
1answer
30 views
Javascript table on the fly
I've got some issues with javascript. Which causes some problems.
I'm using DevExpress MVC GridView, ASP.Net MVC 3 and javascript.
This my problem:
I've got a gridview, with for example customers.
I ...
0
votes
1answer
20 views
How to completely disable javascript validation in asp.net mvc 3
I want to write all the code that will be sent to the browser to have it under my complete control.
For this I need to completely disable javascript validation that is provided with aps.net mvc.
How ...
3
votes
3answers
39 views
asp.net mvc 3 access DateTime model property in javascript
In Asp.Net MVC I have a model containing a property of type DateTime.
How can I access it in JavaScript?
Using @(Model.PrimitiveTypeProperty) works just fine, but not when it comes to a property ...
-1
votes
0answers
25 views
updte database record using multiple forms in mvc3 [closed]
i have student table.student record should fill using two Ajax forms.1st form submit fill part of record and other part should fill when other form submitted
0
votes
1answer
52 views
Facebook login is reloading the page forever
This is the script on my webpage:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function () {
FB.init({
appId: '419349611446911', // App ID
...
0
votes
2answers
24 views
restrict user to temper the address url
i am creating a small web application using asp.net mvc3
http://localhost:1871/ManageMember/Admin/MemberDetail/3
for example i have the above url...as you can see that the parameter 3 is easily ...
0
votes
1answer
31 views
Passing values between view and JS
I have this view:
<script type="text/javascript" src='<%: Url.Content("~/Scripts/new.js") %>'></script>
<div class="col1">
Number of Questions:
</div>
<div ...
-8
votes
0answers
55 views
jQuery login form - Login button deactivates on click [closed]
In my website:
http://test.epress.me
For the login panel and register panel when you click login the dropdown panel opens, but the login button became not active and you can't click it to close the ...
0
votes
1answer
32 views
How to add another text box in reference to the 1st text box's input in asp.net mvc
How do i repeat a text box after i opt for option "next" in mvc 3 and then add all the integer values entered into those text boxes.
suppose i entered 5 in one text box and then how to automatically ...
1
vote
2answers
68 views
How do I access descendants from a different branch in the same viewModel?
I am currently working on a website spa application and attempting to use knockout.js. it's on an mvc platform with and a dbdatacontroller api using upshot for data and javascript view models. I have ...
0
votes
0answers
20 views
Custom search dropdown div results from Child Action
I am having an issue with created a custom DIV that appears when a user types in the search box and otherwise disappears if there is no text in the search box. I would like the div to contain an ...
2
votes
1answer
28 views
Hightlighted Check box inside a webgrid is not getting selected in IE7
My application is in MVC 3 and i am using razor engine,I am trying to select first item(default highlighted check box ) inside a web grid,it is not getting selected in IE7,here is the code
...