AppointmentContacts
Contacts
Here is the scheduler definition
| <telerik:RadScheduler ID="dataScheduler" CustomAttributeNames="Description" OnAppointmentCreated="Scheduler_AppointmentCreated" |
| DataSourceID="AppointmentsDataSource" runat="server" DataKeyField="AppointmentId" |
| DataSubjectField="Subject" DataStartField="StartDateTime" DataEndField="EndDateTime" |
| DataRecurrenceField="RecurrenceRule" DataRecurrenceParentKeyField="RecurrenceParentId" |
| OnAppointmentDataBound="dataScheduler_AppointmentDataBound" OnAppointmentDelete="dataScheduler_AppointmentDelete" |
| OnAppointmentInsert="dataScheduler_AppointmentInsert" OnAppointmentUpdate="dataScheduler_AppointmentUpdate" |
| OnDataBinding="dataScheduler_DataBinding" OnDataBound="dataScheduler_DataBound" |
| OnRecurrenceExceptionCreated="dataScheduler_RecurrenceExceptionCreated" StartEditingInAdvancedForm="true"> |
| <ResourceTypes> |
| <telerik:ResourceType KeyField="AppointmentId" Name="ContactId" TextField="ContactId" |
| ForeignKeyField="AppointmentId" DataSourceID="AppointmentContactsDataSource" |
| AllowMultipleValues="true" /> |
| </ResourceTypes> |
| <TimelineView UserSelectable="true" GroupBy="ContactId" GroupingDirection="Vertical" |
| NumberOfSlots="5" /> |
| </telerik:RadScheduler> |
Dim imagepath() As String = {"~/images/pysa"}
EmailTemplateText.ImageManager.UploadPaths = imagepath
EmailTemplateText.ImageManager.ViewPaths = imagePath
EmailTemplateText.ImageManager.DeletePaths = imagepath

rtsAddressBook.Enabled = False
causes the text on the current tab to disappear. Is this a known bug? Is there a way around this?
Thanks
Hello,
I have a telerik grid on my page that is populated using using textboxes in a template setup.
See code bleow:
<telerik:GridTemplateColumn HeaderText="Cash On Hand" UniqueName="cashonhand2">
<ItemTemplate>
<telerik:RadTextBox runat="server" ID ="txtTemplateCashOnHand" Text = ''></telerik:RadTextBox>
</ItemTemplate>
</telerik:GridTemplateColumn>
ISSUE:
From the code behind in the grid_ItemDataBound event handler, I want to access each textbox(there are 5 in a Row) and write data to the
txtTemplateCashOnHand control.
Any assistance will be highly appreciated.
Thank you.