flex-users / flexlib

Open Source Flex components library.
github.com/flex-users/flexlib
MIT License
204 stars 91 forks source link

[SchedulingFramework] add entry property #363

Closed alamata closed 12 years ago

alamata commented 12 years ago

hey,...

i would like add some description information when clicking to scheduleViewer entry the click function is ok but i can't get the description information

how add property to an entry

to have in example:

scheduleViewer.selectedItem.descriptioninformation

at this time i have scheduleViewer.selectedItem.startDate or scheduleViewer.selectedItem.endDate ...

i have try severall mehtod by modyfing "IScheduleEntry,SimpleScheduleEntry,ColoredScheduleEntry" but with no succes,... :((

can you provide me some help please?....

thansk for your comprehension

alamata commented 12 years ago

hey ,... now everything is ok,...

i have an custom render

with

private function onClick():void { this.dispatchEvent(new Event(MouseEvent.CLICK, true)); }

        private function clickTest(event:MouseEvent):void { 
            trace(this.entry.startDate); 
            trace(this.entry.endDate);
            trace(this.entry.description);
            trace("Click!!"); }

and i have modify the IScheduleEntry and the SimpleScheduleEntry

slangeberg commented 12 years ago

Sorry man, I haven't looked at that framework in years. It's been abandoned, as far as I know.

On Tue, Oct 25, 2011 at 6:26 PM, alamata < reply@reply.github.com>wrote:

hey,...

i would like add some description information when clicking to scheduleViewer entry the click function is ok but i can't get the description information

how add property to an entry

to have in example:

scheduleViewer.selectedItem.descriptioninformation

at this time i have scheduleViewer.selectedItem.startDate or scheduleViewer.selectedItem.endDate ...

i have try severall mehtod by modyfing "IScheduleEntry,SimpleScheduleEntry,ColoredScheduleEntry" but with no succes,... :((

can you provide me some help please?....

thansk for your comprehension

Reply to this email directly or view it on GitHub: https://github.com/flex-users/flexlib/issues/363

alamata commented 12 years ago

hey slangeberg, ;)

thx for the information,...

i have worked around this framework and i approach the goal of the project... ;)

Waht are the modern alternative to this "old" framework,...??

slangeberg commented 12 years ago

I'd just write it from scratch, now. I've already implemented custom calendar for my company, just by copying and adapting CalendarLayout from adobe flex.