3890 comments found.
Radio-Buttons are not working when used in an accordion, could you provide a fix?
Sure will provide you a quick fix 
That’d be great! 
Hi there
This is a quick fix, this is because of bootstrap. It happens for any check box. Add the script in your custom js file or any other js file you want & place it in document ready 
$('.panel-collapse label').on('click', function(e){
e.stopPropagation();
})
Hey, thank you very much. It’s not working for me, stopPropagation is triggered but the state doesn’t change – maybe there is another problem with an accordion in a modal? that’s what I have 
This should 
$('.panel-body label, .panel-body input[type=checkbox], .panel-body input[type=radio]').on('click', function(e){
e.stopPropagation();
})
Pefect, this work’s perfectly
Thank you have a great day
I sent the message before but it’s one page back. Add me to github: nishikazuhiro.
Sent you earlier 
Thanks. Is the PSD available in github 1.1.0 branch?
Hi there
No PSD’s are bit heavy to be on github will be including it separately to the package ? 
Hi there
We have all the PSD ready expect the tables
let me know if you need a pre-release
Hi, I’d like to access the github repo. My id is educoding. Than you =)
Hi there Sent you an invite 
Please add to github smcclstocks
Hi there
Sent you invite 
I’ve been keeping an eye out for the update but completely understand these things take time. I sent a request for access on git hub through the contact form but never received a response. Access would be appreciated.
Thanks!
Hi there
We might have missed, my apologies. Can you let me know your github Id
No worries! Just sent id through your contact form.
Thanks again!
Uncaught TypeError: Cannot read property ‘getColor’ of undefined::dashboard.js line 3. Why do I get this error?
Have you included pages.js above dashboard.js?
I am very interested by this template. But I would like it to be done in Angular. What is the forecast update?
Sorry, I just read the previous reviews. I’ll buy and wait. Really need this to be able to start my project.
Great!
Thank you if you want I can give you access to git hub
Thank you My github: vinicius73
Hi there Sent you an invite 
Hi, will there be an Update available to more actual components implicit to jQuery 2.13. The old jQuery Version 1.8.3 makes it impossible to use it with other more modern components?
Hi there
Yes v1.1 as jquery 1.11.1 a stable version
and will support all the new plugins so if you got github access you can download it straight away
Hello,
How to get access to the github repo?
Thanks 
Hi there
Sure whats your github ID ? 
VladoMS
Thanks 
Sent you an invite 
Hi, in Chrome Version 41.x Beta the Icons in the Menu transform after the page is fully loaded. First the Icons are normal. Please see this link!
Hope you can provide a fix.
Thanks, Christoph
Hi there
Thank you for informing me know, will check this. You always can not be sure about Beta versions
the current 40.0.2214.111 has no issues of such.
Hi, thanks,
yep, you are right, but maybe we will have to take a look when 41.x gets stable 
Thanks
Is v1.1 coming out today? I’m REALLY looking forward this update. Thanks a lot.
Hi there
We are almost done!
if you have github access you can download it straight away without waiting for themeforest to approve.
How can I have the access to github?
My github ID is “nishikazuhiro”.
Hi there Sent you an invite 
hi,
i run a video production company and was wondering if this theme can let me do the following:
- create projects that only the clients can see (so other clients cannot see anything but their own) – within projects let anyone upload pics / videos / youtube links and chat. – have a freelancer section where freelancers can register and put up a portfolio (bit like peopleperhour.com)
cheers 
Hi,
I’m afraid, Pages is only a frontend framework and it doesn’t provide you with the back-end logic. You can choose any back-end language of choice and use Pages as a theme in the front-end. Let us know if you need further clarifications 
yes please! sorry i dont get it :/ is it not just a wordpress theme ? what else do i need after i buy your framework?
Nope
We only provide HTML, JS and CSS and other static assets. If you’re planning to use Wordpress you’ll have to write a new theme by yourself using Pages components. Pages is based on Bootstrap Framework but we have done so many additions making it a comprehensive UI framework by writing our own jQuery plugins etc.
Here’s our landing page explaining our unique features: http://pages.revox.io/
oh i see!! yeah im gonna need a real programmer to make this then! can you suggest any sites where i can find someone to build this into my site?
If you’re looking for freelancers you can try Elance, oDesk or Freelancer. I found the following link which compares each service. Hope you’ll find it useful.
- http://wpgurus.net/freelance-wordpress-developer-for-hire/
Hi !
I don’t know if this issue has been addressed before but it seems there is a slight problem with the search: The search string is actually one back in history. What I mean is if I type “foo” the search string will be “fo”.
I think the problem comes from the fact that the line
_this.options.onKeyEnter(_this.$searchField.val());
is triggered for the keydown event rather than the keyup event.
Hi,
Thanks for reporting the issue. Yes, you’re correct
Changing it to ‘keyup’ is the fix.
Hi ace, thanks for your brief response earlier.
Now, I’m try to show icon ‘Notification’ (in top toolbar) in mobile display mode, why it dissapear in mobile mode? How can i made it displayed when i viewed in mobile?
http://www.responsinator.com/?url=http%3A%2F%2Fpages.revox.io%2Flatest%2FHi there
Sorry about the late reply, its hidden from mobile and tablet view as it uses up space? are you using LESS or CSS ? 
yup, i know, but the notification icon is kinda important to shown up in my web apps
Im using CSS, ace..
working on a good fix for it 
Hey Buddy Thanks again for your great work!
I have a question about default “Select” (’.cs-select’). In getting started index page html select elements does not work. Which CSS or JS files should I include to work?
Hi there
Its an exclusive plugin only for pages and you do not require any css or js files
just add the class
Add .cs-select and .cs-skin-slide to any <select>
we have mentioned it over at the docs page
http://pages.revox.io/doc/jquery/form_elements.phpeg :
<select class="cs-select cs-skin-slide">
<option value="Web-safe">Web-safe</option>
<option value="Helvetica">Helvetica</option>
<option value="SegeoUI">SegeoUI</option>
</select>
Also do let me know if your getting a JS error in your browser console 
Hi,
Thank you very much.
You only need to include pages/css/pages.css and pages/js/pages.js (or their minified versions)
Actually I added these two files, but still it doesn’t work! Also I added a select with class “cs-select cs-skin-slide” in your index.html page inside the getting_started folder and it doesn’t work too.
Hi,
Sorry about the confusion. The example shown in the documentation is bit outdated. Please follow the following steps:
1) Adddata-init-plugin="cs-select" into your select
ex:
<select class="cs-select cs-skin-slide" data-init-plugin="cs-select">
<option value="1">Web-safe</option>
<option value="2">Helvetica</option>
<option value="3">SegeoUI</option>
</select>
2) Include the plugin classie.js
<!-- BEGIN VENDOR JS -->
...
<script type="text/javascript" src="assets/plugins/classie/classie.js"></script>
...
<!-- END VENDOR JS -->
<!-- BEGIN CORE TEMPLATE JS -->
<script src="pages/js/pages.min.js"></script>
<!-- END CORE TEMPLATE JS -->
Thank you 
Hi, just purchased the theme, very excited for the upcoming Angular version.
Apparently, I’m not very good at this. I want to take the ENTIRE ‘social app’ demo page and place it inside of the ‘9-column’ part of a ‘9-3-column’ page. I hope that makes sense, it’s a pretty simple thing I believe. Can you paste or message me what the entire HTML structure should look like to get this result? I want to play around with this but need to get it to work first.
Thanks!
Nevermind, looks like I figured it out!
Hi there
Sorry about late reply, hope you have
let me know if you find something else
Hello, thanks for the superbe theme. I’m trying to integrate your theme withe an Ember.js app. I’m having the following issues:
1. The sidebar was not always responding to the mouseEnter mouseLeave. From on of Ace answer on an Angular project, I think this is because the DOM element is not created at the proper time. I solved the issue by re-creating the mouse events in Ember and using Ember to add the class ‘sidebar-visible’ to the Body tag as well as adding
'transform: translate3d(210px, 0px, 0px)'to the page-sidebar div. This solved my issue. However, I did not test on all the possible browsers. Do you see any future compatibility issues if I remove your JS code for the sidebar and use my own? Any advices (other solutions). Other dynamic changes I should do?
2. The second bug may be related to the first one. When the sidebar is minimized, the page section and footer is under the sidebar. I add to add ’ style=”padding-left: 64px” ’ to div class=content. Similar action for the footer. If you have a better fix to this issue, I would love to hear it.
3. Lastly, the footer if not siting on the bottom of the page. For example, on the login page the footer text is above the “keep me signed” text of the page. I understand, that you will address a bug on the footer in the next release of due Feb 6. Do you think you fix will solve the issue? If not, what course of actions do you suggest? I don’t want a footer that stay visible, I want it to move with the page. Correction: In the case of the Login page, this is not a footer tag but a div class=”pull-bottom sm-pull-bottom” saying: “Create a pages account. If you have a facebook account, log into it for this process. Sign in with”
In the login page the div class=”login-container bg-white” is not taking the full height of the window. Not sure why.
5. +1 for adding a dropdown / log out menu to the profile text/picture in the next release.
4. I want to add a settings menu sitting at the bottom of the sidebar menu. Do you have css for that? Could not find indications in your docs.
6. On the calendar page, the year 2015 is only half visible (the vertical bar is sitting on top of the year 2015). This is not from my site but directly from you demo: http://pages.revox.io/latest/calendar.html. I use Chrome on Mac.
I understand that Ember.js may create some of theses issues, but from my short experience with Ember, it generally play nice with CSS and HTML.
Thanks
Hi there
Thank you very much for your detail explanation
I have not tried emberJS yet but I have good news for you
Your points
3, 5, 6, are already fixed and ready for v1.1 
Point 4, Im not sure what you meant by settings menu sitting at the bottom, is it something like a cog wheel at the very bottom of the sidebar ?
Ace, yes I want a cog wheel at the very bottom of the sidebar. For point 1 or 2, do you have any suggestions? Point 2 is more of concern to me. What is the correct CSS to use to have the content of the main page not be under sidebar? tks
Hi, i’m trying to adding more width to the sidebar, in order to fit in the menu text that is actually longer than the sidebar menu container. I already try to update it at pages.css, but somehow i don’t manage to fix attribute of left and width in class page-sidebar when it slides. Thank you for any help.
Hi there
Its quite easy if you use LESS to do it, it will output CSS but if your using less and if have made any changes to pages.css make sure you keep a back up and apply those changes to the less instead because less will compile to CSS 
to do so using css, you will find the class page-sidebar, change the width to what you want 
and change the “left” attribute to be 70px – “your new width”
example : 70px – 280px = -210px as the the left.
Afterwards you need to make small change in the JS
in pages/js/pages.js file line 1591
change the following attributes to the ones you want 
this.sideBarWidth = 280;
this.sideBarWidthCondensed = 280 - 70;
Sorry to bother but is the v1.1 late?
Hi there
Version 1.1.0 is abit delayed to February 6, 2015.
Completed
[Calendar] Week Separator Issue on Language Change bug [Calendar] Start and End Of Week enhancement Iphone register screen bug Missing Gulp File Task bug jQuery version update to 1.11.1 [Bug] Switchery Sizes [Bug] Selects Inputs [Typography] .label-danger style is missing in typography.less enhancement [Notifications] Circle notification text hidden when menu is pinned bug [Email] Add Bold and Italics options in the toolbar. enhancement [Portlets] draggable portlets, if you move them all into one column, you can’t move them back to the second column. [Builder] Export options enhancement HAML files for all pages enhancement When “Level 1” is active, the “Level 2” appears expanded on the page load bug Add logout to dropdown near profile image enhancement [Email] Try Pinning the Menu bar. The delete button comes to the bottom on top of the Profile Picture. bug [Email] Add email compose view enhancement [DataTables] export widget hidden, buttons not rendering properly bug [Calendar] Year selector out of page bug [Builder] Add sticky footer enhancement [Notifications] label-danger is missing [Email] Highlight selected email in the list enhancement Trigger 'change' and other events from cs-select enhancement
On Going
[New] rails boilerplate, sails boilerplate, express enhancement [New] Gallery page enhancement [New] Timeline page enhancement Provide PSD files
To Do
[Documentation] Mention how to use mobile/list views/transitions enhancement [Documentation] Add Chat feature, Social and Email enhancement Quickview minor issues [New] Add a time picker enhancement [New] Add Date Range Picker for Bootstrap
I can’t get the demo folder for v.1.1 to work on my Safari. I guess I just don’t know how to work with github. Let’s wait until it is out to ask for some support 
Hi there
Once you download the your github or checkout from github 
you need to have nodejs install and also grunt
run
npm install
and
grunt bundle
It will generate a full package that you get when you download from themeforest
Amazing! You guys do care about customer satisfaction! Thanks!
Hi! Can I have access to the GitHub please ? Username : simonsheehy
Thanks a lot !
Hi there
Sent you an invite 