Discussion on Pages - Admin Dashboard Template

Discussion on Pages - Admin Dashboard Template

By
Cart 11,423 sales
Well Documented

ace supports this item

Supported

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

3890 comments found.

Hi, calendar actions to Meteor are not working. Drag and drop, scroll, change of dates like month, days and year does not work.

Just to let you know. I’m not sure if that should work properly but would be nice if it does.

Thanks

Hi there

I will have a look :)

Thanks for a great theme, and glad to hear there is something in the works for later this year. I was worried that this project had perhaps been abandoned seeing as there were no new design for front-end. It would be very nice to have full set of features and pages for the front end.

Hi there

Pages will be always updated :) You must be talking about the pages front end ?

Hi is there an angular way to change the image on the top right (circular profile picture). I’m loading it from the server, and I’ve used ng-src instead of src and it doesn’t seem to work. Is a script being used to produce the drop down menu etc… ?

Hi,

We use unveil plugin to load retina versions. Can you try without data-src-retina and data-src attributes when you use
<img ng-src="{{imageUrl}}" /> 

Thank you, I ended up doing a number of changes to the markup since it wasn’t displaying the new image properly :

Have you found the fix for the Calendar to show all of the dates of the month in the month view? I have made a lot of alterations, so I am not sure if you have a piece of code I can add to fix this.

Hi there

Sorry no we have not fixed that yet. I will be adding a fix and update within the week for Pages :)

Hi ace!

I would like to use the form element date range picket, but I actually can’t. I just need to add the daterangepicker pluging css and js file or I am gonna need another script to work together?

Hi there

Sorry about the late reply. Hope you had a great weekend. We are assuming you have purchased pages :)

CSS
<link href="assets/plugins/bootstrap-datepicker/css/datepicker3.css" rel="stylesheet" type="text/css" media="screen">
JS
<script src="assets/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js" type="text/javascript"></script>
JS init Script You can include this code any where you want :)
        $('#daterangepicker').daterangepicker({
            timePicker: true,
            timePickerIncrement: 30,
            format: 'MM/DD/YYYY h:mm A'
        }, function(start, end, label) {
            console.log(start.toISOString(), end.toISOString(), label);
        });

daterangepicker is the id of the input box

Thank you! Yes, but I bought with another user: srfframos

Hi,

I have checked vector_map for integrating my system. It gives nice view and mapplic is good module. But we need to dynamic website I mean if i want to change and add some location data to this vector_map.js. How can I do this? I have to find x and y vector value of over 200 nations?? It’s not right situation!!

How do you think about it??

Hi there

Vector map is not build for that purpose. Would be crazy to add all the nations. I would recommend google maps with new styles.

https://snazzymaps.com/

Hi,

I saw that there is now a Pages gem for rails, which is awesome! (source: http://help.revox.io/t/pages-rails-gem/229)

However I wasn’t able to view the GitHub repo; is it by request only (for purchasers)? Happy to provide my purchase code and GitHub account if that’s the case.

Thanks!

apersaud

Thanks!

Hi any updates on getting access to the rails gem? Thank you!

Hi there

Sorry about the delay :)

You have been added long time ago

https://github.com/revoxltd

Hi!

How do I change the color palette on a rails app using pages dashboard.

Thank you.

Hi there

Are you using Pages Rails boilerplate ? :) and are you using SCSS or LESS?

They can be found in pages/scss/themes/default/var.less

Hello, I have followed the following steps as mentioned in one of the comments:

Can you create a new project

”meteor create myapp”

then delete all the folders expect .meteor folder (This is usually hidden)

Next copy all the files and folders from

“demo/meteor” folder in the themeforest downloaded package

Next add the following packages

meteor add less

meteor add jquery

meteor add twbs:bootstrap

meteor add cwaring:modernizr

meteor add revox:pages-core

meteor add gromo:jquery.scrollbar

meteor add fortawesome:fontawesome

meteor add meteorhacks:flow-router

meteor add meteorhacks:flow-layout

meteor add zimme:active-route

meteor add momentjs:moment

Upon running “meteor run” I get the following error:

Unable to resolve some modules:

  "jquery" in /C/myapp/client/views/table/dependencies/jquery-datatable/2-dataTables.tableTools.js (web.browser)
  "component~indexof@0.0.3" in /C/myapp/client/views/form/dependencies/switchery/js/switchery.min.js (web.browser)
  "abpetkov~transitionize@0.0.3" in /C/myapp/client/views/form/dependencies/switchery/js/switchery.min.js (web.browser)
  "ftlabs~fastclick@v0.6.11" in /C/myapp/client/views/form/dependencies/switchery/js/switchery.min.js (web.browser)
  "component~classes@1.2.1" in /C/myapp/client/views/form/dependencies/switchery/js/switchery.min.js (web.browser)
  "switchery" in /C/myapp/client/views/form/dependencies/switchery/js/switchery.min.js (web.browser)
  "moment" in /C/myapp/client/views/calendar/dependencies/pages.calendar.js (web.browser)
  "emitter" in /C/myapp/client/views/form/dependencies/dropzone/dropzone-amd-module.min.js (web.browser)
  "wolfy87-eventemitter" in /C/myapp/client/views/social/dependencies/imagesloaded/imagesloaded.pkgd.min.js (web.browser)
  "eventie" in /C/myapp/client/views/social/dependencies/imagesloaded/imagesloaded.pkgd.min.js (web.browser)
  "get-style-property" in /C/myapp/client/views/social/dependencies/jquery-isotope/isotope.pkgd.min.js (web.browser)
  "datatables" in /C/myapp/client/views/table/dependencies/jquery-datatable/2-dataTables.tableTools.js (web.browser)
" 

Is there any idea on how I can fix this issue?

Hi there

Hope you had a great weekend :) Ah may I see your project folder structure ?

Hi team.

I would like to use datetimepicker in this theme, is possible?

If not please give a stopgap solution.

In the archive ‘form_elements.css’ in the plugin section has:

Datepicker Timepicker Daterangepicker

I would like to ask the plugin datetimepicker.

Hi there

Make sure you have the following includes

 <link href="assets/plugins/bootstrap-timepicker/bootstrap-timepicker.min.css" rel="stylesheet" type="text/css" media="screen">
<script src="assets/plugins/bootstrap-timepicker/bootstrap-timepicker.min.js"></script>
and JS code
        /* Time picker
         * https://github.com/m3wolf/bootstrap3-timepicker
         */
        $('#timepicker').timepicker().on('show.timepicker', function(e) {
            var widget = $('.bootstrap-timepicker-widget');
            widget.find('.glyphicon-chevron-up').removeClass().addClass('pg-arrow_maximize');
            widget.find('.glyphicon-chevron-down').removeClass().addClass('pg-arrow_minimize');
        });

timepicker is an input box with the id – #timepicker

There is different select2 “focus” css with other input elements in v2.2.0, How can I fix it?

Hi there

Could you share a screenshot with us? I’m not sure if I got your problem correctly :)

hello

“PAGES DETAILED VIEW TABLE” Can you make the table to HTML. not calling js to row-details. build with row-details html code.

Hi there

You mean without datatablejs ? :)

yes.

hi ace, is there any list of svg font from A-Z for this template? i want to put another text in my sidebar, now its only social, media and calendar. i think its load from this svg, /assets/img/demo/*_app.svg (social_app.svg) i found it hard to draw text to svg path and matching it all along.

sorry for my bad english,

Regards

Hi there

All the svg are found in

demo/html/pages/progress

ace, why sometimes some style properties from a css selector aren’t applied to an element properly? Here a screenshot, with some div with class box-step-register but the properties don’t apper on styles, and obviously I can’t see on my styles on screen element too: https://www.dropbox.com/s/pqknkq50yd3q0gy/Screenshot%202016-10-25%2021.12.39.png?dl=0

Hi there

Sorry about the late reply, Are you talking about CS select ? I’m abit confused :)

At this time the month view sometimes does not show all the days of the month but instead pushes them to the next month. Is there a way to always show all the days in the month in that view?

Hi there

Yes! :) it is a bug. Thank you. Yes its possible I will give a fix ASAP

Hi – I am trying to launch pages using express but I cant seem to understand how the expressjs generator works.

I faced this error when i ran grunt, following the documentation.

Running “build:express” task

Running “exec:express” (exec) task >> /bin/sh: express: command not found >> Exited with code: 127. Warning: Task “exec:express” failed. Use—force to continue.

Thanks.

Hi Guys,

I’ve solved the problem. It was just a simple routing issue

For those who are using the angular boilerplate and using express please do include:

app.use(express.static(__dirname + ”/public”)); app.use(”/assets”, express.static(__dirname + ”/assets”)); app.use(”/pages”, express.static(__dirname + ”/pages”)); app.use(”/tpl”, express.static(__dirname + ”/tpl”));

Hi there

Sorry about the late reply, Its good to hear your using the angular version on express ? :)

Hi, are you planning to release a pure AngularJS version (w/o jQuery) in the near future? Thanks.

Hi there

Yes we are :) We are really busy with the pending update. I will do my best, how urgent is it ?

Hi – where can i find change log of the recently released update – to see what’s new and decide whether update my work ? By the way – in a comment (1 month ago) you mention a dark theme was being added – is it there ? how can turn it on and see ?

Thanks giovanni

Sorry :( was really busy in the weekend. I will get you the dark theme ASAP with priority

any plan ? or at least a guideline on how to attempt the customization myself (I assume is a bit more elaborated that just customizing the theme for different colors)

Hi there

Sorry about the late reply

You can customize the theme colors in pages/less/themes/default/var.less

You have to compile the less you can follow up the guide in using LESS compiler

https://medium.com/pages-tutorials/setting-up-pages-less-with-koala-app-5be104128fc6#.2l86ctvmk

please add me to github <username: set-taviskaron>

Hi there

Invite sent :)

What was the recent update? I can’t seem to find an up-to-date changelog. Also, over 1 year ago you told me a few times that a pure Angular version without any jQuery was on the way. Does this exist or did this never happen?

Hi there

Change log is always in the bundle and over here

http://changelog.pages.revox.io/

With Angular2 yes not with Angular One.

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