how i lode Partial view after $.post success The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceHow to manage a redirect request after a jQuery Ajax callHow can I return the current action in an ASP.NET MVC view?How to render an ASP.NET MVC view as a string?How to Check if element is visible after scrolling?Include JavaScript file in partial viewsPass Additional ViewData to a Strongly-Typed Partial ViewRender Partial View Using jQuery in ASP.NET MVCAdd CSS or JavaScript files to layout head from views or partial viewsjQuery: Return data after ajax call successInjecting content into specific sections from a partial view ASP.NET MVC 3 with Razor View Engine
Nested ellipses in tikzpicture: Chomsky hierarchy
Mortgage adviser recommends a longer term than necessary combined with overpayments
Identify 80s or 90s comics with ripped creatures (not dwarves)
Didn't get enough time to take a Coding Test - what to do now?
How to determine omitted units in a publication
Match Roman Numerals
Can each chord in a progression create its own key?
Would an alien lifeform be able to achieve space travel if lacking in vision?
"... to apply for a visa" or "... and applied for a visa"?
Could an empire control the whole planet with today's comunication methods?
Make it rain characters
Why not take a picture of a closer black hole?
Variable with quotation marks "$()"
Why are PDP-7-style microprogrammed instructions out of vogue?
Using dividends to reduce short term capital gains?
What was the last x86 CPU that did not have the x87 floating-point unit built in?
Hello, Goodbye, Adios, Aloha
Using `min_active_rowversion` for global temporary tables
Circular reasoning in L'Hopital's rule
Can withdrawing asylum be illegal?
Are spiders unable to hurt humans, especially very small spiders?
How many cones with angle theta can I pack into the unit sphere?
ELI5: Why do they say that Israel would have been the fourth country to land a spacecraft on the Moon and why do they call it low cost?
What do I do when my TA workload is more than expected?
how i lode Partial view after $.post success
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experienceHow to manage a redirect request after a jQuery Ajax callHow can I return the current action in an ASP.NET MVC view?How to render an ASP.NET MVC view as a string?How to Check if element is visible after scrolling?Include JavaScript file in partial viewsPass Additional ViewData to a Strongly-Typed Partial ViewRender Partial View Using jQuery in ASP.NET MVCAdd CSS or JavaScript files to layout head from views or partial viewsjQuery: Return data after ajax call successInjecting content into specific sections from a partial view ASP.NET MVC 3 with Razor View Engine
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
this is a partial view
/////// Here i Want to Show partial View
<div class="dtl">
<table class="table table-bordered">
<tr id="newrow" class=" myrow">
<td> Ivnoice no : </td>
<td> No OF Count : </td>
<td> Befor Tax Amount : </td>
<td> Tax Amount : </td>
<td> Total Amount : </td>
<td> Add Charges : </td>
<td> Less Discount & Ribet : </td>
<td> Submit</td>
</tr>
<tr id="final" class="final1">
@Html.Partial("PerchesChallan")
</tr>
</table>
</div>
///////////// Jquery
$(document).ready(function () {
$(document).on('click', '.convt', function ()
//var sName = $(this).closest('tr').find('#SypplyerName').text();
var url = "/Perchus/Cnv"
var sName = $('#sypplyerName').text().trim();
//var newSupId = $(this).closest('tr').find('#SupplyerId').text().trim();
var pChallanId = $(this).closest('tr').find('#PerTranChallanId').text().trim();
var pTranCodeINCHAL = $(this).closest('tr').find('#ChalPerchesTranCode').text().trim();
var challaNo = $(this).closest('tr').find('#ChallaNo').text().trim();
var taxAmount = $(this).closest('tr').find('#TaxAmount').text().trim();
var totalAmount = $(this).closest('tr').find('#TotalAmount').text().trim();
//alert(newSupId);
$(this).closest("tr").find('#convt').hide();
$(this).closest('tr').find('#cansel').show();
$('.dtl').show();
$.post(url, sypplyerName: sName, PerTranChallanId: pChallanId, ChalPerchesTranCode: pTranCodeINCHAL, ChallaNo: challaNo, TaxAmount: taxAmount, TotalAmount: totalAmount , function (data)
$.notify("Update And Convert Challan Succesfully ", "success");
$('#final').Load('@Url.Action("PerchesChallan")')
// this is in sheard folder
);
);
how i lode this after $.post ()
jquery asp.net-mvc
add a comment |
this is a partial view
/////// Here i Want to Show partial View
<div class="dtl">
<table class="table table-bordered">
<tr id="newrow" class=" myrow">
<td> Ivnoice no : </td>
<td> No OF Count : </td>
<td> Befor Tax Amount : </td>
<td> Tax Amount : </td>
<td> Total Amount : </td>
<td> Add Charges : </td>
<td> Less Discount & Ribet : </td>
<td> Submit</td>
</tr>
<tr id="final" class="final1">
@Html.Partial("PerchesChallan")
</tr>
</table>
</div>
///////////// Jquery
$(document).ready(function () {
$(document).on('click', '.convt', function ()
//var sName = $(this).closest('tr').find('#SypplyerName').text();
var url = "/Perchus/Cnv"
var sName = $('#sypplyerName').text().trim();
//var newSupId = $(this).closest('tr').find('#SupplyerId').text().trim();
var pChallanId = $(this).closest('tr').find('#PerTranChallanId').text().trim();
var pTranCodeINCHAL = $(this).closest('tr').find('#ChalPerchesTranCode').text().trim();
var challaNo = $(this).closest('tr').find('#ChallaNo').text().trim();
var taxAmount = $(this).closest('tr').find('#TaxAmount').text().trim();
var totalAmount = $(this).closest('tr').find('#TotalAmount').text().trim();
//alert(newSupId);
$(this).closest("tr").find('#convt').hide();
$(this).closest('tr').find('#cansel').show();
$('.dtl').show();
$.post(url, sypplyerName: sName, PerTranChallanId: pChallanId, ChalPerchesTranCode: pTranCodeINCHAL, ChallaNo: challaNo, TaxAmount: taxAmount, TotalAmount: totalAmount , function (data)
$.notify("Update And Convert Challan Succesfully ", "success");
$('#final').Load('@Url.Action("PerchesChallan")')
// this is in sheard folder
);
);
how i lode this after $.post ()
jquery asp.net-mvc
add a comment |
this is a partial view
/////// Here i Want to Show partial View
<div class="dtl">
<table class="table table-bordered">
<tr id="newrow" class=" myrow">
<td> Ivnoice no : </td>
<td> No OF Count : </td>
<td> Befor Tax Amount : </td>
<td> Tax Amount : </td>
<td> Total Amount : </td>
<td> Add Charges : </td>
<td> Less Discount & Ribet : </td>
<td> Submit</td>
</tr>
<tr id="final" class="final1">
@Html.Partial("PerchesChallan")
</tr>
</table>
</div>
///////////// Jquery
$(document).ready(function () {
$(document).on('click', '.convt', function ()
//var sName = $(this).closest('tr').find('#SypplyerName').text();
var url = "/Perchus/Cnv"
var sName = $('#sypplyerName').text().trim();
//var newSupId = $(this).closest('tr').find('#SupplyerId').text().trim();
var pChallanId = $(this).closest('tr').find('#PerTranChallanId').text().trim();
var pTranCodeINCHAL = $(this).closest('tr').find('#ChalPerchesTranCode').text().trim();
var challaNo = $(this).closest('tr').find('#ChallaNo').text().trim();
var taxAmount = $(this).closest('tr').find('#TaxAmount').text().trim();
var totalAmount = $(this).closest('tr').find('#TotalAmount').text().trim();
//alert(newSupId);
$(this).closest("tr").find('#convt').hide();
$(this).closest('tr').find('#cansel').show();
$('.dtl').show();
$.post(url, sypplyerName: sName, PerTranChallanId: pChallanId, ChalPerchesTranCode: pTranCodeINCHAL, ChallaNo: challaNo, TaxAmount: taxAmount, TotalAmount: totalAmount , function (data)
$.notify("Update And Convert Challan Succesfully ", "success");
$('#final').Load('@Url.Action("PerchesChallan")')
// this is in sheard folder
);
);
how i lode this after $.post ()
jquery asp.net-mvc
this is a partial view
/////// Here i Want to Show partial View
<div class="dtl">
<table class="table table-bordered">
<tr id="newrow" class=" myrow">
<td> Ivnoice no : </td>
<td> No OF Count : </td>
<td> Befor Tax Amount : </td>
<td> Tax Amount : </td>
<td> Total Amount : </td>
<td> Add Charges : </td>
<td> Less Discount & Ribet : </td>
<td> Submit</td>
</tr>
<tr id="final" class="final1">
@Html.Partial("PerchesChallan")
</tr>
</table>
</div>
///////////// Jquery
$(document).ready(function () {
$(document).on('click', '.convt', function ()
//var sName = $(this).closest('tr').find('#SypplyerName').text();
var url = "/Perchus/Cnv"
var sName = $('#sypplyerName').text().trim();
//var newSupId = $(this).closest('tr').find('#SupplyerId').text().trim();
var pChallanId = $(this).closest('tr').find('#PerTranChallanId').text().trim();
var pTranCodeINCHAL = $(this).closest('tr').find('#ChalPerchesTranCode').text().trim();
var challaNo = $(this).closest('tr').find('#ChallaNo').text().trim();
var taxAmount = $(this).closest('tr').find('#TaxAmount').text().trim();
var totalAmount = $(this).closest('tr').find('#TotalAmount').text().trim();
//alert(newSupId);
$(this).closest("tr").find('#convt').hide();
$(this).closest('tr').find('#cansel').show();
$('.dtl').show();
$.post(url, sypplyerName: sName, PerTranChallanId: pChallanId, ChalPerchesTranCode: pTranCodeINCHAL, ChallaNo: challaNo, TaxAmount: taxAmount, TotalAmount: totalAmount , function (data)
$.notify("Update And Convert Challan Succesfully ", "success");
$('#final').Load('@Url.Action("PerchesChallan")')
// this is in sheard folder
);
);
how i lode this after $.post ()
jquery asp.net-mvc
jquery asp.net-mvc
edited Mar 22 at 6:01
designtocode
1,55641127
1,55641127
asked Mar 22 at 5:32
yogesh vaidyayogesh vaidya
42
42
add a comment |
add a comment |
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
);
);
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%2f55293440%2fhow-i-lode-partial-view-after-post-success%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%2f55293440%2fhow-i-lode-partial-view-after-post-success%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