Hello,
I am using Q1 2010 SP1.
In this version, we have scheduler Recurrence Editor. this is very good feature which I like most in this version.
Currently we have to check recurrence checkbox, then the Panel get visible.
Will you please help in viewing recurrence panel directly on load. ? no need to check checkbox.
Thank You!!
Ashish Sapkale

| <telerik:RadChart ID="crtResults" runat="server" SeriesOrientation="Horizontal" SkinsOverrideStyles="false" |
| OnItemDataBound="crtResults_ItemDataBound" AutoLayout="true"> |
| <ChartTitle> |
| <TextBlock Text="Title"> |
| </TextBlock> |
| </ChartTitle> |
| <Series> |
| <telerik:ChartSeries Name="Series" Type="Bar" > |
| <Appearance LegendDisplayMode="Nothing" > |
| <Border Visible="false"/> |
| <FillStyle FillType="Solid" MainColor="White"></FillStyle> |
| <LabelAppearance Visible="false" ></LabelAppearance></Appearance> |
| </telerik:ChartSeries> |
| </Series> |
| </telerik:RadChart> |
| crtResults.Series[0].AddItem(1, "label", Color.Red); |
| <telerik:RadPageView ID="MCCCodePageView" runat="server" CssClass="tabpageview"> |
| <div style="margin:10px"> |
| <div class="helpmodtitle"> |
| <asp:Label ID="MCCCodePageViewHeader" runat="server" ></asp:Label> |
| <a href="#"><img alt="Help" border="0" src="../images/helpicon.png"/></a> |
| </div> |
| <telerik:RadTreeView ID="TransCatTree" runat="server" |
| Width="95%" |
| Height="300" |
| CheckBoxes="true" |
| TriStateCheckBoxes="true" |
| CheckChildNodes="true" |
| BackColor="White" |
| Skin="Outlook" |
| BorderWidth="1px" |
| BorderColor="#94A7B5" |
| ShowLineImages="false" |
| MultipleSelect="false" |
| TabIndex="1" |
| AccessKey="W" |
| OnClientNodeChecked="TransCatTree_ClientNodeChecked"> |
| </telerik:RadTreeView> |
| </div> |
| </telerik:RadPageView> |
| if (e.Item is GridDataItem) |
| { |
| var item = e.Item as GridDataItem; |
| var name = (HyperLink)item["Name"].Controls[0]; |
| var extension = Path.GetExtension(name.Text).TrimStart('.'); |
| var fileIcon = new HtmlGenericControl("span"); |
| if (SiteMaster.FileIconCssClass.ContainsKey(extension)) |
| { |
| fileIcon.Attributes.Add("class", "FileIcon " + SiteMaster.FileIconCssClass[extension]); |
| } |
| else |
| { |
| fileIcon.Attributes.Add("class", "FileIcon FileIcon-Default"); |
| } |
| item["Name"].Controls.AddAt(0, fileIcon); |
| } |
| <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="WebContent.ascx.cs" |
| Inherits="MSD_web.WebContent" %> |
| <script type="text/javascript"> |
| //<![CDATA[ |
| function OnClientLoad(editor) { |
| } |
| function openContentEditorWin(winID) { |
| var oWnd = $find(winID); |
| oWnd.show(); |
| var editor = $find("<%=RadEditor2.ClientID%>"); //get a reference to RadEditor's client object |
| } |
| //]]> |
| </script> |
| <asp:PlaceHolder ID="EditButtonsPlaceHodler" runat="server" Visible="false"> |
| <button onclick="openContentEditorWin('<%=RadWindow1.ClientID%>');return false;" "> |
| Edit Content</button><br /> |
| </asp:PlaceHolder> |
| <asp:Literal ID="HTMLContentHolder" runat="server" > |
| </asp:Literal> |
| <telerik:RadWindowManager Behaviors="Close, Move, Resize,Maximize" ID="RadWindowManager" |
| DestroyOnClose="true" runat="server"> |
| <Windows> |
| <telerik:RadWindow ID="RadWindow1" VisibleOnPageLoad="false" Title="Content Editor" |
| runat="server" Width="900" Height="700" > |
| <ContentTemplate> |
| <asp:Button ID="btnSave" runat="server" Text="Save" Enabled="True" OnClick="btnSave_Click" /> |
| <div style="text-align: left; display: block"> |
| <telerik:RadEditor ID="RadEditor2" runat="server" Skin="Simple" Width="100%" Height="650" |
| Enabled="True" OnClientLoad="OnClientLoad"> |
| </telerik:RadEditor> |
| </div> |
| </ContentTemplate> |
| </telerik:RadWindow> |
| </Windows> |
| </telerik:RadWindowManager> |
| Page.RegisterStartupScript("callWin", "<script type='text/javascript'>OpenWindow();</script>"); |
| Response.Write("Hello Worldd !"); |
function ShowFilter() {
$find(
'<%=rgPluginsList.ClientID %>').get_masterTableView().showFilterItem();
document.getElementById(
'HideBtn').style.display = 'block';
document.getElementById(
'ShowBtn').style.display = 'none';
}
function HideFilter() {
document.getElementById(
'HideBtn').style.display = 'none';
document.getElementById(
'ShowBtn').style.display = 'block';
$find(
'<%=rgPluginsList.ClientID %>').get_masterTableView().hideFilterItem();
}
----------------------------------------------------------------------------------------------------<
asp:ImageButton runat="server" OnClientClick="ShowFilter();" ImageUrl="../Images/ShowFilter.gif"
ID="ShowBtn" />
<asp:ImageButton runat="server" OnClientClick="HideFilter();" ImageUrl="../Images/HideFilter.gif"
ID="HideBtn" />
-----------------------------------------------------------------------------------------------------------
if
(!IsPostBack)
{
HideBtn.Style.Add(
"display", "none");
ShowBtn.Style.Add(
"display", "block");
rgPluginsList.AllowFilteringByColumn = !rgPluginsList.AllowFilteringByColumn;
rgPluginsList.Rebind();
}
-------------------------------------------------------------------------------------------------------------Server Error in '/RadarNetUI' Application.
--------------------------------------------------------------------------------
Multiple controls with the same ID 'FilterTextBox_#' were found. FindControl requires that controls have unique IDs.
Let me know wheter i missed some thing
Thanks in advance
Chaitanya.E
chaitanya.eluru@cosmonetsolutions.com