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?










0















I have a view as below:
enter image description here



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));










share|improve this question
























  • 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're POSTing 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















0















I have a view as below:
enter image description here



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));










share|improve this question
























  • 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're POSTing 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













0












0








0








I have a view as below:
enter image description here



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));










share|improve this question
















I have a view as below:
enter image description here



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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 set ModelData once, and don't actually modify it - you're POSTing 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











  • 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 POSTing 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 POSTing 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 POSTing 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












0






active

oldest

votes












Your Answer






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
);



);













draft saved

draft discarded


















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















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript