Hi, after a long while searching for a solution for a custom appointment screen i have tryed first withMe.wsInfo.AppointmentFormPath = "Reservation_add.aspx"but here i have no eventid.
then i found the following code
<igsch:WebScheduleInfo ID="wsInfo" runat="server" EnableRecurringActivities="True" EnableSmartCallbacks="false"
EnableAppStyling="True" EnableMultiResourceView="True" OnActivityAdding
="WebScheduleInfo1_ActivityAdding"
="wsInfo_VarianceAdding">
>
<
script type="text/javascript">
function ActivityDialogOpening(oScheduleInfo, oEvent, oDialog, oActivity)
{
oEvent.cancel =
true; //Cancel default form
var StartTime = oActivity.getStartDateTime(); //Get Activity start time to pass to custom form
var key = oActivity.getDataKey();
window.showModalDialog(
"Reservierung_add.aspx?StartTime=" + StartTime + "&EventID=" + key);
window.location.reload();
}
</
script>
but the .getdatakey is always null
when i try to get it in my custom screen it is nothing
Request.QueryString(
"EventID")how can i pass the current activity id or object to my custom screen?and when i have it in my screen how can i read i out (server side , code behind)iam currently use v10 vol2 framework 4.0
Hello Martin,
I believe this is the information you are looking for.
http://forums.infragistics.com/forums/p/49034/307488.aspx#
Please let me know if you have any further question related to this matter.
Sincerely,Mike P.Developer Support EngineerInfragistics, Inc.www.infragistics.com
I am following up to see if the information provided has resolved this matter.
Please let me know if I may be of further assistance with this matter.