I am trying to apply FluentValidation to the CreateUpdateZacatCompanyDto class, but the error messages from the CreateUpdateZacatCompanyDtoValidator, which inherits from AbstractValidator<CreateUpdateZacatCompanyDto>, are not being displayed.
I have created all the necessary classes and injected the configuration into the module. How can I ensure that the error messages are shown for each field?
hi sir
when i create page from scratch manually (domain / ef / service / Dto ...... etc)
i faced a problem into constructor injection if i inject repository or manager i got this error always like image below
when i try it in swagger
hi sir
i have a problem with date-picker when i open EditModel it automatically focus on date
i removed auto update and put focus attr = false and used javascript
but still same problem
i want when open the model no focus happen to prevent open date and make user feel free
hi sir according to this doc https://docs.abp.io/en/abp/8.2/UI/AspNetCore/AutoComplete-Select i follow the steps to make one value selection (i attached images) but i got this error and what is (@SelectedAuthor) from where you get this value ??
hi sir it's not a problem but where can i find the link of the new Features and issues that you solved to the new release ??
hi sir,
i want to create new feature and i tried to use ( SelectionStringValueType ) to make it dropdown
but it doesn't work i followed the step within this documentation https://docs.abp.io/en/abp/8.1/Features
i faced a problem in console
here is my code:
hi sir,
according to this documentation https://docs.abp.io/en/abp/latest/Authorization
part of ( IPermissionManager ) i tried to use it but i cant reach the method {SetForUserAsync}
is there an update documentation to use it ???
here is some image of my code
I would like to ask about the best practice of this scenario: i have a transaction screen has many lookups bind to dropdowns , which way is better for reusability and maintenance of code , **first **: make App service for each entity of lookup Data ,but i have problem with this solution because i have to inject all services of lookups in transaction screen and this make the screen slower **second **: put all functions of lookups in the app service which is responsible of the transaction screen(this is the way of suite generate page) ,but if i make new transaction screen use this lookups i have to put the same code of get lookups in App service of new transaction screen **third **:make lookup App service and put all functions of lookups in it ,then inject this lookupAppService in transaction screen.
for example : - sales order transaction screen ,has currency lookup and Status Lookup and etc... -Purchase order screen ,has the same lookup dropdown currency lookup and Status Lookup and etc..