or
<telerik:RadRating ID="ratingBinary" runat="server" ItemHeight="20px" ItemWidth="20px" Orientation="Horizontal" SelectionMode="Single" AutoPostBack="true" OnRate="ratingBinary_Rate"> <Items> <telerik:RadRatingItem Value="0" HoveredImageUrl="Assets/Collection/Images/Rating/Binary/downh.png" HoveredSelectedImageUrl="Assets/Collection/Images/Rating/Binary/downh.png" SelectedImageUrl="Assets/Collection/Images/Rating/Binary/downh.png" ImageUrl="Assets/Collection/Images/Rating/Binary/down.png" ToolTip="No" /> <telerik:RadRatingItem Value="1" HoveredImageUrl="Assets/Collection/Images/Rating/Binary/uph.png" HoveredSelectedImageUrl="Assets/Collection/Images/Rating/Binary/uph.png" SelectedImageUrl="Assets/Collection/Images/Rating/Binary/uph.png" ImageUrl="Assets/Collection/Images/Rating/Binary/up.png" ToolTip="Yes" /> </Items></telerik:RadRating><Columns><telerik:GridTemplateColumn HeaderText="Feature Name" UniqueName="FeatureNameTemplateColumn" ReadOnly="false"><ItemTemplate><asp:Label runat="server" ID="lblFeatureName" Text='<%# Bind("FeaturePropertyName") %>'></asp:Label></ItemTemplate></telerik:GridTemplateColumn><telerik:GridBoundColumn HeaderText="PD" UniqueName="PackageDescriptionEdit"></telerik:GridBoundColumn><telerik:GridBoundColumn HeaderText="Feature Value" UniqueName="FreeTextDataValueEdit"></telerik:GridBoundColumn><telerik:GridTemplateColumn HeaderText="Modified" UniqueName="LastModifiedTemplateColumn" ReadOnly="true"><ItemTemplate><asp:Label runat="server" ID="lblLastModified" Font-Size="8pt" Text='<%# Bind("LastModifiedBy") %>'></asp:Label></ItemTemplate></telerik:GridTemplateColumn><telerik:GridBoundColumn UniqueName="CheckBoxEmailColumn"></telerik:GridBoundColumn></Columns>var chk = new CheckBox {Checked = false, TabIndex = 5000, ID = "chkBoxEmail"};eItem["CheckBoxEmailColumn"].Controls.Add(chk);function CallEmailWindow() {var productid = $telerik.$('#<%= hfProductID.ClientID %>').val();var masterTable = $find("<%= rgvProductDetail.ClientID %>").get_masterTableView();var items = masterTable.get_dataItems();var num = masterTable.get_dataItems().length;for (var index = 0; index < num; index++) {var control = masterTable.get_dataItem()[index].findControl("chkBoxEmail");}}Hi,
I am using scheduler control in my application and I want to enable two month view of calendar control in scheduler.
I am able to set two month view of calendar control in scheduler by setting MultiViewColumns property of calendar to 2 but by using this command, calender control is not navigating between dates. It just show two months view.
Am I missing something? Any help regarding this will be appreciated
Thanks in advance
Deepak