Hi,
Assume we are creating a new appointment by double click. I want to be able to add a value that currently exists on the query string and is available - client side. The overall goal is to be able to process the new appointment with the query string value in the web service Insert event.
I tried this client side by setting OnClientFormCreated as a client handler.
function OnClientFormCreated(sender, args) {
var app = args.get_appointment();
app.set_toolTip(getParameterByName("EventID"));
alert(app.get_tooltip());
}
However this does not work - perhaps because the appointment does not yet exist? Any thoughts on how to achieve this with a newly created appointment? Thanks.
Assume we are creating a new appointment by double click. I want to be able to add a value that currently exists on the query string and is available - client side. The overall goal is to be able to process the new appointment with the query string value in the web service Insert event.
I tried this client side by setting OnClientFormCreated as a client handler.
function OnClientFormCreated(sender, args) {
var app = args.get_appointment();
app.set_toolTip(getParameterByName("EventID"));
alert(app.get_tooltip());
}
However this does not work - perhaps because the appointment does not yet exist? Any thoughts on how to achieve this with a newly created appointment? Thanks.