public ActionResult BillingDetails()
{
IBDBillingAddressModel Model = new IBDBillingAddressModel();
var currentBasket = new basketItem();
Model = currentBasket.GetCart().BillingAddress;
return PartialView("IBDShoppingCart/IBD Billing Details", Model);
}
So the controller is being triggered. But the partial view "IBD Billing Details" is not being displayed.
if I change
<div id="tabs-2">
</div>
to
<div id="tabs-2"> Hello
</div>
the hello is displayed only
Update I have established this error in the google console
"Failed to load resource: the server responded with a status of 500 (Internal Server Error)"
Tabs using jquery and ajax
I have three tabs that I are trying to get to load there own partial views when selected.
One of the tabs relies on details from the previous tab before being displayed.
I are trying to get the 2nd tab to display a partial view via jqery when the tab is clicked.
jqery looks like this
tab structure as below
controller
So the controller is being triggered. But the partial view "IBD Billing Details" is not being displayed.
if I change
to
the hello is displayed only
Update I have established this error in the google console
"Failed to load resource: the server responded with a status of 500 (Internal Server Error)"
Note: I are running this on a local machine.
Solved
changed
to
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.