I am using RadTooltip with RadImagegallery and Radgrid in it. Its working fine on my screen. but on smaller screen it goes out of screen size! I have added 2 images below One showing complete tooltip with close option and other is going out of screen.
<
telerik:RadToolTip
ID
=
"radtooltipshowbom"
ContentScrolling
=
"Auto"
RenderInPageRoot
=
"false"
runat
=
"server"
Modal
=
"true"
HideEvent
=
"ManualClose"
Style
=
"z-index: 6990"
Position
=
"Center"
Animation
=
"Slide"
AnimationDuration
=
"700"
BackColor
=
"White"
Width
=
"1510px"
Height
=
"670px"
>
<
asp:Panel
ID
=
"Panel3"
runat
=
"server"
BackColor
=
"White"
Height
=
"670px"
Width
=
"1510px"
>
<
table
>
<
tr
>
<
td
align
=
"center"
>
<
asp:Label
ID
=
"lblfdid"
runat
=
"server"
CssClass
=
"label"
ForeColor
=
"#990000"
Text
=
""
></
asp:Label
>
<
hr
style
=
"width: 1505px"
/>
</
td
>
</
tr
>
</
table
>
<
table
>
Hi,
I have a scenario where the combobox inside a update panel which resides inside a usercontrol loses it's styling on second display of the same usercontrol. I have created a project that reproduces the issue very easily. Doesn't appear to be browser specific as I have tried IE and Chrome.
I've taken my large project and scaled it down so it's easier to work with (sorry for the extra code):
I am using ImageGallery to show a rotating set of images without any thumbnails or controls. This is working fine except I can't figure out how to get rid of the little buttons at the bottom that indicate the position in the rotation. What setting turns these off? Here is what I have so far:
<
telerik:RadImageGallery
ID
=
"RadImageGallery1"
runat
=
"server"
ImagesFolderPath
=
"images/show"
LoopItems
=
"True"
BackColor
=
"White"
AllowPaging
=
"false"
>
<
ThumbnailsAreaSettings
ShowScrollButtons
=
"False"
Mode
=
"ImageSlider"
ShowScrollbar
=
"false"
></
ThumbnailsAreaSettings
>
<
ImageAreaSettings
Width
=
"318px"
Height
=
"170px"
ShowDescriptionBox
=
"False"
ShowNextPrevImageButtons
=
"False"
NavigationMode
=
"Zone"
></
ImageAreaSettings
>
<
ToolbarSettings
Position
=
"None"
ShowItemsCounter
=
"False"
ShowSlideshowButton
=
"False"
ShowFullScreenButton
=
"False"
ShowThumbnailsToggleButton
=
"False"
></
ToolbarSettings
>
<
ClientSettings
>
<
AnimationSettings
SlideshowSlideDuration
=
"5000"
>
<
NextImagesAnimation
Type
=
"Fade"
Speed
=
"2700"
></
NextImagesAnimation
>
<
PrevImagesAnimation
Type
=
"Fade"
Speed
=
"2700"
></
PrevImagesAnimation
>
</
AnimationSettings
>
</
ClientSettings
>
<
PagerStyle
ShowPagerText
=
"False"
></
PagerStyle
>
</
telerik:RadImageGallery
>
Thanks for your help.
Charles
Hello,
AUT with Radcombobox controls on IE8 and QTP/UFT = works well.
AUT with Radcombobox controls on IE9 and QTP/UFT = works well.
AUT with Radcombobox controls on IE11 and QTP/UFT = objects are recognized but values are showing empty or blank.
Any suggestion on how to fix this issue?
Thanks.
Gilbert
<
telerik:RadGrid
ID
=
"RadGrid2"
runat
=
"server"
AllowPaging
=
"True"
OnNeedDataSource
=
"RadGrid2_NeedDataSource"
AllowSorting
=
"true"
AllowFilteringByColumn
=
"true"
>
<
ClientSettings
EnableRowHoverStyle
=
"true"
>
<
Selecting
AllowRowSelect
=
"true"
/>
</
ClientSettings
>
<
MasterTableView
AllowMultiColumnSorting
=
"True"
>
</
MasterTableView
>
</
telerik:RadGrid
>
public
DataTable GetDataTable(
string
query)
{
String ConnString =
""
;
//ConnString = ConfigurationManager.ConnectionStrings["CapacityManagement"].ConnectionString;
ConnString = ConfigurationManager.ConnectionStrings[2].ConnectionString;
SqlConnection conn =
new
SqlConnection(ConnString);
SqlDataAdapter adapter =
new
SqlDataAdapter();
adapter.SelectCommand =
new
SqlCommand(query, conn);
DataTable myDataTable =
new
DataTable();
conn.Open();
try
{
adapter.Fill(myDataTable);
}
finally
{
conn.Close();
}
return
myDataTable;
}
protected
void
RadGrid2_NeedDataSource(
object
source, GridNeedDataSourceEventArgs e)
{
(source
as
RadGrid).DataSource = GetDataTable(
"SELECT Date, Location, EquipmentType, InstalledPorts, UsedPorts, ReservedPorts, AvailablePorts, Utilization, ThreeMonthUtil, TwelveMonthUtil From tblSAMPortsLocationSummary"
);
}
Hello,
I just updated from Q2 2014 to Q3 2015 and run into a strange artifact.
I've styled the RadComboBox using a custom style sheet(RadComboBox_CUSTOM) and a custom image (rcbSprite). In the new version of Telerik all RadComboBox items now looked as they where focused by default - but not according to my CSS file, instead it seems to be a defallt background positioning).
I have tried to look what has beaked since last version we had, but cannot find anything. I've created a small test project for this issue.
Kind regards
Robert
Hello,
I will wish to clarify the following properties :
- StorageClass
- ServerSideEncryptionMethod
- CannedACL
I do not see how, thank you for your help.
Vincent
Hi
Is there a way to set the size of the exported PDF boxes in the org chart?
I have quite a large org chart to export and it would be really useful if I could increase the size of certain boxes (for example, where a manager has many subordinates, I'd like the make the manager's box larger).
Is this possible?
I was trying to create an iframe in RadEditor, I encountered some javascript error. Even I can reproduce on RadEditor demo site.
Please see my video: http://screencast.com/t/LMiX8qm2
Is it a known issue or if there is any solution?
Thanks a lot.