View and MVC controller model not getting updated The Next CEO of Stack OverflowHow do you get a timestamp in JavaScript?How to get the children of the $(this) selector?Get current URL with jQuery?How can I get query string values in JavaScript?Get the current URL with JavaScript?How do I get the current date in JavaScript?Get selected text from a drop-down list (select box) using jQueryGet the size of the screen, current web page and browser windowHow do I update each dependency in package.json to the latest version?Why does my JavaScript get a “No 'Access-Control-Allow-Origin' header is present on the requested resource” error when Postman does not?
Strange use of "whether ... than ..." in official text
Traveling with my 5 year old daughter (as the father) without the mother from Germany to Mexico
Is this a new Fibonacci Identity?
Another proof that dividing by 0 does not exist -- is it right?
Could you use a laser beam as a modulated carrier wave for radio signal?
Does int main() need a declaration on C++?
Direct Implications Between USA and UK in Event of No-Deal Brexit
Upgrading From a 9 Speed Sora Derailleur?
Car headlights in a world without electricity
Can I cast Thunderwave and be at the center of its bottom face, but not be affected by it?
Why doesn't Shulchan Aruch include the laws of destroying fruit trees?
Early programmable calculators with RS-232
What steps are necessary to read a Modern SSD in Medieval Europe?
Creating a script with console commands
Is it okay to majorly distort historical facts while writing a fiction story?
MT "will strike" & LXX "will watch carefully" (Gen 3:15)?
Arrows in tikz Markov chain diagram overlap
pgfplots: How to draw a tangent graph below two others?
Raspberry pi 3 B with Ubuntu 18.04 server arm64: what pi version
Incomplete cube
How exploitable/balanced is this homebrew spell: Spell Permanency?
How dangerous is XSS
How can I replace x-axis labels with pre-determined symbols?
How to unfasten electrical subpanel attached with ramset
View and MVC controller model not getting updated
The Next CEO of Stack OverflowHow do you get a timestamp in JavaScript?How to get the children of the $(this) selector?Get current URL with jQuery?How can I get query string values in JavaScript?Get the current URL with JavaScript?How do I get the current date in JavaScript?Get selected text from a drop-down list (select box) using jQueryGet the size of the screen, current web page and browser windowHow do I update each dependency in package.json to the latest version?Why does my JavaScript get a “No 'Access-Control-Allow-Origin' header is present on the requested resource” error when Postman does not?
I have a view as below:
I changed the value to 8000.This data is not getting passed to my model on click of a button.Edit is the method within my controller.When click is invoked even though I changed value the original state of model value 9000 is being returned.I might be missing something really simple.Can you please help identify
Controller Call:
public ActionResult Edit(Model model)
$('#saveall-button').click(function (s) {
s.preventDefault();
var ModelData = GetModel();
$.ajax(
url: '@Url.Action("Edit", "Controller")',
type: "POST",
data: model: ModelData ,
success: function ()
console.log("Successfully saved");
,
error: function (err)
console.log(err);
);
<script>
function GetModel()
return @Html.Raw(Json.Encode(Model));
javascript jquery asp.net-mvc asp.net-mvc-4
add a comment |
I have a view as below:
I changed the value to 8000.This data is not getting passed to my model on click of a button.Edit is the method within my controller.When click is invoked even though I changed value the original state of model value 9000 is being returned.I might be missing something really simple.Can you please help identify
Controller Call:
public ActionResult Edit(Model model)
$('#saveall-button').click(function (s) {
s.preventDefault();
var ModelData = GetModel();
$.ajax(
url: '@Url.Action("Edit", "Controller")',
type: "POST",
data: model: ModelData ,
success: function ()
console.log("Successfully saved");
,
error: function (err)
console.log(err);
);
<script>
function GetModel()
return @Html.Raw(Json.Encode(Model));
javascript jquery asp.net-mvc asp.net-mvc-4
can you give the implementation for GetModel() function ?
– Vishnu
Mar 21 at 20:03
please post all the relevant parts of your model, view and controller.
– GregH
Mar 21 at 20:04
Well, assuming I'm reading your code correctly, you setModelData
once, and don't actually modify it - you'rePOST
ing the same/original data
– EdSF
Mar 21 at 21:38
Post your MVC code too .
– Haroon nasir
Mar 22 at 6:58
EdsF yes you are right. I was looking for a way to get the UI updates in javascript
– Jois_Cool
Mar 22 at 17:58
add a comment |
I have a view as below:
I changed the value to 8000.This data is not getting passed to my model on click of a button.Edit is the method within my controller.When click is invoked even though I changed value the original state of model value 9000 is being returned.I might be missing something really simple.Can you please help identify
Controller Call:
public ActionResult Edit(Model model)
$('#saveall-button').click(function (s) {
s.preventDefault();
var ModelData = GetModel();
$.ajax(
url: '@Url.Action("Edit", "Controller")',
type: "POST",
data: model: ModelData ,
success: function ()
console.log("Successfully saved");
,
error: function (err)
console.log(err);
);
<script>
function GetModel()
return @Html.Raw(Json.Encode(Model));
javascript jquery asp.net-mvc asp.net-mvc-4
I have a view as below:
I changed the value to 8000.This data is not getting passed to my model on click of a button.Edit is the method within my controller.When click is invoked even though I changed value the original state of model value 9000 is being returned.I might be missing something really simple.Can you please help identify
Controller Call:
public ActionResult Edit(Model model)
$('#saveall-button').click(function (s) {
s.preventDefault();
var ModelData = GetModel();
$.ajax(
url: '@Url.Action("Edit", "Controller")',
type: "POST",
data: model: ModelData ,
success: function ()
console.log("Successfully saved");
,
error: function (err)
console.log(err);
);
<script>
function GetModel()
return @Html.Raw(Json.Encode(Model));
javascript jquery asp.net-mvc asp.net-mvc-4
javascript jquery asp.net-mvc asp.net-mvc-4
edited Mar 21 at 20:18
Jois_Cool
asked Mar 21 at 19:59
Jois_CoolJois_Cool
152213
152213
can you give the implementation for GetModel() function ?
– Vishnu
Mar 21 at 20:03
please post all the relevant parts of your model, view and controller.
– GregH
Mar 21 at 20:04
Well, assuming I'm reading your code correctly, you setModelData
once, and don't actually modify it - you'rePOST
ing the same/original data
– EdSF
Mar 21 at 21:38
Post your MVC code too .
– Haroon nasir
Mar 22 at 6:58
EdsF yes you are right. I was looking for a way to get the UI updates in javascript
– Jois_Cool
Mar 22 at 17:58
add a comment |
can you give the implementation for GetModel() function ?
– Vishnu
Mar 21 at 20:03
please post all the relevant parts of your model, view and controller.
– GregH
Mar 21 at 20:04
Well, assuming I'm reading your code correctly, you setModelData
once, and don't actually modify it - you'rePOST
ing the same/original data
– EdSF
Mar 21 at 21:38
Post your MVC code too .
– Haroon nasir
Mar 22 at 6:58
EdsF yes you are right. I was looking for a way to get the UI updates in javascript
– Jois_Cool
Mar 22 at 17:58
can you give the implementation for GetModel() function ?
– Vishnu
Mar 21 at 20:03
can you give the implementation for GetModel() function ?
– Vishnu
Mar 21 at 20:03
please post all the relevant parts of your model, view and controller.
– GregH
Mar 21 at 20:04
please post all the relevant parts of your model, view and controller.
– GregH
Mar 21 at 20:04
Well, assuming I'm reading your code correctly, you set
ModelData
once, and don't actually modify it - you're POST
ing the same/original data– EdSF
Mar 21 at 21:38
Well, assuming I'm reading your code correctly, you set
ModelData
once, and don't actually modify it - you're POST
ing the same/original data– EdSF
Mar 21 at 21:38
Post your MVC code too .
– Haroon nasir
Mar 22 at 6:58
Post your MVC code too .
– Haroon nasir
Mar 22 at 6:58
EdsF yes you are right. I was looking for a way to get the UI updates in javascript
– Jois_Cool
Mar 22 at 17:58
EdsF yes you are right. I was looking for a way to get the UI updates in javascript
– Jois_Cool
Mar 22 at 17:58
add a comment |
0
active
oldest
votes
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288395%2fview-and-mvc-controller-model-not-getting-updated%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288395%2fview-and-mvc-controller-model-not-getting-updated%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
can you give the implementation for GetModel() function ?
– Vishnu
Mar 21 at 20:03
please post all the relevant parts of your model, view and controller.
– GregH
Mar 21 at 20:04
Well, assuming I'm reading your code correctly, you set
ModelData
once, and don't actually modify it - you'rePOST
ing the same/original data– EdSF
Mar 21 at 21:38
Post your MVC code too .
– Haroon nasir
Mar 22 at 6:58
EdsF yes you are right. I was looking for a way to get the UI updates in javascript
– Jois_Cool
Mar 22 at 17:58