This is a migrated thread and some comments may be shown as answers.

iOS Calendar Event Indicator

4 Answers 63 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Suman
Top achievements
Rank 1
Suman asked on 01 Dec 2014, 12:08 PM
How to change event indicator style of iOS Telerik Calendar. Currently a dot is coming as an indicator.

4 Answers, 1 is accepted

Sort by
0
Pavel Pavlov
Telerik team
answered on 01 Dec 2014, 12:41 PM
Hi Suman Ghosh,

You may find the properties affecting  the way events are displayed - here.
Please let me know what is the final look you are trying to achieve and I will be glad to gather a small sample for you.

Regards,
Pavel Pavlov
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
Suman
Top achievements
Rank 1
answered on 03 Dec 2014, 07:59 AM
Hi Pavel Pavlov ,

Thanks for your reply. I want a underline indicator on Telerik iOS Calendar to indicate events. Also, can I able to change the month title to uppercase letter.

Thanks & Regards,
Suman Ghosh.
0
Accepted
Pavel Pavlov
Telerik team
answered on 03 Dec 2014, 02:26 PM
Hi Suman,

If you paste the following method into your TKCalendarDelegate , it should replace the default shape with a small underline :

- (void)calendar:(TKCalendar*)calendar updateVisualsForCell:(TKCalendarCell*)cell;
{
    if ([cell isKindOfClass:[TKCalendarDayCell class]]) {
        TKCalendarDayCell *dayCell = (TKCalendarDayCell*)cell;
        dayCell.style.eventShape = [[TKPredefinedShape alloc] initWithType:TKShapeTypeSquare andSize:CGSizeMake(10, 1)];
    }
}


Regards,
Pavel Pavlov
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
Suman
Top achievements
Rank 1
answered on 04 Dec 2014, 05:41 AM
Thanks Pavel. It's working fine. :)

Regards,
Suman ghosh
Tags
Calendar
Asked by
Suman
Top achievements
Rank 1
Answers by
Pavel Pavlov
Telerik team
Suman
Top achievements
Rank 1
Share this question
or