Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ExportItems.cshtml

@{
    var button = await Html.PartialAsync("~/Plugins/Tax.Avalara/Views/Product/_ExportItemsButton.cshtml");
    var form = await Html.PartialAsync("~/Plugins/Tax.Avalara/Views/Product/_ExportItemsForm.cshtml");

    //we need to replace some specific symbols here
    var content = await form.RenderHtmlContentAsync();
    content = content.Replace("</script>", "<\\/script>");
    form = Html.Raw(content);
}

<script>
    $(function() {
        $('#delete-selected').before(`@button`);
        $('#export-excel-selected-form').after(`@form`);
    });
</script>