Re: ical UI

2012-02-06 Thread Scott Anguish
Yeah, as someone else said, the format of the data is moot. If you have the data in any format XML included, you can parse it into individual objects, and then manage it as you wish Trust me, tableview isn’t the proper class for this if you have to use something in AppKit NSCollectionView, but

Re: ical UI

2012-02-06 Thread Santhosh_Gundu
Is there any alternate approach using cocoa bindings? Thanks, Santhosh Kumar On Feb 7, 2012, at 11:33 AM, Alex Zavatone wrote: Why would that matter? On Feb 6, 2012, at 11:36 PM, Santhosh_Gundu wrote: Hi, But due to my project constraints , I need to use Tableview to achieve this. The da

Re: ical UI

2012-02-06 Thread Alex Zavatone
Why would that matter? On Feb 6, 2012, at 11:36 PM, Santhosh_Gundu wrote: > > Hi, > > But due to my project constraints , I need to use Tableview to achieve this. > > The data (ie dates and events ) is coming in the form of xml. I need to > populate the data. > > > Thanks, > Santhosh Kuma

Re: ical UI

2012-02-06 Thread Santhosh_Gundu
Hi, But due to my project constraints , I need to use Tableview to achieve this. The data (ie dates and events ) is coming in the form of xml. I need to populate the data. Thanks, Santhosh Kumar On Feb 7, 2012, at 12:36 AM, Scott Anguish wrote: > Using NSTableView for this is likely ent

Re: ical UI

2012-02-06 Thread Appa Rao Mulpuri
Two ways: 1. NSMatrix with the Day custom cells 2. Custom NSTableView by overriding drawRect method. - Apparao On 07/02/12 12:36 AM, "Scott Anguish" wrote: >Using NSTableView for this is likely entirely inappropriate. :-) > >You¹re probably best to either rewrite it entirely as a custom view

Re: ical UI

2012-02-06 Thread Santhosh_Gundu
Hi, Sorry for the typo. It is ical Month View. Thanks, Santhosh On Feb 7, 2012, at 1:32 AM, Alex Zavatone wrote: Moth? On Feb 6, 2012, at 6:01 AM, Santhosh_Gundu wrote: Hi, I am developing an application which is similar to the UI of iCal MonthView. For this I am using NSTableView with 6

Re: ical UI

2012-02-06 Thread Scott Anguish
Using NSTableView for this is likely entirely inappropriate. :-) You’re probably best to either rewrite it entirely as a custom view MonthView (and fill it with DayView’s) both of which you’ll need to write. On Feb 6, 2012, at 7:01 AM, Santhosh_Gundu wrote: > Hi, > > I am developing an appli

ical UI

2012-02-06 Thread Santhosh_Gundu
Hi, I am developing an application which is similar to the UI of iCal MothView. For this I am using NSTableView with 6 rows and 7 columns. I have an issue with taking custom cell and handling user interactions while populating date with event. Can any one sugguest on whether the above approa