Hi,
Just another question.
I have inherited the DeleteRecurringAppointmentDialog. All works very fine, my "new" dialog is working. But now i have to add a third radiobutton to my custom dialog.
Is it possible to get the information, which radiobutton was selected by the user (especially my new one) BEFORE the appointment is deleted? I have no idea...
Thank you for helping.
Sascha
Hi there,
With the SchedulerUIHelper.BringAppointmentIntoView you can bring a specific appointment into view.
I have a schedule in a timelineview. Is there a way to scroll to a resource(id) (bring a resource(id) into view)
Hope you can help.
Victor
gvDocuments.MasterTemplate.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
gvDocuments.Columns["Checked"].AutoSizeMode = BestFitColumnMode.None;
gvDocuments.Columns["Checked"].MaxWidth = 30;
gvDocuments.Columns["Checked"].MinWidth = 30;
gvDocuments.Columns["Checked"].Width = 30;
gvDocuments.Columns["Filename"].Width = 300;
gvDocuments.Columns["Description"].Width = 300;
gvDocuments.Columns["DocumentTypeDescription"].Width = 135;
gvDocuments.Columns["DocumentDate"].Width = 135;
If you look in the attached screenshot, there is a space between the "Checked" column and the "Description" column. I'm not sure what I'm doing wrong.
How would I sync the child template ItemSelected with every child RadPageViewStripElement?
In other words, if I have a grid with 22 rows and each row is expandable, when the user changes a tab of a nested child template, how would I also change the other child templates (that are expanded) to that same tab?
Hi,
the format of the FilterDescriptors.Expression is for SQL, ie.
"[Filename] LIKE '%3170%'"
But I need to use it in dynamic Linq , so it would be correct:
"Filename.Contains(\"3170\")"
Is there an Option or Tool to get an Linq Expression instead of SQL Expression?
Peter
Using the "Email" example(s) I have successfully added a custom field into a new Custom Appointment form. I also needed to have some custom code run when the user hits OK and exits out of the form. That works as well.
However when I edit an Appointment and try to change the Summary or Location, that information is not getting propagated back to the Scheduler. I haven't changed any of the textbox names (don't think that's even possible), but the data doesn't seem to be getting back to the scheduler.
Any ideas?
Here are my LoadSettingsFromEvent/ApplySettingsToEvent methods:
protected override void LoadSettingsFromEvent(IEvent sourceEvent)
{
base.LoadSettingsFromEvent(sourceEvent);
var appointmentWithChiroDetails = sourceEvent as AppointmentWithChiroDetails;
if (appointmentWithChiroDetails != null)
{
if (Globals.currentCustomer != 0)
{
this.txtpat_id.Text = Globals.currentCustomer.ToString();
}
}
}
protected override void ApplySettingsToEvent(IEvent targetEvent)
{
var appointmentWithChiroDetails = targetEvent as AppointmentWithChiroDetails;
if (appointmentWithChiroDetails != null)
{
appointmentWithChiroDetails.CustomerPK = Convert.ToInt32(this.txtpat_id.Text);
}
base.ApplySettingsToEvent(targetEvent);
}