https://ng2-pdfjs-viewer.azurewebsites.net/bytearray
i am trying to use this now .. but i cant do this from service
return File(bytes, "application/pdf");
:(
Hi velu, if you are still willing to share can you please send a copy to [email protected] Thanks!
@muhittincelik Can u send it to me please [email protected]
thank you millions :)
I did your solution and it worked good but I can't change the language in frontend I can't understand the last part about how can I execute other request culture localizers in my custom class
----------------------------------------------------------- you need to execute other request culture localizers in your custom class
public class MyRequestCultureProvider : RequestCultureProvider
{
public override Task<ProviderCultureResult> DetermineProviderCultureResult(HttpContext httpContext)
{
var result = new ProviderCultureResult(culture: (StringSegment)"en-US", uiCulture: (StringSegment)"ar");
return Task.FromResult(result);
}
}
<span class="colour" style="color: rgb(0, 0, 0);">Then, use it like this to see if server returns dates with correct format:</span>
app.UseAbpRequestLocalization(opts =>
{
opts.RequestCultureProviders.Insert(0, new MyRequestCultureProvider());
});
But, this will work before all request culture providers, so when you change the language on the UI, it will not work. So, you need to execute other request culture localizers in your custom class (like this one https://github.com/aspnetboilerplate/as ... rovider.cs), then determine correct uiCulture.
Same here ! I have the same problem. all answers did not solve the problem for me.
I cant w8 !!!!
+1 is there any release date ?