Forum Moderators: phranque

Message Too Old, No Replies

Event Calendar

custom .Net control

         

ebby

7:58 pm on Sep 9, 2008 (gmt 0)

10+ Year Member



Hey all,

I'm looking to integrate a better calendar control than the built in .net calendar.

The main piece of functionality I'm looking to accomplish is let the end user click on a date and insert an event.

Any ideas on where to begin with the control?

I don't need help on the database aspect, just on how I'm going to accomplish an onClick event for each cell (date on calendar).

Thanks in advance!

phranque

7:34 am on Sep 10, 2008 (gmt 0)

WebmasterWorld Administrator 10+ Year Member Top Contributors Of The Month



are you looking for something that will pop up a form to enter calendar event information or are you asking about how javascript events work?

ebby

2:15 pm on Sep 10, 2008 (gmt 0)

10+ Year Member



The form aspect. What I'm confused on is creating the data table and dynamically getting the selected date for the form. I would like to send the info to a stored procedure.

[edited by: phranque at 8:31 am (utc) on Sep. 21, 2008]

phranque

8:31 am on Sep 21, 2008 (gmt 0)

WebmasterWorld Administrator 10+ Year Member Top Contributors Of The Month



the "form aspect" is a browser issue and is typically accomplished using javascript and the DOM.
you use an event (such as onclick) on a link or button to pop up the calendar window.
a date selection event on the calendar window triggers some javascript that populates the appropriate form input value(s) in the parent window.

the data table and stored procedures are server side issues.