All Questions
866 questions
0
votes
1
answer
46
views
Getting Dynamically added table row selected Id from the Javascript
In my application, Here adding new rows with the dynamic ID assigned from the loop.
In the view, I'm creating a Purchase Order, and here I adding the rows to the table.
So Here When the Select value ...
1
vote
1
answer
227
views
Intermittent 411 error for AJAX call on different browsers
I have an older C# MVC 4.7 web app that has a specific $.post call. Running locally from Visual Studio 2019 in any browser, I have no problem at all. The call goes through and posts the partial page ...
0
votes
1
answer
743
views
Calling Partial View Using JQuery
I have a partial view defined like this in my /Shared folder
<div id="myProducts">
@Html.Partial("_ProductsList",Model)
</div>
I want to load _ProductsList through ...
0
votes
0
answers
226
views
How to get the error message during a jquery post while using aps.net mvc?
I'm using 2019 ASP.NET MVC with jquery 3.4.1. I'm trying to get the error message when I make a jquery ajax post. To simulate an error I mispelled the method in the controller being called by ajax. ...
1
vote
0
answers
366
views
How to make button click automatic in MVC view using jquery?
I have developed an MVC application and want to make my button click automatic.
In this I want my button to click daily at 10 p.m. automatically.
This is my button in my View.
<a href="#"...
0
votes
0
answers
115
views
how to use autocomplete on asp.net mvc
I want know how to use autocomplete with database using ajax and the data get faster on local server and Main server also
And i try this script
$("#SI").autocomplete({
source: function (...
0
votes
0
answers
46
views
How to copy TD table values from jQuery to TextBoxFor MVC4
I need to copy the results from a jQuery table and pass it to TextBoxBox.
I have seen examples of how to copy TextBox to TextBox but in this case I require the Jquery table to TextBox
jQuery Table:
...
1
vote
0
answers
49
views
MVC4 Razor Modal not showing value passed into custom Javascript function with the onclick event handler
The modal opens. The "Id" value is displayed in the readonly textbox with id = "Id". But the Description value does not display in the readonly textbox with the id = "...
0
votes
1
answer
45
views
How to check duplication of value not insert in Table?
Hi I have one issue in MVC JQuery. please resolve this issue. I really appreciate your help. Let me explain you my concern.
Actually I have a dropdown in which there is some list of items and i am ...
0
votes
2
answers
1k
views
Get uploaded file on submit button C# MVC
I can able to upload file on on-change of input file
without using HTML helper class.but I need to read and get data of uploaded text file on submit button.
Below code which I am using in html :
<...
0
votes
1
answer
58
views
Issue adding rows to DOM table on MVC4
I have a "DOM" list in MVC 4 using jQuery to add elements dynamically but at the moment of removing all the elements
The table no longer allows me to add more elements, I have tried to use length and ...
3
votes
0
answers
723
views
docx mimetype returning incorrect "application/octet-stream"
from jquery fileupload control uploading word document(.docx), it is returning mimetype as "application/octet-stream" instead of "application/vnd.openxmlformats-officedocument.wordprocessingml....
0
votes
0
answers
176
views
How i can append rows in table using Jquery?
I am getting an array object from TagTargets action method to View using ajax call.This method is returning name,value,min,max.I want to append each value in a new table row. I am using for loop for ...
0
votes
1
answer
37
views
ASP.NET MVC 4 submit 2 forms per order with one button
I have a function in jQuery which submits to 2 forms in ASP.NET MVC 4.
What can I implement so that the first form called "fdata" is executed and once I finish checking that the submit has been ...
0
votes
2
answers
420
views
Is there any way to submit 3 forms with 1 submit button mvc
I have a project in which I have to submit 3 different forms using one Submit Button
I have a view in which I Have three tabs with 3 different forms and I want to submit all forms with a one submit ...