Activities of "maliming"

hi

I see.

Can you try these two solutions?

1.

http://blog.rebuildall.net/2011/03/02/jQuery_validate_and_the_comma_decimal_separator

2.

https://github.com/dotnet/aspnetcore/issues/6566#issuecomment-1213584906

hi

The Oracle requires IsolationLevel must be ReadCommitted or Serializable

public override void ConfigureServices(ServiceConfigurationContext context)
{
    Configure<AbpOpenIddictStoreOptions>(options =>
    {
        options.DeleteIsolationLevel = IsolationLevel.ReadCommitted;
        options.PruneIsolationLevel = IsolationLevel.ReadCommitted;
    });
}

hi

Sorry. Our team is only familiar with MVC and Angular. We don't have experience with VUE.

hi

What errors did you get? Please share the error logs.

hi

https://github.com/RickIsWright/GranTrakv4a/pull/1

Many thanks. 🙏

hi

Can you share an online URL to reproduce the problem?

hi

Can you share your release app?

I will try to change it on my local.

liming.ma@volosoft.com

hi

Can you try this?

app.Use(async (httpContext, next) =>
{
    if (System.Threading.Thread.CurrentThread.CurrentCulture.Name == "ar")
    {
        using (CultureHelper.Use(System.Globalization.CultureInfo.InvariantCulture, System.Globalization.CultureInfo.InvariantCulture))
        {
            await next(httpContext);
        }
    }
    else
    {
        await next(httpContext);
    }
});

hi

Please share some of your code.

Showing 1101 to 1110 of 8483 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 19, 2024, 12:56