or
| //---Add Node in tree view |
| RadTreeNode node = new RadTreeNode(); |
| RadTreeNode pNode; |
| node.Text = txtGroupAccTitle.Text; |
| node.Value = txtGroupAccNo.Text; |
| ////---Add in TreeView in combo |
| RadTreeView tvwCmbAcc = (RadTreeView)cmbParentAcc.Items[0].FindControl("tvwCmbAcc"); |
| //----Note:Code returns no error but node is not shown in Combo if this code is placed after next block it shows node in combo but not in left side tree. find its reason |
| pNode = tvwCmbAcc.FindNodeByValue(cmbParentAcc.SelectedValue.ToString()); |
| if (pNode != null) |
| { |
| //pNode.Selected = true; |
| pNode.Nodes.Add(node); |
| //pNode.Expanded = true; |
| } |
| else |
| { |
| tvwCmbAcc.Nodes.Add(node); |
| } |
| pNode = null; |
| //------------------------------------------ |
| pNode = tvwGrpAccounts.FindNodeByValue(cmbParentAcc.SelectedValue.ToString()); |
| if (pNode != null) |
| { |
| pNode.Selected = true; |
| pNode.Nodes.Add(node); |
| pNode.Expanded = true; |
| } |
| else |
| { |
| tvwGrpAccounts.Nodes.Add(node); |
| } |
Telerik.WinControls.UI.Scheduler.ICalendar.CalHelper.RecurrenceRuleToString
Telerik.WinControls.UI.Scheduler.ICalendar.CalHelper.TryParseRecurrenceRule
Also do you have any documentation that describes the structure of the resultant string? This kind of thing REQ=DAILY;INTERVAL=2.
Best Regards,
Jon
| <telerik:RadDateTimePicker ID="RadDateTimePicker1" runat="server" Culture="French (France)" DatePopupButton-ToolTip="Ouvrir le calendrier" TimePopupButton-ToolTip="Ouvrir la liste des heures"></telerik:RadDateTimePicker> |
| <ItemTemplate> |
| <asp:LinkButton ID="lnkEdit" CommandName="Edit" Text="Edit" runat="server"></asp:LinkButton> |
| <asp:LinkButton ID="lnkMove" Text="Move" runat="server"></asp:LinkButton> |
| </ItemTemplate> |
if ((e.Item is GridEditFormItem) && (e.Item.IsInEditMode))
{