Please let me know how can we do this.
Please reply.
What UI are you using? Blazor wasm or Blazor server?
blazor wasm
This is very important and urgent for me.
Please let me know how can we do this.
What UI are you using? Blazor wasm or Blazor server?
blazor wasm
pls reply
What UI are you using? Blazor wasm or Blazor server?
blazor wasm
Configure<AbpBundlingOptions>(options => {
options.ScriptBundles.Configure( LeptonThemeBundles.Styles.Global, bundle => { bundle.AddFiles("/global.js"); } ) });
I added code in global.js file but still showing phone number also pls let me know where I need to add this code
Configure<AbpBundlingOptions>(options =>
{
options.ScriptBundles.Configure(
LeptonThemeBundles.Styles.Global,
bundle =>
{
bundle.AddFiles("/global.js");
}
)
});
ok so I am just adding this line in last. protected override async ValueTask SetTableColumnsAsync() { await base.SetTableColumnsAsync();
UserManagementTableColumns.RemoveAll(x => x.Title.Contains("Phone")); }
I need to hide this field in manage your profile section as well so it will work?
ok so I am just adding this line in last. protected override async ValueTask SetTableColumnsAsync() { await base.SetTableColumnsAsync();
UserManagementTableColumns.RemoveAll(x => x.Title.Contains("Phone"));
}
You can override these classes and apply the changes.
https://docs.abp.io/en/abp/latest/UI/Blazor/Customization-Overriding-Components
namespace Volo.Abp.AspNetCore.Components.Web.LeptonTheme.Components.ApplicationLayout.Navigation class MainSiderbar namespace Volo.Abp.AspNetCore.Components.WebAssembly.LeptonTheme.Components.ApplicationLayout.MainHeader class MainHeaderToolbarUserMenu
where I need to add this Mainsidebar