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);
}

Hi,
I have integrated GridView in my application. This grid ist bound to a bindingsource. When my query for the binding source has no datas, then I missing the "new row" line for adding datas. Please see the attached files.
If IsNumeric(RadGridView1.CurrentRow.Cells("ComboNr").Value) Then
Dim iGruppeNr As Integer = grdParameter.CurrentRow.Cells("ComboNr").Value
bsDetekParaCombo.DataSource = (From Combo As tblDetekParaCombo In dbContext.tblDetekParaCombo
Order By Combo.ComboGruppeNr
Where Combo.ComboGruppeNr = iGruppeNr Select Combo).ToList
Else
'Here I will get a count of 0 rows and I missing the new line for adding rows
bsDetekParaCombo.DataSource = (From Combo As tblDetekParaCombo In dbContext.tblDetekParaCombo
Order By Combo.ComboGruppeNr
Where Combo.ComboGruppeNr = -1 Select Combo).ToList
grdCombo.MasterTemplate.Refresh()
End If
What I am doing wrong?
Karim

Hello:
I want to initialize default values on editor loading:
<p>void radDataEntry1_BindingCreated(object sender, BindingCreatedEventArgs e)</p><p>{</p><p>if (e.DataMember == "IsAdministrator")</p><p> { </p><p> e.Binding.NullValue = false;</p><p> }</p><p>}</p>
Thank you.

Rad Scheduler -
How to possible three cell collapse and display single cell in timeline control (like col span functionality)
and create appointment display run time
