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

Activities of "antonis"

After upgrading to aspnetzero 5.0.6 from 4.6 angular ise terribly slow. First of all compilation is faster but reloading of the page takes 20 seconds. Second while clicking on custom lazy load modules takes 20 seconds to open a lazy loaded module. Didnt have this proble in aspnetzero 4.6

Thanks

I am using windows 10 and whenever I want to delete node_modules I get the following error:

Invalid MS-Dos function which is cause by the datamaps folder. Check the attachment. Does anyone knows how can I delete this datamaps?

Thanks

I have several modules in my angular 4 app. User test is given access only to Clients section (Clients lazy load module). I changed auth-route-guard.ts so that once test user is logged in redirected to dashboard

selectBestRoute(): string {
      
        if (!this._sessionService.user) {
            return '/account/login';
        }
       
        if (this._permissionChecker.isGranted('Pages.Administration.Host.Dashboard')) {
            return '/app/admin/hostDashboard';
        }

        if (this._permissionChecker.isGranted('Pages.Tenant.Dashboard')) {
            return '/app/main/dashboard';
        }

        if (this._permissionChecker.isGranted('Pages.Tenants')) {
            return '/app/admin/tenants';
        }

        if (this._permissionChecker.isGranted('Pages.Administration.Users')) {
            return '/app/admin/users';
        }

        if (this._permissionChecker.isGranted('Pages.Clients.Dashboard')) {
            return '/app/clients/dashboard';
        }
      
        return '/app/notifications';
    }

The breakpoint goes inside the Pages.Clients.Dashboard condition but I see blank page no errors nothing.

Question

When v5.1. is gonna be released? We need some dates in order to make our schedules.

Thanks

Hi,

In angular 2 aspnet core is there any way to get a username when I have the id of the user? Not the current logged in user but another's username

Thanks

Question

I suppose that jquery dependency can now be removed from angular 2 and aspnet core project since the new metronic v5 supports angular by default.

Am I right?

Thanks

Hi,

I am using aspnet core with angular 2

I have a lot of menu items about 100. The problem that I have is when I am in the last menu items and click on a menu item the page loads but it does not take me to top and I have to manuall scroll which is bad UX?

How can I fix this?

Thanks

Hi,

I want to ask how can I change the position of the abp.notify... popup to start from top right instead of bottom right? See link below.

[https://1drv.ms/i/s!Ap6vT6kvVLZ0jFlmnTqGuXwRD76O])

And also how can I change the duration of it?

Thanks in advance.

After upgrading to VS2017 15.3 I am getting a huge error "Duplicate 'Content' items were included. The .NET SDK includes 'Content' items from your project directory by default. You can either remove these items from your project file, or set the 'EnableDefaultContentItems' property to 'false' if you want to explicitly include them in your project file. For more information, see <a class="postlink" href="https://aka.ms/sdkimplicititems">https://aka.ms/sdkimplicititems</a>. The duplicate items were: 'wwwroot\Common\Images\app-logo-on-light.png'; 'wwwroot\Common\Images\app-logo-small.png'; 'wwwroot\Common\Images\logo.png'; 'wwwroot\Common\Styles\core.css'; 'wwwroot\Common\Styles\core.less'; 'wwwroot\Common\Styles\core.min.css'; ......"

I found this link on how to fix it <a class="postlink" href="https://www.danielcrabtree.com/blog/273/fixing-the-duplicate-content-error-after-upgrading-visual-studio-2017">https://www.danielcrabtree.com/blog/273 ... tudio-2017</a>

"The solution is simple. Right click on the affected project in solution explorer, select Edit [YourProjectName].csproj, then remove the lines that specify what content to include"

Problem is I edited the csproj file but didnt see all these files

Question

Hi,

I can see that you added the option to download a merged project but I cant find documentation on how to run it?

Thanks

Showing 51 to 60 of 72 entries