I looked through the thread you you pointed to and this doesn't answer my question (or perhaps I didn't see the answer).
I would like to fire the TimeRangeMenuClick event from JavaScript -- something like:
dpc1.eventMenuClickPostBack(e, command);
Obviously *this* code won't work because "e" is not the right "kind" of event. So perhaps the following is in order:
dpc1.eventSelectionMenuClickPostBack(e, command);
I need to fire this event (rather than the TimeRangeSelected event because I need the value of command.
Thanks!