Hello Team,
I try to set tooltip for combobox lineitem which is disabled , it is not showing tooltip, Is there any way to show tooltip while it disabled ? could you please help on this ASAP?
Please refer below code snippet and attached screenshot.
private void cmbPlugtype_VisualListItemFormatting(object sender, VisualItemFormattingEventArgs args)
{
if (cmbPlugtype.DropDownListElement.TextBox.Fill.BackColor != Color.Cyan)
{
args.VisualItem.ToolTipText = args.VisualItem.Data.DisplayValue.ToString();
}
else
{
args.VisualItem.Enabled = false;
args.VisualItem.ToolTipText = "It is Disabled".
}
}
Thanks
Rajkannan
Hello Team,
Any update on this???
Thanks
Rajkannan