Hello,
I am having an issue where the text displayed within the combobx is truncated when an explicit width is used and the browser is IE 8 with compatibility mode on. Below is the RadComboBox definition and a screen print of the browser rendering.
Thanks,
Virgil
I am having an issue where the text displayed within the combobx is truncated when an explicit width is used and the browser is IE 8 with compatibility mode on. Below is the RadComboBox definition and a screen print of the browser rendering.
Thanks,
Virgil
<
telerik:RadComboBox
ID
=
"cboObjPriority"
runat
=
"server"
Width
=
"300px"
OnClientSelectedIndexChanged
=
"OnClientSelectedIndexChanged"
>
</
telerik:RadComboBox
>
<
script
type
=
"text/javascript"
>
function OnClientSelectedIndexChanged(sender, args) {
var combo = sender;
var input = combo.get_inputDomElement();
if (input.setSelectionRange) {
input.setSelectionRange(0, 0);
}
else if (input.createTextRange) {
var range = input.createTextRange();
range.collapse(true);
range.moveEnd('character', 0);
range.moveStart('character', 0);
range.select();
}
}
</
script
>