<telerik:RadWindow OpenerElementID = "hyp_YT" BackColor="Yellow" Style="z-index: 9999" Height="446px" Width="784px" ShowContentDuringLoad="false" VisibleStatusbar="false" Animation="Fade" ID="RadWindow1" runat="server"><ContentTemplate>aaaaaaaaaaaaaaaaaa</ContentTemplate></telerik:RadWindow>var source = (from r in readData join sen in equipments on r.EquipmentId equals sen.Id select new { Id = r.Id, CreatedDate = r.CreatedDate, Value = r.Value, Name = sen.Name, EquipmentId = sen.Id }) .ToList(); chart.PlotArea.Series.Clear(); foreach (var equipment in source.Select(src => src.Name).Distinct()) { var equipmentLineSeries = new LineSeries { DataField = "Value", Name = equipment, }; chart.PlotArea.Series.Add(equipmentLineSeries); } chart.DataSource = source; chart.DataBind();Hi:
I have a Pivot Grid with vertical scrolling and RowGrandTotalHeaderCellTemplate set to some text for every aggregate field. It is set to some text because I did not wanted the aggregate function displayed such as SUM or AVE, etc … I have noticed that the vertical scrolling causes problems on the RowGrandTotalHeaderCellTemplate. The set text of the last aggregate field’s RowGrandTotalHeaderCellTemplate is repeated on all the other aggregated fields’ RowGrandTotalHeaderCellTemplate. These are some of the set properties:
<telerik:RadPivotGrid ID="Name" runat="server" AggregatesLevel="5" ShowDataHeaderZone="False" AggregatesPosition="Rows" Height="700px"
OnNeedDataSource="Name_NeedDataSource" OnCellDataBound="Name_CellDataBound" OnItemCommand="Name_ItemCommand">
<PagerStyle ChangePageSizeButtonToolTip="Change Page Size" PageSizeControlType="RadComboBox"></PagerStyle>
<ClientSettings>
<Scrolling AllowVerticalScroll="True" ScrollHeight="700px"/>
</ClientSettings>
<TotalsSettings ColumnGrandTotalsPosition="None" ColumnsSubTotalsPosition="None" RowsSubTotalsPosition="None" />
5 filters fields
1 column fields
5 rows fields
9 aggregated fields
Is there way I can correct this behavior?
I am using ASP.NET 4.5, Windows 8, Internet Explorer 10.0.9200.16721, Telerik v.2013.2.717.45, C#.
The provided help will be appreciated.
Thanks!
Jose
<h2 class="titleText">RadEditor for ASP.NET AJAX</h2><p style="text-align: justify;"><span style="font-size: 19px; color: #4f6128;"><strong>RadEditor</strong></span><span style="color: #4f6128;"> </span>is not simply an HTML<a href="#HTMLDescription"><sup>1</sup></a> Editor. It is what Microsoft chose to use in <strong>MSDN</strong>, <strong>CodePlex</strong>, <strong>TechNet</strong>, <strong>MCMS</strong> and even as an alternative to the default editor in <a href="http://www.telerik.com/products/aspnet-ajax/sharepoint.aspx">SharePoint</a>. Whether you need a mere<br />spellchecker with Google-like Textbox , or a Word-like content authoring environment, the result is the same: clean <strong>XHTML</strong> output, fast rendering, widest cross-browser support, and <a href="http://www.telerik.com/products/aspnet-ajax/editor.aspx">tons of features</a>: <br /><br />Is it possible to put a RadButton inside a bound DataList?
I have a dataset with two columns returned (bound in the code-behind). First column is called HowFoundDesc (a description), and second is FoundThisWay (a Boolean). I can bind the HowFoundDesc to the Text attribute of the DataList, but I don't know how to bind the FoundThisWay Boolean flag to the RadButton so as to toggle the state of the button (it is a toggle radio button with images).
When I run it, I get the descriptions fine for each, but all the images are defaulting to the off value. Also, when I click on the buttons, they are all acting separate instead of a group, even though I have the groupname defined in the RadButton.
Any ideas?
<div Style="font-size: 14px; top: 4px; left: 5px; position: absolute;"> <asp:DataList ID="HowFound" runat="server" RepeatDirection="Horizontal" RepeatColumns="5" > <ItemTemplate> <telerik:RadButton ID="rbHowFound" runat="server" ForeColor="Blue" AutoPostBack="false" ButtonType="ToggleButton" GroupName="grpHowFound" ToggleType="Radio" Text=<%# Eval("HowFoundDesc")%> > <ToggleStates> <telerik:RadButtonToggleState PrimaryIconCssClass="rbRemove" /> <telerik:RadButtonToggleState PrimaryIconCssClass="rbOk" Selected="true" /> </ToggleStates> </telerik:RadButton> </ItemTemplate> </asp:DataList> </div>