Is it possible to get the data from controller to cshtml? (JSON)










0














Is it possible to get the data of invalidTransferNo to CSHTML file? then pass through a modal inside of view.



Global Variable for the list of invalid transfer numbers.



 public List<string> invalidTransferNo;


Controller.cs



 [HttpPost]
public ActionResult SelectedTransferNoDeletion(List<string> selectedTransferNo, string deletionNotes)
for (int i = 0; i < selectedTransferNo.Count; i++)

var checkingTransferNo = deletePendingSrv.GetDeletionNotes(selectedTransferNo[i]);


if(checkingTransferNo.ToString().Equals(""))
var output = deletePendingSrv.SaveDeletionPending(selectedTransferNo[i], SessionUserInfo.Username, deletionNotes);


else
invalidTransferNo.Add(selectedTransferNo[i]);



return Json(BaseVariable.DEFAULT_SUCCESS);



Scripting (CSHTML)



 var selectedTransferNo;

$(".selectSaveButton").click(function ()

var deletionNotes = $('#selectedDeletionNotes').val();

$.ajax(
url: '/@Controller/SelectedTransferNoDeletion',
type: 'POST',
contentType:'application/json',
dataType: 'JSON',
data: JSON.stringify( selectedTransferNo: selectedTransferNo, deletionNotes: deletionNotes ),
success: function (response)

if (response != null)
alert(response); -- getting the data here pass through a text box or list of invalid transfer.



,
error: function (response)

alert(response);




);


);


I wanted to get the data of invalid transfer no list from controller to a view. Is it possible?










share|improve this question

















  • 1




    Yes, it's possible to display data from controller to view with AJAX. What's your current problem and what things not working? Try url: '/ControllerName/SelectedTransferNoDeletion' or url: '@Url.Action("SelectedTransferNoDeletion", "ControllerName")'.
    – Tetsuya Yamamoto
    Nov 13 '18 at 2:22







  • 1




    You can pass that from your GET action method via your view model. Add a new property of same type and assign that in your GET action. Read that in your view as Model.YourNewPropertyName
    – Shyju
    Nov 13 '18 at 2:27










  • Okay thanks guys ill double check, because i already used GET process. But i think i need some rest of my logic stuffs . I'll check it right away. Thanks! :D
    – Raven Supilanas
    Nov 13 '18 at 2:28











  • Just adding the property e.g. public List<string> InvalidTransferNo get; set; into base viewmodel should work for this scenario, and then pass it to controller as JSON object.
    – Tetsuya Yamamoto
    Nov 13 '18 at 2:29










  • Ok noted @TetsuyaYamamoto thanks! I am thinking about that scenario. But my code stops debugging on the first loop and it already returns the JSON Object. Because on my first loop and first data. It became true on the else condition after that it returns already my JSON Object through the view model.
    – Raven Supilanas
    Nov 13 '18 at 2:33
















0














Is it possible to get the data of invalidTransferNo to CSHTML file? then pass through a modal inside of view.



Global Variable for the list of invalid transfer numbers.



 public List<string> invalidTransferNo;


Controller.cs



 [HttpPost]
public ActionResult SelectedTransferNoDeletion(List<string> selectedTransferNo, string deletionNotes)
for (int i = 0; i < selectedTransferNo.Count; i++)

var checkingTransferNo = deletePendingSrv.GetDeletionNotes(selectedTransferNo[i]);


if(checkingTransferNo.ToString().Equals(""))
var output = deletePendingSrv.SaveDeletionPending(selectedTransferNo[i], SessionUserInfo.Username, deletionNotes);


else
invalidTransferNo.Add(selectedTransferNo[i]);



return Json(BaseVariable.DEFAULT_SUCCESS);



Scripting (CSHTML)



 var selectedTransferNo;

$(".selectSaveButton").click(function ()

var deletionNotes = $('#selectedDeletionNotes').val();

$.ajax(
url: '/@Controller/SelectedTransferNoDeletion',
type: 'POST',
contentType:'application/json',
dataType: 'JSON',
data: JSON.stringify( selectedTransferNo: selectedTransferNo, deletionNotes: deletionNotes ),
success: function (response)

if (response != null)
alert(response); -- getting the data here pass through a text box or list of invalid transfer.



,
error: function (response)

alert(response);




);


);


I wanted to get the data of invalid transfer no list from controller to a view. Is it possible?










share|improve this question

















  • 1




    Yes, it's possible to display data from controller to view with AJAX. What's your current problem and what things not working? Try url: '/ControllerName/SelectedTransferNoDeletion' or url: '@Url.Action("SelectedTransferNoDeletion", "ControllerName")'.
    – Tetsuya Yamamoto
    Nov 13 '18 at 2:22







  • 1




    You can pass that from your GET action method via your view model. Add a new property of same type and assign that in your GET action. Read that in your view as Model.YourNewPropertyName
    – Shyju
    Nov 13 '18 at 2:27










  • Okay thanks guys ill double check, because i already used GET process. But i think i need some rest of my logic stuffs . I'll check it right away. Thanks! :D
    – Raven Supilanas
    Nov 13 '18 at 2:28











  • Just adding the property e.g. public List<string> InvalidTransferNo get; set; into base viewmodel should work for this scenario, and then pass it to controller as JSON object.
    – Tetsuya Yamamoto
    Nov 13 '18 at 2:29










  • Ok noted @TetsuyaYamamoto thanks! I am thinking about that scenario. But my code stops debugging on the first loop and it already returns the JSON Object. Because on my first loop and first data. It became true on the else condition after that it returns already my JSON Object through the view model.
    – Raven Supilanas
    Nov 13 '18 at 2:33














0












0








0







Is it possible to get the data of invalidTransferNo to CSHTML file? then pass through a modal inside of view.



Global Variable for the list of invalid transfer numbers.



 public List<string> invalidTransferNo;


Controller.cs



 [HttpPost]
public ActionResult SelectedTransferNoDeletion(List<string> selectedTransferNo, string deletionNotes)
for (int i = 0; i < selectedTransferNo.Count; i++)

var checkingTransferNo = deletePendingSrv.GetDeletionNotes(selectedTransferNo[i]);


if(checkingTransferNo.ToString().Equals(""))
var output = deletePendingSrv.SaveDeletionPending(selectedTransferNo[i], SessionUserInfo.Username, deletionNotes);


else
invalidTransferNo.Add(selectedTransferNo[i]);



return Json(BaseVariable.DEFAULT_SUCCESS);



Scripting (CSHTML)



 var selectedTransferNo;

$(".selectSaveButton").click(function ()

var deletionNotes = $('#selectedDeletionNotes').val();

$.ajax(
url: '/@Controller/SelectedTransferNoDeletion',
type: 'POST',
contentType:'application/json',
dataType: 'JSON',
data: JSON.stringify( selectedTransferNo: selectedTransferNo, deletionNotes: deletionNotes ),
success: function (response)

if (response != null)
alert(response); -- getting the data here pass through a text box or list of invalid transfer.



,
error: function (response)

alert(response);




);


);


I wanted to get the data of invalid transfer no list from controller to a view. Is it possible?










share|improve this question













Is it possible to get the data of invalidTransferNo to CSHTML file? then pass through a modal inside of view.



Global Variable for the list of invalid transfer numbers.



 public List<string> invalidTransferNo;


Controller.cs



 [HttpPost]
public ActionResult SelectedTransferNoDeletion(List<string> selectedTransferNo, string deletionNotes)
for (int i = 0; i < selectedTransferNo.Count; i++)

var checkingTransferNo = deletePendingSrv.GetDeletionNotes(selectedTransferNo[i]);


if(checkingTransferNo.ToString().Equals(""))
var output = deletePendingSrv.SaveDeletionPending(selectedTransferNo[i], SessionUserInfo.Username, deletionNotes);


else
invalidTransferNo.Add(selectedTransferNo[i]);



return Json(BaseVariable.DEFAULT_SUCCESS);



Scripting (CSHTML)



 var selectedTransferNo;

$(".selectSaveButton").click(function ()

var deletionNotes = $('#selectedDeletionNotes').val();

$.ajax(
url: '/@Controller/SelectedTransferNoDeletion',
type: 'POST',
contentType:'application/json',
dataType: 'JSON',
data: JSON.stringify( selectedTransferNo: selectedTransferNo, deletionNotes: deletionNotes ),
success: function (response)

if (response != null)
alert(response); -- getting the data here pass through a text box or list of invalid transfer.



,
error: function (response)

alert(response);




);


);


I wanted to get the data of invalid transfer no list from controller to a view. Is it possible?







javascript c# json razor model-view-controller






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 13 '18 at 2:20









Raven SupilanasRaven Supilanas

466




466







  • 1




    Yes, it's possible to display data from controller to view with AJAX. What's your current problem and what things not working? Try url: '/ControllerName/SelectedTransferNoDeletion' or url: '@Url.Action("SelectedTransferNoDeletion", "ControllerName")'.
    – Tetsuya Yamamoto
    Nov 13 '18 at 2:22







  • 1




    You can pass that from your GET action method via your view model. Add a new property of same type and assign that in your GET action. Read that in your view as Model.YourNewPropertyName
    – Shyju
    Nov 13 '18 at 2:27










  • Okay thanks guys ill double check, because i already used GET process. But i think i need some rest of my logic stuffs . I'll check it right away. Thanks! :D
    – Raven Supilanas
    Nov 13 '18 at 2:28











  • Just adding the property e.g. public List<string> InvalidTransferNo get; set; into base viewmodel should work for this scenario, and then pass it to controller as JSON object.
    – Tetsuya Yamamoto
    Nov 13 '18 at 2:29










  • Ok noted @TetsuyaYamamoto thanks! I am thinking about that scenario. But my code stops debugging on the first loop and it already returns the JSON Object. Because on my first loop and first data. It became true on the else condition after that it returns already my JSON Object through the view model.
    – Raven Supilanas
    Nov 13 '18 at 2:33













  • 1




    Yes, it's possible to display data from controller to view with AJAX. What's your current problem and what things not working? Try url: '/ControllerName/SelectedTransferNoDeletion' or url: '@Url.Action("SelectedTransferNoDeletion", "ControllerName")'.
    – Tetsuya Yamamoto
    Nov 13 '18 at 2:22







  • 1




    You can pass that from your GET action method via your view model. Add a new property of same type and assign that in your GET action. Read that in your view as Model.YourNewPropertyName
    – Shyju
    Nov 13 '18 at 2:27










  • Okay thanks guys ill double check, because i already used GET process. But i think i need some rest of my logic stuffs . I'll check it right away. Thanks! :D
    – Raven Supilanas
    Nov 13 '18 at 2:28











  • Just adding the property e.g. public List<string> InvalidTransferNo get; set; into base viewmodel should work for this scenario, and then pass it to controller as JSON object.
    – Tetsuya Yamamoto
    Nov 13 '18 at 2:29










  • Ok noted @TetsuyaYamamoto thanks! I am thinking about that scenario. But my code stops debugging on the first loop and it already returns the JSON Object. Because on my first loop and first data. It became true on the else condition after that it returns already my JSON Object through the view model.
    – Raven Supilanas
    Nov 13 '18 at 2:33








1




1




Yes, it's possible to display data from controller to view with AJAX. What's your current problem and what things not working? Try url: '/ControllerName/SelectedTransferNoDeletion' or url: '@Url.Action("SelectedTransferNoDeletion", "ControllerName")'.
– Tetsuya Yamamoto
Nov 13 '18 at 2:22





Yes, it's possible to display data from controller to view with AJAX. What's your current problem and what things not working? Try url: '/ControllerName/SelectedTransferNoDeletion' or url: '@Url.Action("SelectedTransferNoDeletion", "ControllerName")'.
– Tetsuya Yamamoto
Nov 13 '18 at 2:22





1




1




You can pass that from your GET action method via your view model. Add a new property of same type and assign that in your GET action. Read that in your view as Model.YourNewPropertyName
– Shyju
Nov 13 '18 at 2:27




You can pass that from your GET action method via your view model. Add a new property of same type and assign that in your GET action. Read that in your view as Model.YourNewPropertyName
– Shyju
Nov 13 '18 at 2:27












Okay thanks guys ill double check, because i already used GET process. But i think i need some rest of my logic stuffs . I'll check it right away. Thanks! :D
– Raven Supilanas
Nov 13 '18 at 2:28





Okay thanks guys ill double check, because i already used GET process. But i think i need some rest of my logic stuffs . I'll check it right away. Thanks! :D
– Raven Supilanas
Nov 13 '18 at 2:28













Just adding the property e.g. public List<string> InvalidTransferNo get; set; into base viewmodel should work for this scenario, and then pass it to controller as JSON object.
– Tetsuya Yamamoto
Nov 13 '18 at 2:29




Just adding the property e.g. public List<string> InvalidTransferNo get; set; into base viewmodel should work for this scenario, and then pass it to controller as JSON object.
– Tetsuya Yamamoto
Nov 13 '18 at 2:29












Ok noted @TetsuyaYamamoto thanks! I am thinking about that scenario. But my code stops debugging on the first loop and it already returns the JSON Object. Because on my first loop and first data. It became true on the else condition after that it returns already my JSON Object through the view model.
– Raven Supilanas
Nov 13 '18 at 2:33





Ok noted @TetsuyaYamamoto thanks! I am thinking about that scenario. But my code stops debugging on the first loop and it already returns the JSON Object. Because on my first loop and first data. It became true on the else condition after that it returns already my JSON Object through the view model.
– Raven Supilanas
Nov 13 '18 at 2:33













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%2f53272840%2fis-it-possible-to-get-the-data-from-controller-to-cshtml-json%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%2f53272840%2fis-it-possible-to-get-the-data-from-controller-to-cshtml-json%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







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3