Activities of "lan.dang"

I mean, if i put this code in razor page it will not hit razor.cs (code behind) @inherits UserManagement @attribute [ExposeServices(typeof(UserManagement))] @attribute [Dependency(ReplaceServices = true)]

But if i put this code in razor.cs it does not update UI from razor page [ExposeServices(typeof(UserManagement))] [Dependency(ReplaceServices = true)]

I want to update both razor and razor.cs file. How can I do that?

I get hard to make a minimal project. I try to solve the problem with some modify, As per this document : https://docs.abp.io/en/abp/latest/UI/Blazor/Customization-Overriding-Components?UI=BlazorServer Could we modify in both razor and code behind?

I want to update UI and overwrite some method in code behind as well Where do I put this code line? [ExposeServices(typeof(UserManagement))] [Dependency(ReplaceServices = true)]

I just sent you email, could you help me check what I was wrong

Thank you

I still get this error with page

It related to Blazorise.TreeView, what is version of Blazorise you are uing?

Can you share me to lan.dang@kwork.fi ? Thank you

Can you give me snipper code to overwrite this component? I just manually hide some specific field eg if (!propertyInfo.Name.EndsWith("_Text")) => if (!propertyInfo.Name.EndsWith("_Text") && !propertyInfo.Name.Equals("Token"))

OR alternative solution is give me source code of UserManagement page in Pro module so I disable ExtraProperties

  • ABP Framework version: v8.0.0
  • UI Type: Blazor Server
  • Database System: EF Core (SQL Server, Oracle, MySQL, PostgreSQL, etc..)
  • Tiered (for MVC) or Auth Server Separated (for Angular): no
  • Exception message and full stack trace:
  • Steps to reproduce the issue: In UserManagement page I want to hide some extra property, can I overwrite ExtensionProperties component? I tried to hide field but it does not work user.AddOrUpdateProperty<string>( //property type: string UserConsts.TokenPropertyName, //property name property => { //validation rules property.Attributes.Add(new StringLengthAttribute(UserConsts.TokenMaxLength)); property.UI.OnEditForm.IsVisible = false; property.UI.OnCreateForm.IsVisible = false; property.Configuration["AllowUserToEdit"] = false; } );

Thank you I get it works

But I want to call it in AppService, is it possible? With Tenant I can add my method by create interface public interface ICustomTenantRepository : IRepository<Tenant, Guid> { Task<Tenant> FindBySubscriptionIdAsync(string subscriptionId); } How can I do the same with IdentityUser?

Can you give me example?

query.WhereIf(input.FullName.IsNotNullOrWhiteSpace(), e => EF.Property<string>(e, "FullName") == input.FullName); What is EF in this line?

Showing 11 to 20 of 125 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11