0
yilmaz.atalar created
We saw that the search feature on the settings came to LeptonX but not to Lepton. We use Lepton and we need this feature. Could you please evaluate it?
3 Answer(s)
-
0
-
0
-
0
You can check LeptonX demo to find a proper component. All the components from this website is done in LeptonX, you can directly get the HTML code and make it work in your application:
By the way, the component from the screenshot is AbpPageSearchBoxViewComponent from ABP Framework: https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/Pages/Shared/Components/AbpPageSearchBox/Default.cshtml
You can easily render it in your page like below:
@await Component.InvokeAsync(typeof(AbpPageSearchBoxViewComponent))
Make sure the following using statement is added:
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Pages.Shared.Components.AbpPageSearchBox