Displaying 2 results from an estimated 2 matches for "callendar".
Did you mean:
calendar
2006 Sep 18
2
Schedule+ calendar success story
...e /opt/schedule/SCHDPL32.EXE /U "paul"
Otherways it will ask for the username, but you cannot see that window
(it's behind the startscreen). If you want to see it, use "alt F7" and
move your mouse.
Then the application asks for a file. In my case my customer needed a
shared callendar. All users are using the same username and are pointing
to the same shared calendar. I made this for the first user, than I
moved it to a place where all users have write access.
The font of the month days at the right are not well scaled. Make the
font as big as possible by changing the hight, wh...
2006 Feb 16
1
Where to put the code? Helper or Model?
I have a class that generates an HTML calendar. It''s pretty simple,
with three methods of any significance: initialize(start,end),
add_event(event) and display_html
Basically, the way it works is this:
@events = Events.find #events in Feb 06
@cal = Calendar.new(''02/06'')
@events.each {|event| cal.add_event(event)}
Then in my view:
<%= @cal.display_html %>