Activities of "liangshiwei"

Hi,

I'm closing this, free open if not sovled.

Hi,

Have you check the document? https://docs.abp.io/en/abp/latest/UI/Angular/List-Service

Answer

Hi,

So, it works on the localhost but not production right?

Is there any error log on the backend?

Hi,

You can try replacing SecureStorage with Preferences to check if it is a problem with SecureStorage.

https://learn.microsoft.com/en-us/dotnet/maui/platform-integration/storage/preferences?view=net-maui-8.0&tabs=android If so, Maybe you didn't configure the Android part correctly

Hi,

The docker tool is missing, you need to install it.

Hi,

Is there any error log?

Hi,

This is a problem, we will fix it in the next patch version.

It doesn't affect the application work, you can ignore it.

Hi,

I'm not sure this is a bug with Blazorise, and I can't open a ticket on the Blazorise support website( since I'm not a member of the Blazorise team)

This is a solution, use Row instead of Fields, You can replace the code globally using vs code.

<Row Display="@FieldDisplay.GetDisplayRow(1)">
   <Field ColumnSize="ColumnSize.Is12.OnMobile.Is4.OnDesktop" Display="@(FieldDisplay.GetDisplay("Check_1_1"))">
   <Check TValue="bool">Check 1.1</Check>
   </Field>
   <Field ColumnSize="ColumnSize.Is12.OnMobile.Is4.OnDesktop" Display="@(FieldDisplay.GetDisplay("Check_1_2"))">
   <Check TValue="bool">Check 1.2</Check>
   </Field>
   <Field ColumnSize="ColumnSize.Is12.OnMobile.Is4.OnDesktop" Display="@(FieldDisplay.GetDisplay("Check_1_3"))">
   <Check TValue="bool">Check 1.3</Check>
   </Field>
</Row>

Hi,

You also have a license of Blazorise(included in ABP).

You can get support from Blazorise: https://blazorise.com/support Thanks

You can try :

@if(FieldDisplay.GetDisplayRow(1))
{
   <div class="row">
       <Field ColumnSize="ColumnSize.Is12.OnMobile.Is4.OnDesktop" Display="@(FieldDisplay.GetDisplay("Check_1_1"))">
       <Check TValue="bool">Check 1.1</Check>
       </Field>
       <Field ColumnSize="ColumnSize.Is12.OnMobile.Is4.OnDesktop" Display="@(FieldDisplay.GetDisplay("Check_1_2"))">
       <Check TValue="bool">Check 1.2</Check>
       </Field>
       <Field ColumnSize="ColumnSize.Is12.OnMobile.Is4.OnDesktop" Display="@(FieldDisplay.GetDisplay("Check_1_3"))">
       <Check TValue="bool">Check 1.3</Check>
       </Field>
   </div>
}

Or

<div class="row" style="display:@(FieldDisplay.GetDisplayRow(1) ? "none" : "block")">
   <Field ColumnSize="ColumnSize.Is12.OnMobile.Is4.OnDesktop" Display="@(FieldDisplay.GetDisplay("Check_1_1"))">
   <Check TValue="bool">Check 1.1</Check>
   </Field>
   <Field ColumnSize="ColumnSize.Is12.OnMobile.Is4.OnDesktop" Display="@(FieldDisplay.GetDisplay("Check_1_2"))">
   <Check TValue="bool">Check 1.2</Check>
   </Field>
   <Field ColumnSize="ColumnSize.Is12.OnMobile.Is4.OnDesktop" Display="@(FieldDisplay.GetDisplay("Check_1_3"))">
   <Check TValue="bool">Check 1.3</Check>
   </Field>
</div>
Showing 2181 to 2190 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 04, 2025, 06:41