3890 comments found.
calendar directive question
I would like to manage the access privilege of the calendar. How can I disable the following events programmatically? onEventDragComplete onEventResizeComplete onTimeSlotDblClick
Assuming user-login features with roles already created – role information already stored in the rootScope, for certain roles I would like to disable events manipulation.
How can I control the directive for such a requirement?
Thanks!
Hi there
Sorry about the late reply. If you just open up assets/js/apps/calendar/calendar.js
and you will find override functions onEventDragComplete, etc, simply remove them
nothing will happen. They are overriding the current implementation. You can ignore them by removing the code. Hope I’m making sense.
Is it possible to work with Dashboard and Frontend components on the same project? I was playing around with the two projects combined and could not make the Dashboard index page to work along with Frontend Samples index pages. It is either one or the other.
Any help on that is very appreciated.
Thanks!
Hi there
Yes
I will help you do that. So You want to combine both ? What’s your plan. You want to add all of the Dashboard components to the Frontend or frontend to dashboard ? 
That’s good news!
I would like to add Dashboard components to the Frontend pages.
Hi guys – don’t want to bother, but would you have any update on this? Thx!
Hi there
Hope your havhing a great weekend 
Here is the progress
1) Meteor Integration – 90%
2 ) HTML new Pages, widgets, Bootgrid – 80%
3) Widget Market Place – 50%
4) SCSS – 80%
5) Calendar – 70%
6) Bug fixes – 80%
7) RTL – 85%
Hi,
Can help fix the sliders page on the demo? When using the ion.range sliders:
http://pages.revox.io/dashboard/latest/angular/#/app/ui/slidersIt is not possible to drag the sliders using the handle labels.
However, this should work with the ion.range sliders – on their demo page:
http://ionden.com/a/plugins/ion.rangeSlider/demo.htmlPlease help ! Great template but this is a key feature.
Thanks,
James
Hi there
Let me look into this and get back to you 
Thank you reporting this! 
Second @tomkay question
Hi there
Thank you for waiting. Working really hard to get it out and my apologies. As I mentioned early to tomkay
We should be good to go in a couple days.
When is 2.0.1 dropping?
Hi there
v2.1.0
Sorry about the delay. I’m rewriting the entire calendar app and fixing all bugs, and implementing global calendar for everyone to use with some neat enhancements and in Parallel converting LESS to SASS . Once these two big task is done its about 80% completed 
Can you add MiroHibler to the GitHub repo, please? Thanks!
Hi there
Sent you an invite 
Please, add telestoNL to your GitHub repo.
Thank you.
Hi there
Added you in 
Does the calendar support two or more schedules in parallel? If so is there an example/screen print on how that looks like or how it works? If this is still not supported -is there perhaps a timeline as to when this will available (so that I can decide if it makes sense to develop something myself or not)
Thanks
Hi there
Is it something like this your looking for ? http://prntscr.com/8mak88Yes that would do. I can’t get your current version of Calendar to show the events side by side like in your screen print… -how did you achieve that and with which version? Thanks
Hi there
We have already implemented this. Do you have access to pages github ? If you can wait for a day or two. There will be a stable version 
Sounds good. I have not accessed pages github previously -but if you can provide me the links to the stable version and instructions to access it – I will give it a try. Thanks
Hi there
Sorry about the late reply
A stable version is not ready yet. Will post you updated here
Did you say that the new version is being released today? Excited to see what you have coming.
Hi there
Still working on it. Sorry about the delay. I’m rewriting the entire calendar app and fixing all bugs, and implementing global calendar for everyone to use with some neat enhancements.
Hi,
I’m using the meteor setup, and I notice that the menu-pin doesn’t work correctly with the defaultLayout template. The problem is that when the dom is created, there are 2 BODY elements, and it seems that the menu-pin class gets added/removed from the top BODY element. Whereas the menu is in the second BODY.
Any ideas on what to do to get it working?
thanks,
Hi Yes
Sorry about that. We have implemented all demo page in meteorjs. Have alook at this version
https://github.com/revoxltd/pages/tree/e1e215e5a3c5ed4cd3c6e1c8f7b500b3615f239dfolder: demo/meteor
Thanks, unfortunately I noticed this uses flow router – which means I need to re-write a lot of code. I did find a workaround however by removing the BODY from the template and adding the classes in
Meteor.startup(function() { // Tags to add to the BODY on startup $(‘body’).attr(‘class’, ‘fixed-header menu-pin’); // needed for the Pages template });
If I stay with iron router can I still just update to latest versions of pages just by replacing the pages-core folder and the stylesheets folder?
Or is there any other code that relies on flow router?
thanks,
Hi there
Yes we moved to flow.
Removing the extra body will do.
Try the following implementation
https://github.com/revoxltd/pages/tree/8660d9c680ee421b239f51bee1654094f3f19207/demo/meteorHi, Please can you add niallel to the github repo? thanks,
Hi there
Sent you an invite 
Can you please add chakkit to the github repo? Thanks
Hi there
Added you in
We have sidebar and header blocks that are used across different states. These header blocks have their own controller and UI elements, that require additional CSS , JS files as well as other lazyloaded modules to be loaded. Where should these be defined? We noted that most of these dependencies are declared in the config.js file for individual state. So how do we do the same for shared blocks like the sidebar and headers?
Hi there
Will send you a reply in a bit
Sorry I missed it.
Hi,
You can use a service to inject additional CSS/JS into the body. Check this out: https://github.com/Yappli/angular-css-injector Also here’s a SO question regarding the same matter. http://stackoverflow.com/questions/17695156/angular-js-load-css-and-js-files-dynamicallyHello, we are trying to validate email addresses within the tag-input plugin used in the template. We can’t seem to be able to do so. Do you have suggestions on how we can do it? For instance, if we enter a non-valid email, like “julie@abc”, it will still accept. Second question is whether instead of enter, it can also accept spaces and commas as separators. Thanks in advance for your help.
Hi there
The tag is not something that we build
Its called HTML5 validation
by specifying required your telling the form its required by specifying the type your telling.
<input type="email" required>
You can try this for even numbers
<input type="number" size="6" name="age" min="18" max="99" value="21">
Demo here
https://jsfiddle.net/4ybjpmwu/All these are HTML 5 and triggered by the browser it self and has an ugly / default message box. What jquery.validate.js plugin does is it takes the advantage of this validator in HTML5 and displays a nice message box.
Here are some of the HTML5 Validation attributes you can use. http://www.the-art-of-web.com/html/html5-form-validation/If you want to go all JS then this is the way by specifying rules to your form via jquery validate JS 
Let me know if you find it difficult 
Hello, I meant how we can do validation in the tagsinput plugin used in the template. Are you using this in the template? http://timschlechter.github.io/bootstrap-tagsinput/examples/
Correct! 
Thanks. Just wanted to confirm that ngtagsinput is not a plugin by default? http://mbenford.github.io/ngTagsInput/
Currently no. We apply tagsinput jquery library using uiJq directive.
Hi, I’m having difficulty locating how to use the Weather widget on the dashboard. Is there JS file and CSS that I need to include ?
Hi there
It should be easy,
You do not need any css,
see if you have included the following JS
<script src="assets/plugins/skycons/skycons.js" type="text/javascript"></script>
and have you included
<script src="assets/js/dashboard.js" type="text/javascript"></script>
below it ?
var icons = new Skycons(),
list = [
"clear-day", "clear-night", "partly-cloudy-day",
"partly-cloudy-night", "cloudy", "rain", "sleet", "snow", "wind",
"fog"
],
i;
for (i = list.length; i--;) {
var weatherType = list[i],
elements = document.getElementsByClassName(weatherType);
for (var e = elements.length; e--;) {
icons.set(elements[e], weatherType);
}
}
icons.play();
ahh yup I saw the skycons but couldn’t work out how the weather information was being retrieved. I’m assuming that I would need to get the weather information from a source and then map it to the applicable skycons, would that be correct ?
Hi there
Yes!
weather information is all dummy stuff. Just for demo purposes. You can find a weather api. Like yahoo weather 
Hi ACE,
I am using Pages in MeteorJS for my project.
But when I deploy my project, there is always some problem in my APP. I think maybe something wrong with my config of Packages for the pages UI . Please help me. I hope there is a full version Pages of MeteorJS, and full Support. Thx.
Hi there
We have full meteorjs support now, do you have access to github ? pages github
Cool~ my GitHub ID is: regnarts
Sent you an invite. Refer the following version 
Thank you so much. Hope I could get this earlier, it seems like I should use this tmpl for my project and write it again…..
Hi there
tmpl ? you mean template files ?
yes! Its a basic meteorjs pratice, We have implemented with good code practices. The folder location is demo/meteor/
Can you invite johnysusanto to the github repository?
Sent you an invite 
Hi so how do I download the new update from github? Thanks
Yes correct
its intended for developers. You have to build it using grunt. There is simple command here mention
and that’s it 
Could you please show an example of how the calendar events can be populated via a Web Service using JQuery? The demo only has hardcoded events as examples (see below).
$(‘body’).pagescalendar({ //Loading Dummy EVENTS for demo Purposes, you can feed the events attribute from //Web Service
events: [{
title: 'Call Dave',
class: 'bg-success-lighter',
start: '2014-10-07T06:00:00',
end: '2014-10-07T08:00:24',
other: {}
}],...
Thanks
Hi there
Sure!
We are updating pages, Will add to the list
Is v1.2.0 ahead of master?
Hi there
No
Master is the latest version.
Hi guys, great theme. Unfortunately the footer at the login page doesn’t stick below the login form if you res-size the window. Would be very nice to fix it.
Furthermore on mobile the sidebar level opens and then closing immediately.
Also could you please add me to the github repo? My name is: mbecker
Hi there
Added you in!
Sure will get that fixed for v2.1.0 coming this Tuesday. (May differ according to timezones )
The menu problem is on Angular JS ?