@ismcagdas - I emailed you my solution last week, I still have not gotten any reply. Can you please provide an update?
Yes I'm aware of that. I added the min file (js) file entries, into _ExlntCustomJSBundle.js, but still my plugins are not working.
<cite>ismcagdas: </cite> Hi @exlnt,
Can you share your project with us via <a href="mailto:[email protected]">[email protected]</a> ? In that way, we will solve your problem faster.
Thanks.
I have emailed you a link to my solution for the issue on this thread. Can you please take a look and let me know? Thanks!
<environment names="Development">
....
....
@*EXLNT*@
<link rel="stylesheet" href="~/view-resources/Areas/Nursing/Views/EXLNT/_ExlntCustomCSSBundle.css" asp-append-version="true" />
Then in the "scripts" section, just above all the "Abp" script entries, I added the lines shown below.
<environment names="Development">
....
....
@*EXLNT*@
<script href="~/view-resources/Areas/Nursing/Views/EXLNT/_ExlntCustomJSBundle.js" asp-append-version="true"></script>
I also added the "min" entries under the "staging, production" sections.
I just added the script and css file references for the new plugin directly on my editmodal.cshtml and they still dont work! What am I missing here?
Thanks!
I cannot seem to make this work. I have tried the following steps.
{
"outputFileName": "wwwroot/view-resources/Areas/Nursing/Views/EXLNT/_ExlntCustomCSSBundle.css",
"inputFiles": [
"wwwroot/lib/datatables/datatables.min.css",
"wwwroot/lib/datatables/plugins/bootstrap/datatables.bootstrap.css"
]
},
{
"outputFileName": "wwwroot/view-resources/Areas/Nursing/Views/EXLNT/_ExlntCustomJSBundle.js",
"inputFiles": [
"wwwroot/lib/datatables/datatables.min.js",
"wwwroot/lib/datatables/plugins/bootstrap/datatables.bootstrap.js"
]
}
@Support Team
Can you provide step by step guide on how to add new UI components into .NET Core solution? I know how to do it in the .NET5 MVC solution. How do I bring in additional Metronic UI components into the .NET Core solution? If you just list out the high level steps that should help.
I posted this same issue question on stackoverflow and a person suggested the below code and it worked!
var companyEditDto = _companyRepository.GetAll()
.Include(c => c.Addresses)
.Include(c => c.Contacts)
.Include(c => c.Note).ThenInclude(N => N.Notes)
.FirstOrDefault(x => x.Id == input.Id);
I am concerned about doing the GetAll() in all my GetForEdit app services and how it will impact the performance of my app as more data gets into the DB?
I tried your suggestion, but I could not figure out or understand what parameters I need to pass to this method. Can you share a full example call and what all parameters I need to pass into this method?
Here is my app service code: <a class="postlink" href="https://docs.google.com/document/d/1KrL1oCvwssdyDGfcue8HlANAUtI1bCuH2cToMfiVSxM/edit?usp=sharing">https://docs.google.com/document/d/1KrL ... sp=sharing</a>
<cite>ismcagdas: </cite> Hi @exlnt,
Can you share your project with us via <a href="mailto:[email protected]">[email protected]</a> ? In that way, we will solve your problem faster.
Thanks.
I actually am trying to convert my solution into the .NET Core MVC/JQuery (V4.1) template. I am facing some issue with that template too. If I am unable to get the .NET Core solution working, I will share my existing solution for this issue. Thanks!