<telerik:RadDataPager ID="DataPager1" runat="server" PagedControlID="ListView1" PageSize="10" Skin="Default"> <Fields> <telerik:RadDataPagerButtonField FieldType="FirstPrev"></telerik:RadDataPagerButtonField> <telerik:RadDataPagerButtonField FieldType="Numeric"></telerik:RadDataPagerButtonField> <telerik:RadDataPagerButtonField FieldType="NextLast"></telerik:RadDataPagerButtonField> <telerik:RadDataPagerPageSizeField PageSizeText="Page size: " PageSizes="5,10,20,50" HorizontalPosition="RightFloat" PageSizeControlType="RadDropDownList"></telerik:RadDataPagerPageSizeField> </Fields></telerik:RadDataPager>Hello,
I have a problem which can be reproduced on the radeditor demo http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx in Internet Explorer 11. I have tried in Chrome and the problem does not exists there.
The problem is, that when you select an image, then the properties tab and then click on other images, the properties tab width and height aren't being updated.
1. Open the Image Manager in the radeditor
2. Click on a random image.
3. Click on the "Properties" tab.
4. Click on another random image.
The result is that the Width and Height textboxes are blank.
I've tried taking a look at the usercontrol "SetImageProperties.ascx" and it seems that the variable originalImage in function "loadImageProperties" looses the height and width. I suspect that it's using the preview image from the Image Manager which is hidden when the property tab is selected. Do you know if there's a work around for this?

Hi, We are using AjaxManager on our site and our average TTFB is approx 10s. We have tried your optimization techniques but it is still always slow. What is the cause and how can we speed it up? All we are doing on ajaxrequest is setting the visibility of a panel..
Hi Folks,
I have a static drop down list containing a set of configuration templates, each of these templates has 1 or more items assigned to it, each of a different type. I can retrieve each of the items and their typeID but when a user selects a template i need to dynamically create a new set of drop downs each one of them binding to a shared data source and passing in a variable of their typeID, thus creating a new set of drop downs each filled with a different set of data which the user can select to build up a new configuration
I've been trawling the internet for a usable example but there is such a thing as too much information and i cant find a consistent style or doing this. Does anybody have any working examples or an alternative idea
Thanks
matt
Hi,
I am trying to show a currency value in the tooltip for my bar chart.
I am using the below code in code-behind to set the format but the number isn't displayed as currency.
It used to work but I recently upgraded to the latest version of Telerik and it stopped working. Please let me know if there's anything that needs to be changed.
string template = "#=kendo.format(\\\'{0:c}\\\', dataItem.yValue)#";string tooltipTemplate = "#= dataItem.xValue# (#=kendo.format(\\\'{0:C2}\\\', dataItem.yValue)#)"; barSeries.LabelsAppearance.ClientTemplate = template;barSeries.TooltipsAppearance.ClientTemplate = tooltipTemplate;barSeries.LabelsAppearance.Position = Telerik.Web.UI.HtmlChart.BarColumnLabelsPosition.OutsideEnd;Is there any solution how to send the RadEditor content as PDF attachment in Mail ?
Please provide the solution
Thanks
Is there any way to get time&date and not only date in a DateTime column filter in RadGridView?
I am used to the RadDateTimePicker and there I get both values, date and time for selection. Sadly in the RadGrid there is no time icon and possibility to select a time.
So far I found a way to change the visible value in the textbox to contain the time also.
<telerik:GridDateTimeColumn DataField="DateStamp" HeaderText="MyTestColumn" FilterDateFormat="dd.MM.yyyy HH:mm" />
Thanks
Helo,
I have a problem because the event selection changed is not fired,
aspx code:
<form id="form1" runat="server">
<telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadTileList1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="Button1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server"></telerik:RadAjaxLoadingPanel>
<div>
<div id="header">
</div>
<div id="content">
<telerik:RadTileList runat="server" ID="RadTileList1" Width="100%" Height="500px" TileRows="3" SelectionMode="multiple" EnableDragAndDrop="true" CssClass="TileListStart" AutoPostBack="True" OnSelectionChanged="RadTileList1_SelectionChanged1">
</telerik:RadTileList>
</div>
<div id="footer">
<asp:Button ID="Button1" runat="server" Text="Button"/>
</div>
</div>
</form>
and c# code:
protected void Page_Init(object sender, EventArgs e)
{
PopulateTileList();
}
private void PopulateTileList()
{
RadTileList1.Groups.Add(new TileGroup());
RadTileList1.Groups[0].Tiles.Add(new RadTextTile() { Text = "1", BackColor = ColorTranslator.FromHtml("#e83737") });
RadTileList1.Groups[0].Tiles.Add(new RadTextTile() { Text = "2", BackColor = ColorTranslator.FromHtml("#008de7"), Width = 300 });
RadTileList1.Groups[0].Tiles.Add(new RadTextTile() { Text = "3", BackColor = ColorTranslator.FromHtml("#51ab2e") });
RadTileList1.Groups[0].Tiles.Add(new RadTextTile() { Text = "4", BackColor = ColorTranslator.FromHtml("#f5c020") });
RadTileList1.Groups.Add(new TileGroup());
RadTileList1.Groups[1].Tiles.Add(new RadTextTile() { Text = "5", BackColor = ColorTranslator.FromHtml("#9b58b5") });
RadTileList1.Groups[1].Tiles.Add(new RadTextTile() { Text = "6", BackColor = ColorTranslator.FromHtml("#91c930") });
RadTileList1.Groups[1].Tiles.Add(new RadTextTile() { Text = "7", BackColor = ColorTranslator.FromHtml("#ee8310") });
RadTileList1.Groups[1].Tiles.Add(new RadTextTile() { Text = "8", BackColor = ColorTranslator.FromHtml("#0058bc") });
}
protected void RadTileList1_SelectionChanged1(object sender, TileListDataEventArgs e)
{
List<RadBaseTile> selectedTiles = (sender as RadTileList).GetSelectedTiles();
string selectionList = "";
foreach (RadBaseTile tile in selectedTiles)
{
Button1.Text = selectedTiles.Count.ToString();
}
}
Can You help me resolve problem?
Best Regards
Robert Sadza