Activities of "balessi75"

Abp Commercial 5.2.0 / Blazor Server / EF

Hi we are trying to troubleshoot an issue by creating a new solution at an older version by using the following CLI command

abp new FM.Test2 -u blazor-server -o c:\temp\FM.Test2 -v 4.2.0

The solution gets created, but for some reason there is no Blazor project in the solution that is created.

Please advise. Thanks in advance.

Abp Commercial 5.2.0 / Blazor Server / EF / Non-tiered

Hi, I was wondering if anyone had any insight or recommendations for an issue we are having after publishing our Abp solution to an Azure App Service.

Everything works perfectly when we run locally in VS, but when hitting the URL in Azure, we see the index start page right away, but when licking on 'login', after about 15 seconds, we receive a 502 error as shown below. We have monitored the application using Azure's Application Insights and we se no exceptions occurring and we see nothing in any of the Azure logs.

"502 - Web server received an invalid response while acting as a gateway or proxy server. There is a problem with the page you are looking for, and it cannot be displayed. When the Web server (while acting as a gateway or proxy) contacted the upstream content server, it received an invalid response from the content server."

Any suggestions is greatly appreciated as this one really has us scratching our heads.

Abp Commercial 5.2.0 / Blazor Server / EF Core

We've overridden the User Management page, but noticed that the Grid is built using AbpExtensibleDataGrid, so it appears that UI customizations are not possible, is that correct?

We are attempting to modify the Actions drop-down button so that it has an icon within it (similar to what is seen in the Easy CRM demo that is not built with Blazor).

Is there a recommended approach to doing this?

Thanks in advance, -Brian

Abp Commercial 5.2.0 / Blazor Server / EF / Non-tiered

When there are more than 10 users to add to an organization unit (10 is the default page size), and you try to navigate to another page, nothing happens.

Please advise.

Thanks

Abp Commercial 5.2.0 / Blazor Server / EF Core

Hi,

We created an extended property on the IdentityUser entity and have overriden the UserManagment.razor page. We see the the expended property is rendered with the following...

<ExtensionProperties TEntityType="IdentityUserCreateDto" TResourceType="IdentityResource" Entity="@NewEntity" LH="@LH" />

How can one make the extended property read only? Is there a configuration somewhere? Or is there a way to manually create the input without using the <ExtensionProperties> component?

Thanks in advance, -Brian

Abp Commercial 5.2.0 / Blazor Server / EF Core / Non-tiered

Hi, We are using the ObjectExtensionManager to create a custom property on the IdentityUser entity and would like to do validation that requires an App Service call.

In the documentation (https://docs.abp.io/en/abp/latest/Object-Extensions#custom-validation) we see that custom validation can be accomplished with:

 options.Validators.Add(context =>
            {... }

... and that context.ServiceProvider can be used to call an application service for advanced validation scenarios.

The problem we are having is that ObjectExtensionManager is templated to reside in the Domain.Shared project which cannot have a reference to our application services due to circular dependency issues.

Are we missing something here, or is there a better/recommended way of accomplishing what we are looking for?

Thanks in advance, Brian

Abp Commercial 5.2.0 / Blazor Server / EF Core / Non-tiered

Hi,

We have extended the IdentityUser entity with a new property but need to have the property only visible on the user listing (needs to be hidden on the create and edit modal). To accomplish this, we implemented the following in our ProjectNameModuleExtensionConfigurator class:

   user.AddOrUpdateProperty<string>( 
                        EmployeeConsts.FullName 
                       , property =>
                       {
                            property.DisplayName = LocalizableString.Create<TimepieceResource>(
                               "DisplayName:FullName");
                           property.DefaultValue = null;
                           property.UI.OnCreateForm.IsVisible = false;
                           property.UI.OnEditForm.IsVisible = false;
                           property.UI.OnTable.IsVisible = true;
                        }
                    );

The extended property, however, is still visible on the create and edit modals.

Are we doing something wrong, or is this a bug?

Thanks in advance.

Hi,

Abp Commercial 5.2.0 / Blazor Server / EF / Non tiered

  1. We noticed that, unlike the EasyCRM demo, none of the grids from the dependent modules (user, roles, etc.) have sorting or user settable page size capabilities.
  2. There is some inconsistency to item 1, only Boolean columns seem to be sortable, however, the sort does not work when clicking the column header. All other column types (string, int, etc.) are not sortable
  3. We extended the IdentityUser entity with a custom column and the custom columns do appear to be sortable in the user management page, but like 2 above, the sort does not work
  4. Since the sort on our extended column is not working, we decided to override the SetTableColumnsAsync method of the user management page and set the extended column's 'Sortable' property to false, but the column is still sortable at runtime.

Please let us know if these are things that will be looked at and if there are workarounds or suggestions.

Thanks in advance, Brian

Abp Commercial 5.1.3 / Blazor Server / EF / Non-Tiered

Hi, We have a requirement as a host admin to be able to impersonate any user on any tenant and have run into a problem when testing this scenario.

  • As a host admin, we can successfully impersonate any tenant
  • Once we impersonate a tenant, we are always logged into that tenant as it's Admin user
  • Now we want to impersonate a standard user in that tenant, but when we do so, the option to impersonate a user is not available even though the tenant Admin has impersonate permissions.
  • If we login directly to the tenant as an admin without being impersonated from the host, then the impersonate user option is available.

Are we going about this correctly? Guidance is appreciated as always.

Abp Commercial 1.5.3 / Blazor Server / EF / Non-Tiered

Hi, We noticed that when phone verification is required to sign in, the first attempt to save the phone number at login is saved to the database before the phone number is verified. If the number is never verified, say because they typed the wrong number in, the number input recalls the previous value from the database and is then always disabled on the login UI - so the user can never correct the number to be verified.

Is this by design? And if so, I'm just curious about the rational...

Thanks in advance!

Showing 71 to 80 of 96 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13