Trying to use the webdayview to diplay information in a detailsview on click activity client side event. Anyone know anything about how to make this function? What I'd like to do is stop the appointment page from popping up and instead display the information next to the webdayview in a deatils view on a single click event. Now I have the single click event working to bring up the popup on a single click but as I noted I don't really want that to happen.
Alright answered my own question sort of. Now I'm just trying to use the postback function with my click event but it doesnt seem to want to work. Perhaps I've typed the code wrong. I know I'm missing something thats probably obvious though. Here is the code I am using.
<script id="igClientScript" type="text/javascript">
<!--
//Add code to handle your event here.
oDayView._onHandleEvent(element, {type:'dblclick', myEvt:true});
}
oEvent.cancel = true;
// -->
</script>
Yeah I attempted that code as well. I finally gave up trying to figure out how to get the client event to work the way I wanted it to and went ahead and started using a custom dialog box. Thanks for the information though I'll keep it in mind the next time I try to do something like this.