3890 comments found.
Hello, is there any way to make animated button btn-animated with text both on the one and second side? I want, instead of FontAwesome icon, use plain old fashioned text
Hi there
Yes you can, you can tweak it abit, Open up you custom style.css not pages.css
& add the following class
.btn-animated:before {
content: attr(data-pages-button-text);
}
Make sure your custom style.css is include after page.css in the HTML 
then add the attribute “data-pages-button-text”
<button type="button" class="btn btn-primary btn-cons btn-animated from-left " data-pages-button-text="Hover Text"> <span>Follow us</span> </button>
Hello ,
Do you intend to include the front-end theme from?!
Hi there
Yes its going to be included
its finished over 80% you will love it
has forecast?
Yap
we will try this week its finally coming to an end and I’m sorry to have everyone waiting
Can you add me to the github repos? User fbatschi
Hi there
Sent you an invite, Please use the branch v1.2
https://github.com/revoxltd/pages/tree/v1.2.0Hi Ace,
When do you plan to release v2 with the Front end ?
We are waiting 
Best, Alex.
Hi there!
Good new its 75% completed and will keep everyone updated!
on the progress. I can not give an exact date but we are almost there!
Can’t wait !! Will it be ready for the weekend ?
Best, Alex
Yes!
Im sorry again for keeping everyone wait for this, but its always worth the wait when it comes to Our Updates 
I’m sure it will be worth the wait. Cheers !!
Hello,
I have a problem with the calendar. When I change the locale to el(wich is greek), I get several issues:- Invlalid date on Months
- The events appear on another date instead of the date that I declared
- When I dblclick on a day the new event appears on the next day
- When I click on a bubble of a day it highlights me the next day.
Hi there
My apologies on this, we have fixed them, can you update the pages.calender js in pages/js folder. Or if you have a github account I can add you to github repo so you always can stay up to date 
Thank you very much! My username is: Peter8823
You should now be able to see the latest version of calendar
https://github.com/revoxltd/pages/blob/v1.2.0/core/js/pages.calendar.jsThank you very much! It works perfectly!
Hi there!
Can please you invite me to the GitHub repository? (Angular too please) My username is: thariel
Thanks!
Invitation sent. They’re both in the same repo
Hey
I saw on the demo site that when you browse the gallery page on phone, open the advanced filter menu, you can’t scroll this menu, it scroll the main page.
Hi there
You can wrap the div with the following
<div class="full-height scrollable"> </div>
Hello, the theme is so perfect! Thanks a lot, I saved lots of time in the UI. Very worth the money! Anyhow, it would be nice to have a countdown timer on this theme as well, don’t you agree? Kindly let me know if you are going to add countdown as a new feature, dont’ worry if not I am still a happy customer!
Great job!!! I am very happy.
Thank you very much! 
We are making an awesome front end its about 75% done , I will try to add a countdown there
Hello,
Just purchased the theme and launched it locally. I noticed an ongoing memory leak if you leave the page up. This even occurs on your demo page: http://pages.revox.io/latest/
If you go to your demo page and open up Activity Monitor on a Mac or Chrome Dev tools and record the memory usage on the timeline you will see what I mean.
Do you know what is causing this memory leak? Even your demo site grows over 500MB after 5 minutes. I left it overnight and memory grew to 20GB+
Hi there
This is surprising to hear!
I confirm that it is not
http://pages.revox.io/latest/Below is a screenshot of chrome dev tools network log. Can I also have you’r log too 
If your network log says “Finished” then the site loading is completed please check chrome logs on any other service. I’m happy to help you out 
HI Ace, thanks for your quick reply, However your screenshot only confirms that the page finished loading. Which is not the issue.
After page load the JS on the page continues to load DOM elements locally without removing unused elements leading to a memory leak.
http://screencast.com/t/6Iem4snW0Profile the timeline in dev tools which will reveal memory issues, NOT the Network tab which only shows the page loaded.
Hi there
We take these things really seriously 
I’m sorry about the wrong tab, here is what I got from JS profiler
http://prntscr.com/6z1olsIt does not keep on increase, the animation by jquery live
Here is another profile
http://prntscr.com/6z1nn0 http://prntscr.com/6z1o06Two different time intervals and it sticks with 21 MB
I will dig into this further. Thank you again!
Thanks! Not sure why it’s different on my setup. I will try on different machines tomorrow and let you know if I find any difference.
Hi Ace,
I tried to recreate the problem on safari but it did not have an issue. Looks like it is isolated to chrome only. I’m running the latest version 42.0.2311.90 (64-bit)
I tried to recreate the problem on another computer was successfully able to reproduce the problem on the same version of chrome.
What version of chrome are you running?
Here’s another screenshot from the task manager point of view: http://screencast.com/t/tmpmU7OG
Resolved:
Looks like this is a known issue for chrome. They just pushed new release this morning which seems to fix it (version 42.0.2311.135): http://googlechromereleases.blogspot.com/2015/04/stable-channel-update_28.htmlAll is well now, thanks for your help.
For the record, the problem doesn’t seem to be with the theme, seems like a chrome problem.
Hi there
Thank you very much for collaborating
Yes mostly my guess would be the large DOM in the index page with charts. It was surprising to see the memory increasing in your video cast. I will still keep an eye on this. I did test on windows PC but it was Ok. I will look at the charts 
Hi Ace.
I have a form that is loaded with data from database. The user can make changes and then, save them to update the database. My problem is with the dropdown control. How can I set one option as selected using jQuery?
thank you.
What’s the dropdown control you’re using?
I’m using cs-select, on form-group-default-selectFx
Here is my code:
<div class="form-group form-group-default required form-group-default-selectFx">
<label>Operadora</label>
<select class="cs-select cs-skin-slide" data-init-plugin="cs-select">
<option value="Vivo">Vivo</option>
<option value="TIM">TIM</option>
<option value="Outras">Outras</option>
</select>
</div>
<div class="form-group form-group-default required form-group-default-selectFx">
<label>Operadora</label>
<select class="cs-select cs-skin-slide" data-init-plugin="cs-select">
<option value="Vivo">Vivo</option>
<option value="TIM">TIM</option>
<option value="Outras" selected>Outras</option>
</select>
</div>
I know, but I need to select one options using jQuery, like I wrote in my first comment.
I have tried two differents ways:
$("#MyControl option[value='Outras']").attr('selected', 'selected');
and
$('#MyControl').val('Outras')
Both resulted no changes in the control, however, after send the ajax request for the form, the option ‘Outras’ was sent to server.
Understand? The control shows ‘Vivo’ as the selected option, because this is the first option, but the form sent the option ‘Outras’, because I forced this options using jQuery.
// Bind to changes of <select> control and change the placeholder text accordingly
$('body').on('change', '#MyControl', function()
{
var value = $(this).val();
var optionText = $(this).find('option[value="'+value +'"]').text();
$(this).parent('.cs-select').find('.cs-placeholder').text(optionText);
});
$('#MyControl').val('Outras').change();
Thank you Ace. Now it worked!
Hey ace !
i created a form and i want to clone this on click and remove it. Currently i have this little script: http://jsfiddle.net/h2vkpazn/But it does not work correctly. Only the first button is working and the remove working does not work entirly. Could you help me to get this thing working for your template ?
Furthermore if i click on add the select field of the cloned element isnt working. here is a little screenshot of my fields: http://www.awesomescreenshot.com/image/147566/2a6c8a07131ede3b73b3274d165a802eFor select field (I assume you’re using select2?) you’ll have to apply the plugin everytime a new element is created.
Thanks for your help
But if you click for example on the third “add” button it still does not work.
Yep i mean the select2 which sould be also cloned.
One more question:
How can i increase the “name number” if i add a new div.
e.g
<input type="hidden" id="picture_1" name="picture[0][path]" />
<input type="hidden" id="picture_2" name="picture[1][path]" />
<input type="hidden" id="picture_3" name="picture[2][path]" />
Updated fiddle: http://jsfiddle.net/h2vkpazn/3/
After you clone the element that you wish to apply select2, simply call:$('.my_cloned_element').select2()
Can you show 2.0 demo?
Hi there
I’m sorry we can not show a demo just yet
it over 70% completed and working hard to get it released. We need to cover up come two more documentation versions for Angular and Pages Frontend
Any ETA for 2.0? Because we currently started a new project and we would like to use new version of your theme.
Yap
we will try this week its finally coming to an end and I’m sorry to have everyone waiting
Hi,,
I interested your design on form element you created. but i have question, are they (every component, especially selection box) compatible for dynamic form input function used javascript / jquery?
Just because, I’ve bought other template like this, but they doesn’t support dynamic input (javascript / jquery), the CSS or JS will not working.
How about your template?!?
Thanks.
Hi there
Could you explain a bit what you meant about “dynamic input” ? are you referring to inputs that are created via JS ?
exactly yes. in other words, i need a group of input component that can contains a list of user experienced of their job. for the initial loaded screen i just provide 1 group input, then user can add dynamicaly (loaded from JS).
how is it?
Thanks
Hi there
The form groups right now has no JS dependencies to initialize like a plugin
its CSS, if your planing to append form group input box to the HTML DOM dynamically it will work just fine
keep in mind to use input array name or unique ID it should work just fine. Is that your requirement ?
Very nice, i’m happy to hear that. OK, i will prepare my account to buy this themes. I hope you’ll help if later i face problem to create function HTML DOM append input.
Thanks a lot
Great!
sure let me know if you find anything difficult
Hey could you send me an invite for the github for v1.2.0 (user = dminchev)? And are you planning to roll out the new vers soon?
Thank you in advance,
Hi there
Invite sent
yap version 2.0 is about to get released
Its says v1.2 in github we have hidden the surprise parts 
Hi,
Is there Angular Version? Can you send me an invite? my github id is tonjack
Thanks
Hey, I’m using the Calendar app in the dashboard, I’m pulling back data from my rails db using active record like this
events:
[<% Appointment.all.each do |appt| %>{
title: '<%= appt.service.name %>',
class: 'bg-success-lighter',
start: '<%= appt.starts_at %>',
end: '<%= appt.ends_at(appt) %>',
other: { }
}, <% end %> ],
The data comes back but not as soon as the appointment is made, I have to keep refreshing the application to the the data in.
Any suggestions on how to make it come back as soon as the data in in the db
Hi there
Sorry about the late reply, Are you fetching data from AJAX ? I’m abit confused about the part where you said
“The data comes back but not as soon as the appointment is made”
could you explain it abit, Maybe I could help you out 
Hey, so its an appointment booking system, a user books on the frontend of the site and I’m using the backend calendar for the business.
When a user books an appointment the appointment stored in the database.
On the calendar it is then rendered for the business. However, it is not rendered instantly upon refresh of the page. I’m using the code above to to render appointments from the db.
Is it possible for me to see your JS code ? the entire fragment
from the initialization of Pages calendar
Hope you understand what I meant. You can always drop it to support@revox.io
OK just sent it over
It seems to be ok
Do you think there is a delay in
<% Appointment.all.each do |appt| %> ? because it gets append by the server it self ?if you can open up your browser console in chrome or firefox go to the console tab and type in
$('body').pagescalendar('getEvents')
It should show up all your loaded events in the event array, you can even add that to your js file
alert($('body').pagescalendar('getEvents'));
and see if all the events are loaded properly
I’ve tested that, I have a list of the data coming back as well and that happens instatly
Hello!
I’m thinking about using this theme for my SaaS application. What license would I need to purchase if so? It has both a free and paid plan.
Thank you!
Hi there
Well according to themeforest all commercial apps that use pages will have to go with extended license if you plan to charge your end user. What most of them do is, they go with the regular and build the app and finally once they are ready to go live they purchase the extended version 
Thank you for your fast reply!
Does this template include just simple plain HTML5 files as well?
Yes its simple HTML5 , we have the sailsJS and ruby on rails for people who want that version. You always can use the plain HTML5 version. We will be adding angularJS support and a frontend version for pages (Its not going to be just 5 pages, Its really big trust me) and also updates are free for ever.
I want to use .less files instead of .css files in my rails app. What is the order of the less file should be imported/required?
Thanks!
You can have a look at our core/less/pages.less to see the import order.
For some reason, the Themeforest comment section really messed up the code I pasted. It turned my single quotes into double quotes. Here is a link to my correct code: http://pastebin.com/BJXgrLQm
This is in regard to this posting: http://themeforest.net/item/pages-responsive-admin-dashboard-template/9694847/comments?page=36&filter=all#comment_9826078
Any ideas why my code is not working?
Replied to your earlier post.