01.<telerik:RadScheduler ID="RadScheduler1" runat="server" Skin="BlackMetroTouch" DataEndField="EndTime"02. DataKeyField="id" DataSourceID="SqlDataSource1" DataStartField="StartTime" Height="517px"03. RowHeight="32px" StartEditingInAdvancedForm="False" DataSubjectField="event"04. DataDescriptionField="Description" DataRecurrenceField="RecData" DataRecurrenceParentKeyField="RecParent"05. DayStartTime="07:00:00" TimeZoneID="Eastern Standard Time" TimeZoneOffset="-04:00:00"06. ResolvedRenderMode="Classic">07. <InlineInsertTemplate>08. <div id="InlineInsertTemplate" class="rsCustomAppointmentContainer ">09. <telerik:RadDropDownList RenderMode="Auto" runat="server" ID="RadDropDownList2" DataSourceID="SqlDataSource2"10. Width="300px" DefaultMessage="Select Job:" DropDownHeight="200px" DataValueField="JobNumber"11. DataTextField="JobDes" AutoPostBack="True" OnItemSelected="JobNumSelected">12. </telerik:RadDropDownList>13. <telerik:RadDropDownList ID="RadDropDownList1" RenderMode="Auto" runat="server" AutoPostBack="true" DefaultMessage="Select a Phase..."14. DropDownHeight="200px" Width="150px" DataSourceID="SqlDataSource3" DataTextField="PhaseString" DataValueField="PhaseCode" EnableAriaSupport="False">15. </telerik:RadDropDownList>16. </div>17. </InlineInsertTemplate>18. <AdvancedForm Modal="true" />19.</telerik:RadScheduler>Hi,
I cannot get any kind of information out of spreadsheet. sheet count is zero, I could not figured out how to access cells...
I load demo xlsx files but I cannot access any information. also there's not much in help section.
Does this control serves just lo load and show xls files ? what I'm missing ?
I am trying to get the value of a Radeditor field in a User Control when updating to store it in my database table
In the update command of my grid I have tried using both of these commands
Dim editedItem As GridEditableItem = TryCast(e.Item, GridEditableItem)
Dim MyUserControl As UserControl = CType(e.Item.FindControl(GridEditFormItem.EditFormUserControlID), UserControl)
Dim editorcomment As RadEditor
editorcomment = CType(MyUserControl.FindControl("Comment"), RadEditor)
editorcomment = editedItem.FindControl("Comment")
Neither of these commands brings back any data in editorcomment.Content
Please can you give me some code which will retrieve the Content of the RadEditor field
Wondering is there a way to add some arrows on the chart to make it look similar to the following info-graphics?
https://www.nwfsc.noaa.gov/news/features/dangerous_fishing/images/infographiclarge.jpg
I have a RadGrid that I populate from my SQL database. I use the RadGrid1_ItemCreated event to set the textbox width presently and that works fine. Now I want to set a regular expression for the same textbox. It is a textbox that contains an email address. Here is my C# code:
protected void gvEmailRedirectMaint_ItemCreated(object sender, GridItemEventArgs e)
{
if ((e.Item is GridEditableItem) && (e.Item.IsInEditMode))
{
string myMsg;
GridEditableItem edititem = (GridEditableItem)e.Item;
Regex regex = new Regex(@"^[A-Za-z0-9](([_\.\-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([\.\-]?[a-zA-Z0-9]+)*)\.([A-Za-z]{2,})$");
TextBox txtbx = (TextBox)edititem["RedirectEmailAddress"].Controls[0];
txtbx.Width = Unit.Pixel(300);
Match match = regex.Match(txtbx.Text);
if(match.Success)
myMsg = txtbx.Text + " is Valid";
else
myMsg = txtbx.Text + " is Invalid";
}
}
When I run this, it performs no editing. If I click the update button, it saves the email address even though it is not in the proper format. What am I doing wrong?

I have a ASP Dropdown list and Telerik RadComboBox. Both are binding same values.
Now I want to select same value in RadComboBox which user select in ASP Dropdown list.
I have used below codes but RadComboBox always shows previous selcted value only.
Hi ,
How can I find out which columns are visible in a server-side routine (some columns may have been shown/hidden with the header context menu)?
