Hi,
ExtensionProperties
are always added to the bottom. There is not a way to order them.
I think you need to override the related Blazor component. See docs: https://docs.abp.io/en/abp/latest/UI/Blazor/Customization-Overriding-Components
You can download the source code of Volo.Saas
module to see the component you want to override.
TenantManagement.razor
is the file you need.
Hi,
New versions of Cli & Suite may not work with 4.2.0 version.
To install v4.2.0 version of them, run following commands:
dotnet tool uninstall Volo.Abp.Cli -g
dotnet tool install Volo.Abp.Cli -g --version 4.2.0
dotnet tool uninstall Volo.Abp.Suite -g
abp suite install -v 4.2.0
Hi,
Is File Management Angular source code downloaded to projects\file-management
directory in your angular project? If so, you can edit related components to customize File Management UI.
If the Angular source code is not downloaded, run abp add-module Volo.FileManagement --with-source-code --add-to-solution-file
in aspnet-core
folder, with the latest version (v4.3.0) of ABP CLI.
(If you get an error related with Volo.FileManagement.MongoDb.Tests project, simply remove it from solution.)
Hi,
Angular Ui & MongoDB options are not available for microservice-service-pro
template yet.
When I try to run the solution using dotnet run after I dotnet build I get License code is not valid error from the terminal.
Which solution (Project) did you try to run?
@Serdar
If you don't want to update your project to v4.3.0, you can run the following Cli commands:
dotnet tool uninstall Volo.Abp.Cli -g
dotnet tool install Volo.Abp.Cli -g --version 4.3.0-rc.2
abp add-module Volo.LeptonTheme --with-source-code --add-to-solution-file
(Run in the folder of the .Sln file of your project)
dotnet tool uninstall Volo.Abp.Cli -g
dotnet tool install Volo.Abp.Cli -g
This commands will install ABP CLI with the latest preview version, add LeptonTheme correctly and them switch ABP CLI version back to 4.2.2
@Frontis1 i also tested the way you added the module and there was no error. May your ABP Suite version be outdated?
Hi @Frontis1,
Suite uses pro module template when you create a new module on Create new module
dialog. And to make cli use pro module template, add -t module-pro
argument to command. example:
abp add-module ProductManagement --new --solution C:\YourSolutionPath --add-to-solution-file -t module-pro
For instance, I am missing the host folder
Yes, there is no host folder and host projects. they are deleted because they are no longer needed to test your module.
The problem you have encountered should be because of manuel creation of inner module. You should have no problem when you add the module to your solution the way i explained above (Suite Create new module
dialog).
Hi again,
I've run the following commands
abp new Acme.BookStore -t app-pro
This created a solution (Same as yours).
abp add-module Volo.Chat
This added Chat module to the solution.
Then i run the solution, enabled chat feature
from manage host features
modal in Saas/Tenants
page, and so Chat system was working.
You can do those on ABP Suite as well.
Hi,
Did you change the location of Angular project folder?
Hi,
I'll check if Chat module documentation is up to date and update it if needed.