Telerik Forums
UI for ASP.NET AJAX Forum
13 answers
375 views
Hi there,

"The RadToolTip's designed behavior is to show always in the visible browser area. Therefore, when it should exceed the screen bounds it recalculates its coordinates and reposition."

The above statement is not always true, please see the attached screenshot. When the tooltipmanager showing up, 80% of the time it does the reposition, but sometimes not, the bottom part of the tooltipmanager is hidden from the bottom of the screen, i need to scroll down to see the entire tooltip.

Any suggestions?

Thanks,
Meng
Rumen
Telerik team
 answered on 04 Sep 2019
5 answers
191 views
Hello, I have a missing form label while running WAVES tool on telerik:RadDatePicker control.  I added DateInput-Label="hello" and it's clear the error but I do not want to see "hello" label.  I tried to add a class visuallyhidden but it's not working.  Is there any other way? Thank you.

<telerik:RadDatePicker ID="txtPlanEffectiveDate" runat="server" DateInput-DateFormat="MM/dd/yyyy"
Calendar-EnableAriaSupport="true" Calendar-EnableKeyboardNavigation="true">
</telerik:RadDatePicker>
Rumen
Telerik team
 answered on 03 Sep 2019
1 answer
208 views

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).  

Vessy
Telerik team
 answered on 02 Sep 2019
1 answer
147 views

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

 

Rumen
Telerik team
 answered on 02 Sep 2019
5 answers
169 views
The stripped down version of our scenario is this:

We have two buttons behind one ajax panel.  When clicked, the first button needs to show one loading panel, and then second button needs to show a different loading panel when it is clicked.  We cannot place these items into separate ajax panels, they need to stay within the same panel (one button updates some properties on the other button).  Is there any way to change which loading panel gets triggered based on which button was clicked?
Attila Antal
Telerik team
 answered on 02 Sep 2019
1 answer
585 views

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. 

 

Eyup
Telerik team
 answered on 02 Sep 2019
3 answers
305 views

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?

 

Vessy
Telerik team
 answered on 02 Sep 2019
3 answers
140 views

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?

Vessy
Telerik team
 answered on 02 Sep 2019
2 answers
294 views
I have a vb.net web 2010 application that I would like to convert to visual studio 2012 and add the Telerik tool.
Before I complete that step I will add the telerik.web.design, telerik.web.device.dection,telerik.web.ui, and the telerik.web.ui.skins tool as a reference  to the application and set the version to auto update. The references will be obtained
from C:\Program Files (x86)\Progress\Telerik UI for ASP.NET AJAX R2 2019\Bin40 files.
Now on the same computer,
I will convert the vb.net 2010 web form application to visual studio.2012 and obtain the files from: C:\Program Files (x86)\Progress\Telerik UI for ASP.NET AJAX R2 2019\Bin45 as a reference. Will I setup the references as 'Auto Update' or something else? If I set the version to something else, what would I set the version to?
Also can I have both the Telerik tool working on the same compiuter by using both Visual Studio 2010 and Visual Studio 2012 for the web form application? If so, are there any directions that I need to follow?
Rumen
Telerik team
 answered on 30 Aug 2019
1 answer
141 views

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.

Peter Milchev
Telerik team
 answered on 30 Aug 2019
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?