Hi
I want to load RadScheduler AppointmentEditDialog from custom menu click event.
I try to raise the RadScheduler1_AppointmentEditDialogShowing event in custom
menu click event by the following code;
Private Sub menuItem1_Click(ByVal sender As System.Object,
ByVal e As EventArgs)
Dim ep As New
Telerik.WinControls.UI.Scheduler.Dialogs.EditAppointmentDialog
Dim ev As
Telerik.WinControls.UI.IEvent
Dim evt As New
Telerik.WinControls.UI.AppointmentEditDialogShowingEventArgs(ev, ep)
RadScheduler1_AppointmentEditDialogShowing(Nothing,
evt)
End Sub
But the EditAppointmentDialog not loading. Please help me to do this
In a GridView with 30 plus columns, I am adding few unbound (calculated) columns with expressions. The Expressions refer the other columns in the grid.
The problem is, after initial data load the calculated columns at are at the right end of the grid which are not in the visible area are not being calculated. The gridview is not calculating the calculated columns that are not in the grid visible area. These columns show up data as soon as I scroll back and forth brining these columns into visible area.
How can make sure the calculated columns are always show data, regardless of their visible position in the grid area.