Hello,
I have added custom dropdown box's to RAD Edito, it works fine, but scroll bar is not visible.
I am able to see Scroll bar in Trial verstion, but not purchased verstion.
My Code:
EditorToolGroup
dynamicToolbar = new EditorToolGroup();
dynamicToolbar.Tag =
"ABC";
bool isFound = false;
EditorToolGroupCollection rdGrp = rdDesignEdit.Tools;
for (int iIndex = 0; iIndex < rdGrp.Count; iIndex++)
{
if (rdGrp[iIndex].Tag.Equals("ABC"))
{
dynamicToolbar = rdGrp[iIndex];
isFound =
true;
break;
}
}
for (int i = 0; i < dynamicToolbar.Tools.Count; i++)
{
dynamicToolbar.Tools[i].Visible =
false;
dynamicToolbar.Tools.RemoveAt(i);
}
EditorDropDown EditorDropDownPlaceHolder = GetPlaceHoldesDropDownForRADEditor();
dynamicToolbar.Tools.Add(EditorDropDownPlaceHolder);
if (!(isFound))
{
rdDesignEdit.Tools.Add(dynamicToolbar);
}
When I look at CSS properties for dropdown box Class "Telerik rade_dropDownBody" has Overflow = Hidden. If a dropdown box has more then 50 items i cant see scroll bars, I am not able to change this property as well, bcz I cant find any CSS Files.
Please suggest me on this.
Thank you,
Sree
Thank you,
Sreedhar