Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "exlnt"

@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.

  1. Copy metronic plugin folder to wwwroot/lib folder.
  2. Edited bundleconfig with new section named "EXNTCssBundle" and "ExlntJSBundle"
{
    "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"
    ]
  }
  1. Updated the Area/Nursing/Views/Layout/_Layout cshtml file with links to the new Exlnt bundles.
  2. Run app, no error reported on chrome console and datatables plugin not working!

@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!

Showing 101 to 110 of 263 entries