Repeater InterestsRepeater = e.Item.FindControl("rptInterests") as Repeater; |
if (InterestsRepeater != null) |
{ |
InterestsRepeater.DataSource = Bazaar.Web.Model.Business.Interest.GetByMemberId(Convert.ToInt32(RadGridMembers.Columns.FindByUniqueName("Id"))); |
InterestsRepeater.DataBind(); |
} |
<telerik:GridTemplateColumn DataField="interests" UniqueName="interests" HeaderText="Intressen"> |
<ItemTemplate> |
<%#DataBinder.Eval(Container.DataItem, "interests")%> |
<asp:Repeater ID="rptInterests" runat="server"> |
<ItemTemplate><%#DataBinder.Eval(Container.DataItem, "Name")%></ItemTemplate> |
</asp:Repeater> |
</ItemTemplate> |
</telerik:GridTemplateColumn> |
<telerik:GridTemplateColumn DataField="interests" UniqueName="interests" HeaderText="Intressen"> |
<ItemTemplate> |
<%#DataBinder.Eval(Container.DataItem, "interests")%> |
<asp:Repeater ID="rptInterests" runat="server"> |
<ItemTemplate><%#DataBinder.Eval(Container.DataItem, "Name")%></ItemTemplate> |
</asp:Repeater> |
</ItemTemplate> |
</telerik:GridTemplateColumn> |
We have a multiple radgrid on one page. The problem is on the succeeding radgrid when filter button is clicked the context menu is out of position and display way on top of the page. I've attached a screenshot. Would anyone have an idea why is this happening?
Thanks,
Francis
Hi,
Is there a way to hide the add new sheet button in asp.net ajax spreadsheet control?
In WPF, there is a way to hide the new sheet button using the RadSpreadsheetSheetSelector class, however I am not able to find any thing in the asp.net ajax?
I want that once user mouse over the legend item, the related series item will highlighted and show the same tooltips as they are hovered. I'm using the version 2016 Q1, but there is no OnLegendItemHover event, how?
And how to make the databind template for Legend?
ThanksWhen using the pasting functionality via ctrl-v or right-click then clicking paste menu, on a RadEditor content area that has enough content to require it to scroll down in the actual edit, after the paste is done, the RadEditor is automatically scrolled up to the top of the content area of the RadEditor. I am using the Telerik.Web.UI version 2013.1.220.40, Telerik RadControls for ASP.NET Ajax in Chrome, version Version 61.0.3163.100 (Official Build) (64-bit), as all our users are required to do so. This was not always occurrring but seemed to start a couple of months ago, or less. This issue, however, does not occur in IE or Firefox.
Below is a video showing a replication of the issue. In the code it seems that none of the copied text is going into the radePasteHelper and then the following code in Telerik.Web.UI.WebResource.axd is ending putting the focus in the wrong area:
m.innerHTML = " ";
e = this.getSelection();
l = this.get_document().createRange();
l.setStart(m.firstChild, 0);
l.setEnd(m.firstChild, 1);
e.selectRange(l);
I understand this is a legacy version of the Telerik control, but need to get this fixed ASAP while we work on the possibility of implementing a newer version.
https://youtu.be/yBsHoJ6zxA0
I see examples of setting the high and the low in the range series through hard code
<SeriesItems>
<telerik:RangeSeriesItem From="56" To="76" />
<telerik:RangeSeriesItem From="56" To="76" />
<telerik:RangeSeriesItem From="56" To="76" />
<telerik:RangeSeriesItem From="56" To="76" />
<telerik:RangeSeriesItem From="56" To="76" />
<telerik:RangeSeriesItem From="56" To="76" />
<telerik:RangeSeriesItem From="56" To="76" />
<telerik:RangeSeriesItem From="56" To="76" />
<telerik:RangeSeriesItem From="56" To="76" />
<telerik:RangeSeriesItem From="56" To="76" />
<telerik:RangeSeriesItem From="56" To="76" />
<telerik:RangeSeriesItem From="56" To="76" />
</SeriesItems>
How do I bind them to a data source?
thanks
We are using Bootstrap with Telerik ASP.Net Ajax controls and we're having trouble changing button styles.
<
link
href
=
"Content/bootstrap.css"
rel
=
"Stylesheet"
type
=
"text/css"
/>
For example, this should be changing the style of our RadGridButton:
<
telerik:RadButton
ID
=
"btnCopySlctdSteps"
CssClass
=
"btn-success"
runat
=
"server"
OnClick
=
"btnCopySlctdStep_Click"
Text
=
"Copy Selected Steps"
/>
But it doesn't seem to be working since the buttons are still simply gray.
Thanks