The public/private property for events - fullcalendar

A Google Calendar event (not the calendar itself) can be set as public or private in their web-interface. In the list of properties recognized by FullCalendar (https://fullcalendar.io/docs/event-parsing) I haven't found a property for private/public events.
Ultimately, I need to display public events from a private calendar using FullCalendar, and I can't seem to find a property to filter by. Does FullCalendar recognize it?
Thanks!

According to #ADyson, currently, there's no way to do that, but he kindly suggested an alternative way to achieve the ultimate goal. Thank you!

Related

Display the month in QCalendarWidget

I use a QCalendarWidget for my application. I would like to display the month and the year in the Calendar but by default, I have just the number of the week, and it's not useful.
Is it possible to display these parameters ?
just set setNavigationBarVisible (true);
The navigationBarVisible property is what you are looking for. Also you can look through this example to learn more about calendar widget.

Flexicious : single footer with dynamic levels

Using ultimate flexicious datagrid with enableDynamicLevels="true", I try to have an unique footer instead of one per level.
Is that possible ? And if yes, how ?
Thanks !
Which version are you on? If you get the latest version, there should be an event dynamicLevelCreated. The level property of the event dispatched is the newly created level. You can set enableFooters=false in there. dynamicLevelCreated="testODG1_dynamicLevelCreatedHandler(event)"
protected function testODG1_dynamicLevelCreatedHandler(event:FlexDataGridEvent):void
{
event.level.enableFooters=false;
}

how to get event type that is fired

I am working on Flex project these days and having java background. In my current task, same pop up is opened when two different types of custom events are being fired and I have to hide a button for one event type. So, how i can get event type.
Thanks in advance.
The Event class has a property called type wich is a string stating what kind of event it is.
function eventHandler(event:Event):void {
trace(event.type);
}
Generally speaking, you can get it this way:
mc.addEventListener(MouseEvent.CLICK, myMethod);
function myMethod(evt){
trace(evt.type);
}

getting selectedIndex for SkinnableDataContainer / List

Is there something like selectedIndex for SkinnableDataContainer? It doesn't seem to be one of the available properties.
Nick
Look at the following link to Adobe's site... this will describe how to add the functionality to the SkinnableDataContainer class by extending it.
SkinnableDataContainer Link
Z
I needed just this, a few days ago and found some components that should work. If you look at spark.components.List which is a subclass of spark.components.SkinnableDataContainer you will see the selectedIndex property aswell as the selectedIndices property (for selecting multipleItems). If you dont need all of the List functionality spark.components.supportClasses.ListBase can be used.

MvcConrib Grid's Sortable property don't seems to to do any effect

I need a way to generate the header texts in the grid as sortalbe link.
Do I need to use custom renderer to get this behavior?
You need to use GridSortOptions and call the .Sort(YourModel.GridSortOptions) method on the grid and then handle the OrderBy in your controller action.
See this link: http://www.jeremyskinner.co.uk/2010/03/14/mvccontrib-grid-part-6-sorting/
Thanks,
Hal

Resources