3890 comments found.
Could you add me to the github repo? Username: Wualia
thank you !
Invitation sent 
Can you add me to the github repo? Username: VuerHQ
Hi there
Sent you an invite 
Hi Ace,
Seem to be having issues with modals showing behind the overlay on an iPhone. Everything looks find on desktop but when testing on iPhone you can’t access any of the form inputs within modal as they are completely covered.
Hi there
Its completely covered by a black overlay ? make sure you have your Modal HTML tags above the “ ” div. Like in the modals.html file that we have shown
It does work when placed above .page-container but is there any way i can get it to work below that? Ideally just above .content or just before the .footer I only ask as we have the header and footer included by PHP and the modals are on their own pages so placing the modals that far up would mean i would have to include content that is static across the whole site within every single page.
Hi there
Sorry about the late reply, we can try planing with the Zindex of the Bootstrap modal, Will try it on the content and let you in abit 
Hey Ace,
Pages is fantastic. Very thorough and beautiful in so many ways. I want to make you aware of a contrast issue. I am running very high quality Dell monitors (though they are not calibrated with a calibration tool like ColorVision Spyder), and I find the menu text/background contrast too low.
Check out the screenshots
Oh, and by the way. Can you add me to the github repo? Username: nitech
Hi there
Thank you very much! 
Ok seems like its not properly visible, will try to get this corrected in v1.1 and thanks again. Also I sent you an invite to github
Thank you ace. As always, you are quick to respond and always positive 
how do i get the search engine working, is it controled by JSON? cause when u type in something and press enter, it just fills in the name from the search engine below… im confused, and also its missing a search for mobile devices
i know u working on angular but i like the current version because the angular one dont work well with classic asp, so if u do switch up i hope u provide jus an html version
anyways… help????!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Hi there
We not going to switch completely to Angular
there will be both Jquery with HTML and another same thing with Angular so it helps both worlds 
To make the search work if you open up the folder getting_started/assets/js/
you will find a file called scripts.js in that we have added
the search functions
$('[data-pages="search"]').search()
In that you will find a onKeyEnter call back function where we have just created a dummy to take in the input value and show it on the screen, instead you can use an AJAX to get the search result 
ok do u have any examples i can use since im new at some of this, ive been reading books on how to program with classic asp and figuring it out piece by piece.. http://www.thehighbrary.org/ i need to figure out how to displace my search results on enter .. so do u have an example script that i can go by?
Hi,
Please follow the example below to get it implemented: It searches on “Enter” key press event. For live search (as you type) you may use a similar code.
$('[data-pages="search"]').search({
searchField: '#overlay-search',
closeButton: '.overlay-close',
suggestions: '#overlay-suggestions',
brand: '.brand',
onSearchSubmit: function(searchString) {
// search results container
var searchResults = $('.search-results');
// call backend api with input value
// to get search results
$.post("api.asp", {
search: searchString
}, function(result) {
// loop through each search result returned
// and append to search container
for (var i in result.rows) {
searchResults.append('<p>' + result.rows[row] + '</p>');
}
});
},
onKeyEnter: function(searchString) {
// live search.
}
})
The result JSON returned above should be similar to:
{
"rows": ["Search result 1", "Search result 2", "Search result 3"]
}
thanks im going to try it right now 
will be be any updates or added features to TAB interface? right now when the screen gets squeezed or goes to mobile or tablet, the tabs just overlap. It would be cool and more functional if it became a swipe button like iphone type slide menus, acordion or the like. good example is DEVELOPR ADMIN theme (available here in themeforest) tab to swipe button feature for it’s tabs
Hi there
Yes tabs do get a bit messy on mobile and we had a look at different methods where it turns into a accordion on mobile
will look at the Developr theme too, Thank you again for your valuable inputs
you bet . . . developr is a particularly good solution because the buttons look like ios type mobile buttons
When you get a chance – could you give me access to the repo as well – username : dbggr
Hi there
Sent you an invite 
Hi there, is there any way to change the first day of the week (in calendar) to monday instead of sunday? Could you give me a direction in to where I need to edit the code? I can’t find it 
Hi there
Currently there is no public method implemented for Pages calendar to change the start of the week, but its added as an update for v1.1 
Would you mind adding me to the repo as well? The username is: fabiomoggi
Thanks!
Hi there
Sent you an invite 
Hello there Ace! I am trying to get the value of a select menu with jQuery. When I add class=”cs-select cs-skin-slide” data-init-plugin=”cs-select” to my selects, the jQuery change event is not fired. However, if I remove the class and plugin from my select, then the jQuery change event works. What is the correct way to get access to the value of cs-select?
Thanks!
Hi there
Will get back you you in abit 
Hi there
You can try something like this, let you Select box have an ID myCustomSelect
<select id="myCustomSelect" class="cs-select cs-skin-slide" data-init-plugin="cs-select"> <option value="sightseeing">Web-safe</option> <option value="business">Helvetica</option> <option value="honeymoon">SegeoUI</option> </select>
and you can retrieve the value in jquery by the following
$( "#myCustomSelect option:selected" ).text();
Hi Ace,
Thanks for the reply. I tried your approach but it still did not work. Any other suggestions?
Also, I have another issue with this plugin. When I use it in a modal, the dropdown list seems to be appearing behind the modal window. I am using the CSS file, not LESS in my page. What CSS setting should I apply to make the cs-select plugin work in the modal. I am assuming it is a z-index issue.
Thanks for the help as always!
Currently the cs-select plugin doesn’t fire the ‘change’ event. We’ll be fixing this in our next update. Here’s something you can do to get it working:
1) Replace your plugin initialization lines Pages.prototype.initSelectFxPlugin = function() {...} (Line #225 in pages/js/pages.js) with the following:
Pages.prototype.initSelectFxPlugin = function() {
window.SelectFx && $('select[data-init-plugin="cs-select"]').each(function() {
var el = $(this).get(0);
$(el).wrap('<div class="cs-wrapper" />');
new SelectFx(el, {
onChange: function() {
var event = document.createEvent('HTMLEvents');
event.initEvent('change', true, false);
el.dispatchEvent(event);
}
});
});
}
(This will trigger the ‘change’ event whenever a value is changed in cs-select)
2) Bind your function to your cs-select’s ‘change’ event:
$('#myselect').on('change', function (e) {
console.log($(this).val());
});
The reason why your ‘change’ function didn’t get called was that we hide the native <select> in the plugin initialization. Let us know if this worked. 
This worked!
Thank you ver much for this!
Also, I have another issue with this plugin. When I use it in a modal, the dropdown list seems to be appearing behind the modal window. I am using the CSS file, not LESS in my page. What CSS setting should I apply to make the cs-select plugin work in the modal? I am assuming it is a z-index issue. Is this correct?
Great! 
Thanks for pointing out the issue. The default init of cs-select sets the container as ‘body’. In this case it should be the modal element.
I have created a patch to fix that. https://gist.github.com/praveenaj/22b8494084542bb90585Please apply the above patch to your pages.js. Also remove the auto-init line data-init-plugin="cs-select" from your cs-select placed inside the modal, and do a manual init.
var el = $('#mySelect').get(0);
$(el).wrap('<div class="cs-wrapper" />');
new SelectFx(el, {
container : '#myModalID'
});
PS: If you’re not familiar with patching, please refer to http://jungels.net/articles/diff-patch-ten-minutes.html
along with the upcoming image gallery component in v1.1, will there also be editing tools like “cropping”, rotating and such? I know there are already ones out there, which we ourselves use on other projects. However, interested in what you all are working on as you would know which one works best with PAGES and it would be most seamless if integrated by you all : )
Hi there
In the current v1.1 we did not have editing tools added to the list if we really have spare time before the February 3rd will try to get it in v1.1
but if not v1.2 Thank you for suggesting
cool . . . counting down the days : )
after the release of v1.1 on Feb 2 . . . will we be able to just download a new copy from themeforest and replace what we originally download and posted to our site, or will we have to run admin admin / conversion procedures separately?
Correction its Feb 3rd I think I might have mentioned 2nd but on Github we have officially mention 3rd
My bad, yes as long as you have not done any changes to pages folder JS and LESS files you can easily update it by replacing the pages folder. If not you can use github file Diff tool but that requires some manual changes.
cool thanks!
Hi,
is it possible to have a look at your update list for v1.1? This would help me decide already 
Thanks
Hey there. That is an amazing work, well done. Would you mind adding us to the Github repository? Our Github ID is “threemonkeys”. Thanks 
Thanks
Added. BTW, cool github username!
Thanks 
Amazing theme! I’m still finding my way thought all the plugins and JS files, but so far so good.
Can’t wait to see the improvements in the new version, can you add me to the github repo? id: diogochaves
Thanks a lot.
Thank you for your compliments. I have added you to Github. 
Can you add me to the github repo? Username: jamesdullaghan
Sent you an invite 
Hello ace,
Can you add me to the GitHub repo too? Username: brunogaspar
—
Found a very small issue, probably a z-index one, when you click to search, the logo still appears on top of the search box, while everything else appear behind it, probably something you’re aware, but just my 2 cents for now 
Regards and congrats on yet another awesome theme!
We’ll add you to our repo and let you know.
Here’s the expected design of the search page. The logo is supposed to appear on top
Did you get the same or something else? http://sc-cdn.scaleengine.net/i/e861e32d9ec9deb2cacb32c3212e29b7.png
Thank you for your compliments 
Yes i have that exact look, but i was actually expecting the inverse, the logo to appear behind the search box, as it kinda makes more sense and stays consistent with the rest, but, any particular reason on to why it’s on top instead?
<!-- BEGIN Overlay Logo !-->
<img class="overlay-brand" src="assets/img/logo.png" alt="logo" data-src="assets/img/logo.png" data-src-retina="assets/img/logo_2x.png" width="78" height="22" />
<!-- END Overlay Logo !-->
The logo is there for branding purposes. Also it provides a context for the search that user is going to perform. You can adapt it the way you want 
Yeap true, i just find it a bit weird, but, as a developer i know we can’t please everyone 
Invitation sent!
Do you have any plans to accommodate something like a megamenu? Example control – http://geedmo.github.io/yamm3/
We have an enterprise app and the top menu needs the ability to hold dozens to hundreds of links – the sidebar doesn’t seem to work well in that environment.
Thanks.
Hi there
Yes we do have a plan, Thank you for suggesting this I will get this on to an update 
.
FU – if we wanted some custom pages built (and didn’t care if you added them back into the theme) – would you entertain an engagement?
Hi there
I’m sorry but your message was not clear for me, you mean for us to build a custom page or plugin ? 
Primarily interested in knowing if you will do custom development work on a few new page designs. I’m trying to get interest in using this internally – and I know that will be a question from the CTO.
Hi,
are there any plans for a few frontpage pages, like a gallery, project detail, etc?
What I miss in your wonderful template is an image gallery with some action buttons/icons per image (eg delete image, pin image, some tagline below/above).
Or would this be possible already with the given elements?
Thanks
S
Hi there
An image gallery is already added to our update list v1.1
and will be released on the 3rd of February. Also if you have an suggestions about the gallery please do let me know
Hi, sounds great. My suggestion would be like stated above: Mostly, when having images in a backend, we like to have some basic toolbar for each image (by rolling over the image or outside the image). This could contain a line of text and editing icons. Maybe some sorting options as well? Looking forward to the update!
Great! 
Cool. Please add me also to the github repo “mediatainment” Thank you!
And it’s really awesome!
sent you an invite 
sorry didn’t find it. Can you retry? “mediatainment”
Hi there
I think you also post an issue at github, is the account correct ?
please confirm
yeah, found the invitation, thx!