Hi,
It seems that something has changed on the PostbackUrl behavior of the RadButton. When we click, there is no navigation to the PostbackUrl.
This leads to big issues in running applications.
Marc
Hi everyone,
Hi everyone, I'm using Telerik UI, and when I'm on a mobile view with the content editor, and then I select the image gallery, it doesn't seem to be responsive, or its just too wide for the phone screen. Is there some way to force that image manager to be the correct size? Or is that even possible?

Dear Technical Team,
I have installed Telerik UI for ASP.NET Ajax. I need to change my skin from Hay to Vista or Other.
I checked in following path, only one file Vista.gif is available. and I am not getting file select-hover.png. so combobox not looking good.
C:\Program Files (x86)\Progress\Telerik UI for ASP.NET AJAX R1 2022\Skins\Vista\ComboBox
Skin are not working properly then I checked there are not available png image of controls folde.
Kindly Provide me to download all skins controls png or other format images to show proper control on web page.
Thanks
Alam

Hi Telerik Team,
I would like to know if it is possible to make the context menu visible for a newly created table in the RadEditor. Currently, the context menu is only visible for tables that are explicitly "accepted as changes." Is there a way to enable the context menu for newly created tables without requiring them to be accepted as changes first?

Hi
I have a Telerik rad grid which populates data, one of the columns is date and is in format of DD-MMM-YY.
when I click on the header of the column to sort, it doesnt sort it correct in ascending date or descending order. Im assuming its because of the format as the month is a string.
Can anyone advise how to get it to sort correctly please?
Thanks
Rakhee
I found an issue where I had a webpage that has an AsyncUpload control and a text field. If the user enters text that contains angle brackets with some text between the brackets, the AsyncUpload throws some type of error.
I was able to reproduce this problem in the Telerik demo:
https://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridandradasyncupload/defaultcs.aspx?product=asyncupload
Steps:
1. Click "Add new record"
2. In the Image Name field type "test <test.com>"
3. Upload an image file
4. Click checkbox to add record
5. Error occurs.

Dear team members,
Is it possible to catch a drag event on client-side that occurs when a RadSplitBar is being dragged? I want to display the change of the position continuously.
Kind Regards

Good afternoon,
I'm looking to replace a CollapsiblePanelExtender with a Telerik control. The closest to this seems to be a RadSplitter.
How can I make a horizontal RadSplitter, which contains two panes, change its height to keep one pane at the top as a constant, but expand and collapse with a second pane. I'm using a button in the top pane to control the second pane, rather than a RadSplitterBar.
<telerik:RadSplitter RenderMode="Lightweight" ID="RadSplitter1" runat="server" Width="900px" Orientation="Horizontal">
<telerik:RadPane ID="RadPane1" runat="server" Height="30px" CssClass="collapsePanelHeader">
<div style="padding:5px; padding-left:20px; cursor:pointer; vertical-align:middle;" onclick="ToggleCollapsePane()">
<div style="float:left;">
<asp:Label ID="lblOptionsHdr" runat="server" Text="Filter Options" Font-Bold="True" />
</div>
</div>
</telerik:RadPane>
<telerik:RadPane ID="RadPane2" runat="server" Height="270px" CssClass="collapsePanelContent">
<div id="divContent" style="padding:20px; vertical-align:middle;">
<table style="vertical-align:top; width:100%; border-spacing:5px; padding:5px;">
<tr>
<td>
......... several filter options (dropdown lists, radiobuttons)
</td>
</tr>
</table>
</div>
</telerik:RadPane>
</telerik:RadSplitter>When the <div> in pane 1 is clicked it should toggle pane 2, and the splitter adjust its height accordingly:
function ToggleCollapsePane() {
var splitter = $find("<%= RadSplitter1.ClientID %>");
var pane = splitter.getPaneById("<%= RadPane2.ClientID %>");
if (pane.get_collapsed()) {
pane.expand();
splitter.resize(900, 303);
} else {
pane.collapse();
splitter.resize(900, 33);
}
}Is what I'm trying to achievable? Or is there another Telerik control that does this?
Kind regards,
Richard
