

When resizing large images using the imageEditor Resize tool, the width and height being reported in the UI is cropped at 3 characters. So when a large image (eg. 1280x1024) is being resized, the user can get confused.
To repeat this, just visit the online demo: https://demos.telerik.com/aspnet-ajax/imageeditor/examples/resize/defaultcs.aspx
and choose 1280x1024 in the Preset Size drop-down. You'll see that the width and height being reported is '128' and '102' respectively (the ending zeros in both numbers are not visible to the user).

Hello,
I am having an issue with RadEditor and the attribute DialogCssFile. I have previously posted this on stackoverflow, but have not yet got a reply. The basic question is
I have a Telerik RadEditor (2017.3.913.45) control with custom/unembedded skin (created using the themebuilder on telerik), and when I enter a value for the DialogsCssFile attribute, the markup of the page changes, meaning that my custom skin is not applied to the editor anymore.
Why is this a problem? Well the css inside the dialog for Find/replace for example didn't display correct, and having done some research, I needed to do some @imports into a customDialog.css file and drop that into the DialogsCssFile attribute.
As soon as I do this, the generated markup in the page for RadEditor changes from
Radeditor RadEditor_MyCustomSkin reWrapper
to
Radeditor MyCustomSkin reWrapper
meaning that my radeditor Skin is not applied to the editor, If I remove the DialogCssFile then the editor skin loads correctly, but the dialogs look wrong. In the Page source, the Window is a div within the page, and not an iFrame
Am I doing something wrong here?
For more detail, see my question on Stack Overflow:
https://stackoverflow.com/questions/48497461/telerik-radeditor-css-dialog-classes-overwriting-main-skin


I have a radgrid storing key data from a SQL stored procedure. My grid is as follows:
<telerik:RadGrid ID="keyGrid" runat="server" DataSourceID="Keys" AutoGenerateEditColumn="True">
<GroupingSettings CollapseAllTooltip="Collapse all groups"></GroupingSettings>
<MasterTableView AutoGenerateColumns="False" DataSourceID="Keys">
<Columns>
<telerik:GridBoundColumn DataField="SerialNumber" DataType="System.Int32" FilterControlAltText="Filter SerialNumber column" HeaderText="SerialNumber" SortExpression="SerialNumber" UniqueName="SerialNumber" ReadOnly="True"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Type" FilterControlAltText="Filter Type column" HeaderText="Type" SortExpression="Type" UniqueName="Type" ReadOnly="True"></telerik:GridBoundColumn>
<telerik:GridTemplateColumn DataField="Status" FilterControlAltText="Filter Status column" HeaderText="Status" SortExpression="Status" UniqueName="Status">
<EditItemTemplate>
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem>Assigned</asp:ListItem>
<asp:ListItem>Lost</asp:ListItem>
<asp:ListItem>Lost and Reassigned</asp:ListItem>
<asp:ListItem>Returned</asp:ListItem>
</asp:DropDownList>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="StatusLabel" runat="server" Text='<%# Eval("Status") %>'></asp:Label>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridBoundColumn DataField="ApprovedBy" FilterControlAltText="Filter ApprovedBy column" HeaderText="ApprovedBy" SortExpression="ApprovedBy" UniqueName="ApprovedBy" ReadOnly="True"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="DateTime" FilterControlAltText="Filter DateTime column" HeaderText="DateTime" SortExpression="DateTime" UniqueName="DateTime" DataType="System.DateTime" ReadOnly="True"></telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
I have set up the update command through the data source configuration wizard, same as how I set up my data source for the grid itself. Code follows:
<asp:SqlDataSource ID="Keys" runat="server" ConnectionString="<%$ ConnectionStrings:KeyTracking.My.MySettings.dbKeyTracking %>" SelectCommand="sp_Show_keys" SelectCommandType="StoredProcedure" UpdateCommand="sp_Update_key" UpdateCommandType="StoredProcedure">
<SelectParameters>
<asp:ControlParameter ControlID="employeeCB" Name="empID" PropertyName="SelectedValue" Type="Int32" />
</SelectParameters>
<UpdateParameters>
<asp:Parameter Name="empNo" Type="Int32" />
<asp:Parameter Name="status" Type="String" />
</UpdateParameters>
</asp:SqlDataSource>
When I hit edit in my grid column, it pops up as it should, only editing Key Status. That is the only thing that will need updating. I can select a new value in the drop box that populates, hit save, and it close. The problem is, it does not refresh my radgrid to show the update. I am using an update procedure to perfom the update to the database, as follows:
CREATE proc [dbo].[sp_Update_key]
(@empNo as Int,
@status as varchar (50),
@SN as Int,
@type as varchar (50),
@approved as varchar (50),
@datetime as datetime
)
as
begin
update dbo.Keys
set Status=@status
where EmpID=@empNo
end
GO
Where am I going wrong here?
I am still new and learning, so I can't quite figure out where things aren't firing correctly.

I have a drop down tree in an asp.net web form with checkboxes.
I don't want to display child in the hierarchy if they are the same as the parent
What is the best approach to this?

Whenever I include a link in the chat, it only shows as text.
How can I make the url display as a link and allow a user to click it?


Dear ,
I use RadHtmlChart for create chart but I have problem cannot export image/pdf
because this my telerik version not have tool RadClientExportManager.
Please introduce me for solve this problem.
Thank you very much.
