Hi Guys
I've got a scheduler with data from the generic list example. I've added the context menu from the integration example and have the menu displaying with the right click.
The context menu adds new appointments but when I click edit or delete I get an error complaining about the input string being in the incorrect format.
I'm sure this is the problem line
I've got a scheduler with data from the generic list example. I've added the context menu from the integration example and have the menu displaying with the right click.
The context menu adds new appointments but when I click edit or delete I get an error complaining about the input string being in the incorrect format.
I'm sure this is the problem line
int
id = Convert.ToInt32(requestParams[2]);
Because it is trying to convert what looks like a GUID to an int. How can I change the code so that it will work? I assume I'll have to change this line:
doAjaxRequest(
"Appointment Edit " + selectedAppointment.get_id());
But I don't know what to change it too.
Thanks for your help
Jon