Hi,
I am currently replacing my radScheduler edit form using Replacing The Edit Form and Client Side Objects
My radScheduler is grouped by "Studios" (Rehearsal Studios). And "Studios" are "Blue", "Red", "Yellow", ...
And my current code is
I would like to obtain the text of the clicked column ("Blue", "Red", "Yellow", ....) and not "Studios" in groupby
The incorrect code I've used is
Have you got an idea ?
Thank you,
Adrien
I am currently replacing my radScheduler edit form using Replacing The Edit Form and Client Side Objects
My radScheduler is grouped by "Studios" (Rehearsal Studios). And "Studios" are "Blue", "Red", "Yellow", ...
And my current code is
| function AppointmentInserting(sender, eventArgs) { |
| var start = formatDate(eventArgs.get_startTime()); |
| // New appointment |
| window.radopen("AdvancedForm.aspx?Mode=Insert&Start=" + start+"&Studio="+ groupby , "AdvancedForm"); |
| eventArgs.set_cancel(true); |
| } |
I would like to obtain the text of the clicked column ("Blue", "Red", "Yellow", ....) and not "Studios" in groupby
The incorrect code I've used is
| var groupby = sender.get_groupBy() |
Have you got an idea ?
Thank you,
Adrien