Discussion on Pages - Admin Dashboard Template

Discussion on Pages - Admin Dashboard Template

By
Cart 11,420 sales
Well Documented

ace supports this item

Supported

This author's response time can be up to 1 business day.

3890 comments found.

Can i have access to the Github repo. My username is amaurib

Hi there

Invitation sent :)

Thanks, received and accepted.

Same issue for RTL, give me the new css, please

I Cant find RTL in HTML version? Please help

Hi there

We removed RTL from v5 since we moved SCSS but now we just finished it :)

You can get it from our github repository. If you do not have access let me know your username

Online builder not working.

Hi there

We deployed a new version recently, that fixed a-lot of bugs, could you elaborate your problem a bit more ?

I have downloaded Feb 20 update but the theme builder doesn’t work. The one published at http://pages.revox.io/dashboard/latest/html/condensed/builder.html# doesnt work either.

The generated file “pages_export.html” seems to have broken layout/css…

Love the theme. Looks very clean. just wondering why you don’t have a support forum to support the theme; reading the comments here is a pain.

Also the documentation on the theme is a little vague. most of the V5 docs looks that has been copied from older version of the theme.

Hi there

We are going to have a support forum, still making it though :) and yes we are still doing updates on the doc :)

You can check our road map here https://trello.com/b/2cCjhlFb/pages

Will there be support for react?

Hi there

Yes, we are on it, will take around a month

Is there a carousel or news slider plugin.? I can’t find one

HTML & possibly Angular. Haven’t decided yet.

Is there a carousel slider or not?

>> SyntaxError: expected ‘)’ got ’>’ in pages\less\themes\default\var.less on line 127, column 61: >> 126 @primary-light-mix: mix(@color-primary, #ffffff, @mix-percentage-light); >> 127 @primary-light-saturate: if((saturation(@primary-light-mix) > 5), saturate(@primary-light-mix, @saturation-shift/2), @primary-light-mix); >> 128 @primary-light-hue: if(luma(spin(@color-primary, @hue-shift)) > luma(@color-primary), @hue-shift/2, -@hue-shift/2);

Where is problem?

my project is completely in intellij IDEA with grunt installed

I see, is the grunt js file implemented by ?

Yes it is. but there is no scss in gruntfile.js

Hi, in my pages loading your calendar by ajax. If I load the calendar first and double click, I correctly display 1x event. If I load this kalndar 6x then double click will show me 6x event. How can I remove this unwanted status? well thank you Sorry my English

Alright, then would be able send me the code where the calendar page loads and initialize very time ?

you could simulate it

Hi there

Sent you an email

Hi, in my pages loading your calendar by ajax. If I load the calendar first and double click, I correctly display 1x event. If I load this kalndar 6x then double click will show me 6x event. How can I remove this unwanted status? well thank you Sorry my English

Hi there

I understood the first part of the question but what do you mean by “If I load this kalndar 6x then double click” If you can elaborate it abitt

I am having an issue with modals under the casual theme on mobile devices. The black “fade” effect that usually appears behind a modal window appears over the modal no matter which modal I use, and nothing is clickable on the screen. Unfortunately this doesn’t happen in the chrome dev tools on a PC, it only happens on an actual mobile device like an iPhone. Looking through the other theme this doesn’t happen with Simply White or Condensed, but does happen on Executive. If I strip out all divs and leave only the hidden model with a button to open it, it works fine. Something about the themed template is causing it and I don’t know how to debut it on a mobile device.

Hi there

Noted I will get a quick patch this week out :)

icon cheatsheet in demo doesnt work

Noted we are to add the cheat sheet soon :) Its just going to be on the documentation

Hi there

Added the cheat sheet :)

Hi Guys,

Is there an ETA for Angular 9 support?

Cheers

Hi there

End of this week

Hi Guys, i bought my license this week. When is Angular 9 version going to be available and will you provide a migration path?

Hi there, in the “UI Element – Icons page”, I think it’s far away better if you just show all your icons collection without typing the keyword first. Sometime we just want to search an icon manually, looking for the suit one we need.

In your previous version, it’s better I still can search easily. In current version, it’s very annoying, hard to find perfect keyword.

Please fix

Hi there

Sure, I will have something ready by this weekend

Hi could you please help my question before regards the PSD file of “Simply white”

Hi there, niuhjk. Sorry if we missed your question before. The PSD Designs for all UI Elements are available, but we don’t have separate ones for separate layouts for now.

I see. Thanks!

Hello,

Very nice theme, I just bought & tried it out…

I have 2 questions:

1/ The minimal version “getting_started” is 2x slower than the full demo. When I make a change in the getting_started project it takes at least 15 seconds to update my browser, while the full demo only takes 7 seconds. —> since we will start from the “getting_started”, I need to be able to do changes in less than 10 seconds. Can you advise?

2/ Is it possible to lazy-load the modules in the routes? (this would also improve performance, maybe for next release?)

example: routes = [ { path: ‘project’, loadChildren: () => import(`./project/project.module`).then(m => m.ProjectModule) } ]

Thx!

Hi there

1. That is strange, the getting_started is more lighter. I will check it on my end :)

2. Lazy load modules are already incorporated, you can see in the demo/angular/routes.ts

1. OK thanks

2. Not in the version I bought yesterday (I’m talking about the lazy loading introduced in Angular 8).

I changed the project myself, this is what I had to do:

  • In the file tsconfig.app.json, I changed module to “esNext”
  • Then I updated the AppRoutes array in app.routing.ts. For the moment I’m using the casual layout, so I put all the casual items inside the children of casual. And I used the new syntax to lazy load modules. The result is much shorter and more performant:

    { path: ‘casual’, component: CasualLayout, children: [ { path: ‘dashboard’, component: CasualDashboardComponent }, { path: ‘social’, component: SocialComponent }, { path: ‘builder’, loadChildren: () => import(’./builder/builder.module’).then(m => m.BuilderModule) }, { path: ‘layouts’, loadChildren: () => import(’./layouts/layouts.module’).then(m => m.LayoutPageModule) }, { path: ‘extra’, loadChildren: () => import(’./extra/extra.module’).then(m => m.ExtraModule) }, { path: ‘session’, loadChildren: () => import(’./session/session.module’).then(m => m.SessionModule) }, { path: ‘forms’, loadChildren: () => import(’./forms/forms.module’).then(m => m.FormsPageModule) }, { path: ‘ui’, loadChildren: () => import(’./ui/ui.module’).then(m => m.UiModule) }, { path: ‘email’, loadChildren: () => import(’./email/email.module’).then(m => m.EmailModule) }, { path: ‘cards’, component: CardsComponentPage }, { path: ‘views’, component: ViewsPageComponent }, { path: ‘tables’, loadChildren: () => import(’./tables/tables.module’).then(m => m.TablesModule) }, { path: ‘maps’, loadChildren: () => import(’./maps/maps.module’).then(m => m.MapsModule) }, { path: ‘charts’, component: ChartsComponent } ] }

/Frank

Hi, when we receive an update, are we supposed to only replace the @pages folder ? Thanks.

Hi there

Yea you can do that, if you have not changed anything there

couple of issues: i’m using corporate layout, line #703 $menu-padding casues webpack to crash, after commenting out can pack for production. this one also ”.../../img/icons/sort_desc_disabled.png” must be ”../../img/icons/sort_desc_disabled.png” and also “pages-root-urlfonts/pages-icon/pages-icon.svg” what is pages-root-urlfonts?

Hi there

Is the laravel ?

Hi,

The breadcrumb seems to be misaligned. When I have multiple breadcrumb items (at least 3), the 2nd item is not aligned with the first one and so on. The design is like a stairs.

Hi there

I’m sorry, we this is an issue. Just found out. I have added it to you request list

https://trello.com/b/2cCjhlFb/pages

We will be rolling a quick fix today

Hi. How can I re-initialize the initSelectFxPlugin and other core functions? I have this customized DataTables (I added a length drop down) and I want to apply the dropdown effects. I need to initialize it on initComplete/callDrawback. Thank you. Love the template <3

Hi there

You can run

$.Pages.init(); function

I will add this to docs. You can track your request and update progress https://trello.com/b/2cCjhlFb/pages
by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey