Umbraco.GetDictionaryValue not working in Dynamically loaded Partial View
I currently am in the process of building a new form that has multiple steps. The confirmation step is dynamically loaded but only the english is being shown.
The rest of the page works using Umbraco.GetDictionaryValue but not this partial view.
@inherits Umbraco.Web.Mvc.UmbracoViewPage<>
function RefreshBasket() {
$.ajax("@Url.Action("DisplayCart", "BinBagShoppingBasket")", {
cache: false,
success: function (data, textStatus, jqXHR) {
$(".basket-wrapper").html(data);
},
dataType: "html"
});
}
Umbraco.GetDictionaryValue not working in Dynamically loaded Partial View
I currently am in the process of building a new form that has multiple steps. The confirmation step is dynamically loaded but only the english is being shown.
The rest of the page works using Umbraco.GetDictionaryValue but not this partial view.
@inherits Umbraco.Web.Mvc.UmbracoViewPage<>
function RefreshBasket() { $.ajax("@Url.Action("DisplayCart", "BinBagShoppingBasket")", { cache: false, success: function (data, textStatus, jqXHR) { $(".basket-wrapper").html(data); }, dataType: "html" }); }
Anyone with any ideas?
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.