Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
If you're creating a bug/problem report, please include followings:
How to show/hide menu items depending on current module selection ?
I have 2 different modules (module1 - 2 menu items, module2 - 4 menu items). In home screen customer will select module.
I need to display module menus only Depending on module selection
How to get username from CreatorId for all records at a time ? Is there any sample code ?
Hi,
if I understand correctly, are you looking for something like this?
private readonly IRepository<IdentityUser, Guid> _identityUserRepository; public async Task GetUserNamesByCreatorId() { var userNames= (await _identityUserRepository.GetListAsync(x => x.CreatorId == ...)).Select(x => x.UserName); }
Yes, but i need to get all records Creator name with single query execution
Is there any bootstrap component to select Date & Time ?
ABP Framework has only Date selection component, but we need time selection also
how to open modal dialog box on modal dialog.
is there any possibility to open multiple modal windows ?