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.

What icon set is being used for ‘ ’ ? Is it the pages icon set or from font awesome/other? I want to replace it with another icon but from the same set.

Hi there

Yes, it’s from pages icon sent. They are pixel perfect icons, not font icons. There are only a very few :(

It’s best to choose from here.

how about for icon-set menu-hamburger which icon set is that from?

It’s from the images icon set I told you about

If it has the class “icon-set” then it’s the image icon set. To view them go to pages/img/icons/top_tray.png

Hello can this play the role of a user dashboard in a multi membership site,where everybody has a unique dashboard and tasks ?

Hi there

This does not have functionality involve :) It is a UI Kit

I’m trying to access your pages gem from this url ‘https://github.com/revoxltd/pages-rails.git' but the page was not accessible. When i try to install pages gem in my rails app, it requires the username and password of the github account. Could you please tell me how to access your pages gem? and is there a docummentation about it?. I generated a rails app using the steps detailed in the documentation. After generating a controller for index page, i receive an error saying couldn't find file 'pages-plugins/bootsrapv3/css/bootstrap.min' with type 'text/css' Checked in these paths: .....

Yes it should :) let me know

Tried the gem and it worked! Thanks.

Great :)

Hello,

Just a quick question. If I want to integrate your theme into my build strategy I only require to include all the files from the html template folder?

Thank you

Hi there

I’m not quite sure if I understood your question. What sort of a system are you talking about?

How to set the rightbar to default view alerts? It goes to chat, and I removed chat so there is nothing now until Alerts is selected.

Never mind. Fixed myself.

Seems like we were late :) if you have any questions feel free to comment

How to change a page header style to full width? The builder is not exporting correctly.

Never mind, read the docs.

Great :)

How to make the search functional? What files to edit?

Never mind, read the docs.

Hello, I really want to buy your themes (Admin and Frontend), but I want to ask you about the availability to use both of them as a single framework. For examle, I want to use some elements from admin panel in public pages. Is it possible?

By the way, is there some kind of animations API?

Hi there

We are already constructing work for a merge version. We do have a beta only for people who bought Pages Frontend and Dashboard. We paused it because Bootstrap 4 is coming out and need to update that first :)

Hello, I really need your help. In the quickview menu, I would like to add two different views within the same view-port, that is. When you click the plus button at the top, it opens a different view than when clicked in the list below. how can I do this?

Hi there

I replied to a similar comment. Yes that is possible :)

Go here http://pages.revox.io/dashboard/latest/doc/partials/views.html

You will find a topic called ” One to Many Navigation”

Hello, I really need your help. In the quickview menu, I would like to add two different views within the same view-port, that is. When you click the plus button at the top, it opens a different view than when clicked in the list below. how can I do this?

Hi there

You must be talking about mobile view ports ?


 <!-- BEGIN View Port !-->
 <div class="view-port clearfix" id="myViewPort">
  <!-- BEGIN View !-->
  <div class="view bg-white">

  </div>
  <!-- END View !-->

  <!-- BEGIN View !-->
  <div class="view bg-white">
    <div class="view bg-white" id="subView1">
      Your Content One
    </div>
    <div class="view bg-white" id="subView2">
      Your Content Two
    </div>
  </div>
  <!-- END View !-->
 </div>
 <!-- END View Port !-->

Then inside the first view myViewPort->view add a link like this

<a data-view-animation="push-parrallax" data-view-port="#myViewPort" data-navigate="view" data-toggle-view="#subView1" class="" href="#">
Go to View
</a>
<a data-view-animation="push-parrallax" data-view-port="#myViewPort" data-navigate="view" data-toggle-view="#subView2" class="" href="#">
Go to View
</a>

Pages is a great theme, Good Job! I would like to ask do you have a .psd of your theme or any builder app?

Hi there

No not the builder. Themes can be switched using Photoshop :)

Hello, I was looking at your admin and frontend products and just had some questions before i purchase both.

Q1. Does the admin area work out the box or is development required to make all the sections work as an admin system?

Q2. Does the front end have a type of builder for putting the page together or is it required to just use the code from each element and build the page how ever I like using an editor such as Coda or Sublime.

Q3. Are the sketch files included on the frontend?

Thanks

Hi there

1. Development is required

2. No builder included, you wil have to use sublime

3. Yes there is a free sketch version. Im trying to post the link. It was done by a community member

Hi,

Tabs are not visible on any browser in Windows 10 computer.

Hi there

I see, but we do not have the same issue on windows 10 edge :) what is the browser you are using ?

Hi, I want to know if you have a layout for fixed height and without sidebar? I want to build a POS layout which the layout cannot be scrolled down and without sidemenu.

Thank you.

Hi there

Like a top menu navigation ?

Yes like top menu navigatuon, but without sidemenu.

In the calendar, when adding a new event can you block that event so that it is not modified (moved or resized but can be deleted)? The calender can be displayed from Monday to Sunday without day of month? I really like the style and I plan to buy it but I have that doubt is the first style that has the calendar as I want. Thank you.

Hi there

Are you looking for a readonly event ?

Hi, Just wanted you to know that the export from builder is not working right away. Bootstrap is misspelled and the jquery ref is to an older one compared to the downloaded package. Also if you correct those issues the mobile view is not consistent. Menu is not shown when clicked on hambuger icon, neighter is the righ panel shown. Otherwise good job!

Hi there

Thank you for reporting it. Seems like people do use it :) I will get those builder bugs fixed ASAP

thx!

Hi i’m using 2 cs-select and each use different ng-model. I assigned value to each model but when i run, the second select showing the first value. (let’s say the first value is “10:00” the second select also showing “10:00” instead of “15:00”
<select class="cs-select cs-skin-slide" cs-select 
                                ng-model="da.time_start" ng-options="val for val in operationHours">
                            </select>
                            <span class="m-l-5 m-r-5">to</span>
                            <select class="cs-select cs-skin-slide" cs-select 
                                ng-model="da.time_end" ng-options="val for val in operationHours">
                            </select>
Controller:
$scope.da.time_start = "10:00";
$scope.da.time_end = "15:00";

Hello, In the form-wizard, I need to validate the fields, I already did this, but I need to block the action of the next button. That is, I need the user to type all the fields, and then clicking on the next button, he checks if everything is complete and then moves on to the next step. How can I do this?

Hello, In the form-wizard, I need to validate the fields, I already did this, but I need to block the action of the next button. That is, I need the user to type all the fields, and then clicking on the next button, he checks if everything is complete and then moves on to the next step. How can I do this?

Hi there

This documentation will be most helpful :)

http://vinceg.github.io/twitter-bootstrap-wizard/

Hi, does the theme comes with an editable .psd of all the designs? Thank you!

Hi there

We do not have a switching mechanism for changing the color palette on photoshop automatically. But we have added the color palette in the PSD so you can pick and switch manually

Thanks! the only way to get the PSD is to buy the entire template? i was wondering if i can buy only the PSD

Hi there

Sorry, that is not possible :( Envato does not have that flexibility

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