Base solution for your next web application

Activities of "jdavis01"

Answer

Great Answers.. I will follow up when i get my solution

Question

Version 7.0.0 MVC Core & JQuery

So when using the rapid development tool the navigation properties are created to use a lookup table. What would be required to change the template to use the select2 dropdowns?   Just asking because I am not a fan of the lookup tables and i have to convert them all over after the code generation

Question

I am using the version 8.0.0 MVC Core / jQuery and would like to mass email all users. Has anyone successfully implemented and be willing to share?

We are using Version 9.0.1 MVC with .NetCore

How can we disable languages that we do not support? I can obviously update the databae however I was looking for the setting in the UI somewhere..

Answer

So I am having the same issue as mentioned here. I installed .NET CORE 2.2.8 runtime and the issue still exists. Do I need to install the exact 2.2.0 version?

Answer

Yep that was it, only for some reason I had to install the full SDK for it to work...

https://dotnet.microsoft.com/download/dotnet-core/2.2

Question

Prerequisites

  • Product Version 9.1.0
  • MVC
  • .NetCore

UI Dashboard Customization

We are adding a Sales and Quality Department to our application and would like to add a new custom tenant dashboard for each department (Tenant_Quality), Tenant_Sales). Once we have the new dashboards created be able to assign one to each user by department.

I have looked at the dashboard system and documentation and it looks possible, but was hoping that I could get a bit of feedback on how complex and if it's even a good idea.

Has anyone done a full step by step walkthru on module development for the aspnetboilerplate framework that would apply to AspNetZero?

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version? 10.2.0
  • What is your product type (Angular or MVC)? MVC
  • What is product framework type (.net framework or .net core)? Core

If issue related with ABP Framework

  • What is ABP Framework version? 6.2.0

I need to add an UpdateRangeAsync on some of my repositories.What is the best practice for extending repositories in AspNetZero

Here is my solution.. It gives me the ability to allow anyone I want to edit a dashboard

I added a Permission called Pages.Tenant.Dashboard.Edit to the AppPermissions.cs file in the Core Project ` //TENANT-SPECIFIC PERMISSIONS

    public const string Pages_Tenant_Dashboard = "Pages.Tenant.Dashboard";
    public const string Pages_Tenant_Dashboard_Edit = "Pages.Tenant.Dashboard.Edit";

` Then in the App/Areas/Views/Shared/Components/CustomizeableDashboard/index.cshtml view I modified the following code to look for dashboard edit permissions..

@if (IsGranted(AppPermissions.Pages_Tenant_Dashboard_Edit)) { <span class="switch switch-icon"> <label> <input type="checkbox" id="EditableCheckbox"> <span></span> </label> </span> <strong class="p-2 pt-4 dashboard-header-text-edit-mode"> @L("EditMode") </strong> }

Showing 51 to 60 of 69 entries