Hi,
Yes you can.
public class MyProfileManagementPageContributor : IProfileManagementPageContributor
{
public async Task ConfigureAsync(ProfileManagementPageCreationContext context)
{
context.Groups.RemoveAll(x => x.Id == "Volo-Abp-Account-PersonalInfo");
}
}
Hi,
The profile manage UI is extensible, you can easy to add a new tab.
For example:
public class MyProfileManagementPageContributor : IProfileManagementPageContributor
{
public async Task ConfigureAsync(ProfileManagementPageCreationContext context)
{
context.Groups.Add(
new ProfileManagementPageGroup(
"my-account-profile",
"My account profile",
typeof(MyPictureManagementGroupViewComponent)
)
);
}
}
public class MyPictureManagementGroupViewComponent: AbpViewComponent
{
public virtual async Task<IViewComponentResult> InvokeAsync()
{
return View("~/Pages/<Your path>/Default.cshtml");
}
}
<h1>Hello world</h1>
public class YourModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<ProfileManagementPageOptions>(options =>
{
options.Contributors.Add(new MyProfileManagementPageContributor());
});
Configure<AbpBundlingOptions>(options =>
{
options.ScriptBundles
.Configure(typeof(Volo.Abp.Account.Public.Web.Pages.AccountManageModel).FullName,
configuration =>
{
configuration.AddFiles("/Pages/<Your path>/Default.js");
});
});
}
}
Hi,
Make sure you have the Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy
package reference.
Thanks for your feedback, we fixed some of these issues in the rc.2 release and we will check all of these and fix it.
Your ticket refunded.
Hi,
We will fix it in the next RC version, thanks for your feedback, BTW, your ticket has been refunded.
Hi,
Waiting for the share link.
Your ticket refunded.
Hi,
This is a style problem, we will try fix it.
Please delete the previous code try this:
.b-is-autocomplete.b-is-autocomplete-multipleselection
{
background: #f2f2f2 !important;
}
.b-is-autocomplete.b-is-autocomplete-multipleselection > input.form-control:focus, .b-is-autocomplete.b-is-autocomplete-multipleselection > input.form-control:active{
background: #f2f2f2 !important;
border: 0 !important;
box-shadow: 0 0 0 0 !important;
}
Hi,
You can add the following code to blazor-global-styles.css
.b-is-autocomplete.b-is-autocomplete-multipleselection > input.form-control
{
width: 100% !important;
}