Activities of "dlapointe"

  • ABP Framework version: 7.0.1
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace: Unable to find package Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonX
  • Steps to reproduce the issue:" dotnet restore

Hi all,

Since this morning, i cannot restore my ABP Commercial project which reference this package <ItemGroup> <PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonX" Version="2.0.0-*" /> </ItemGroup>

On last friday, it was working pretty good. This morning, i cleaned / rebuilt and suddenly this nuget seems to be missing?! Has it been renamed?

Thank you

ps: as you can imagine, that is preventing me from working at all on this project as it doesnt build anymore :S

  • ABP Framework version: 6.0.0-rc.4
  • UI type:MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

Hi,

The <abp-select> should be adding an empty SelectListItem if the field is not required (as per the doc) but it doesnt

Here is the viewmodel, you can see that TechnicianId is nullable

public class AssignInfoViewModel
    {
        [Required]
        public Guid Id { get; set; }
        [Required]
        public Guid InstrumentId { get; set; }
        public Guid? TechnicianId { get; set; }
        [Required]
        public int Duration { get; set; }
    }

Here is the view : <abp-select asp-for="Info.TechnicianId" asp-items="Model.TechnicianLookupListRequired" label="@L["Technician"].Value" />

And here is the output, as you can see, there is no empty options so the user 'have' to select something even tough its a nullable property :

Thank you

  • ABP Framework version: 6.0.0-rc.4
  • UI type: MVC
  • DB provider: EF Core with MySql
  • Tiered (MVC) or Identity Server Separated (Angular): no

Hi all, I need to override the EditModal and CreateModal of the tenant page in order to customize a few fields added on the Tenant entity. So far i managed to get them added 'generically' by using the the ObjectExtensionManager as such :

This allows me to have the new fields in both popup but i need to customize the input for OpenAt and CloseAt to be a time picker and not a text input. (as you can see we use TimeOnly) I followed the documentation on how to override pages (both cshtml and .cs) but as i dont have access to this module code (SAAS) i dont know how to build the page.

At the moment, i did override based on the 'framework' tenant management module (https://github.com/abpframework/abp/tree/dev/modules/tenant-management/src/Volo.Abp.TenantManagement.Web/Pages/TenantManagement/Tenants)

I did change the path to Saas/Host/Tenant but obviously it throws an error :

Here is the view :

and the code behind :

How can we override the Tenant edit/create popup without having access to the code (as a premium module) which is not available on Teams license?

Thank you

  • ABP Framework version: 6.0.0-rc.4 (commercial)
  • UI type: MVC
  • DB provider: EF Core Mysql
  • Tiered (MVC) or Identity Server Separated (Angular): no

Hi,

Im trying to change the leptonx logo in order to put our own one. I cant find any docs about this (i do find for lepton, but not for leptonx) nor find where in the code it should be done?

Also, i think it would be worth cleaning the project template when you select LeptonX as there is still stuff that seems to be for Lepton only such as :

  1. logo-dark.png and logo-light.png in the images folder of the wwwroot. This seems to be the logo used in Lepton
  2. This section of the appsettings in the web project
    "Settings": {
    "Volo.Abp.LeptonTheme.Style": "Style1", /* Options: Style1, Style2... Style6 */
    "Volo.Abp.LeptonTheme.Layout.MenuPlacement": "Top", /* Options: Left, Top */
    "Volo.Abp.LeptonTheme.Layout.MenuStatus": "AlwaysOpened", /* Options: AlwaysOpened, OpenOnHover */
    "Volo.Abp.LeptonTheme.Layout.Boxed": "False" /* Options: True, False */
  }
  • ABP Framework version: v6.0.0-rc.3
  • UI type: MVC
  • DB provider: EF Core MySql
  • Tiered (MVC) or Identity Server Separated (Angular): no (openiddiect

Hi all,

Im trying to use the abp-input type="time" to be a 24h format ( no am / pm selector). Ive tryed mostly everything i could think of in the asp-format params but without success <abp-input asp-for="Technician.StartAt" type="time" asp-format="HH:mm"/>.

Ive also tried to change the settings in js as i was expecting it to use either Jquery or Bootstrap TimeSelector but without success again.

How can we force the abp-input to show as a 24h format?

Also, it seems there is no docmentation at all on the abp-input, abp-modal etc at all? Or did i miss something? The scaffolded pages uses it but i cant believe there aint no docs at all?

Thank you

  • ABP Framework version: v6.0.0-rc.3
  • UI type: MVC
  • DB provider: EF Core MySql
  • Tiered (MVC) or Identity Server Separated (Angular): no (OpenIdDict)

Hi all,

Ive been generating my domain using the Suite but unfortunately it seems like that validation are not fully respected. Here is my 'activity' aggregate which have a Title. It is Required, MinLength of 3 and MaxLength of 64.

In the constructor, those rules are respected (even tough the ctor was public, wouldnt it be set to internal following ABP best practice when managed via a Domain Service/Manager???). But in the ActivityManager.Update, there aint no validation at all so i cant update an Activity and pass an empty Title.

CTOR:

Manager:

Thank you

Addition 1: It also does not mark the required properties (or any validations) as internal set so developer can easily set Title = string.empty in the AppService.

  • ABP Framework version: v6.0.0-rc.3
  • UI type: MVC
  • DB provider: EF Core / MySql
  • Tiered (MVC) or Identity Server Separated (Angular): No Tiered (OpenIdDict)
  • Steps to reproduce the issue:" Create a new project using ABP Suite and go navigate the application, performance are kind of pool
  • Windows 10, Edge 104, Miniprofiler

HI all,

I was wondering what to expect in term of performance of the commercial version. At the moment, i have mostly a brand new application (just added a few aggs using the suite) and i really feel like the performance are poor.

Here are examples: 2seconds to get the EditModel of a user. 10% only is spent on SQL

Take mostly 2sec to get the to users listing

Please understand im not here to complain but trying to understand if that the kind of performance to expect on production, is there multiple skipped layer of ABP when building in Release? At the moment, im quite scare to see how it would perform once i start adding business logic etc...

Obviously, i do understand that all the 'module' and 'automagically' stuff have a performance cost, but is 2sec to get a single user by its id normal or is there something wrong on my side?

Thank you

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