This is a migrated thread and some comments may be shown as answers.

Truncated text

4 Answers 134 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Virgil Schleich
Top achievements
Rank 1
Virgil Schleich asked on 06 Nov 2012, 02:17 PM
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


 

 

 

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

4 Answers, 1 is accepted

Sort by
0
Boyan Dimitrov
Telerik team
answered on 09 Nov 2012, 11:33 AM
Hello Virgil,

This is known issue which is already fixed in the current official version of our controls. Could you clarify the version of the controls that you are using?

If you are still facing that issue using the latest version of our control, please provide a live URL for further inspection.

Hope that this will be helpful.

Regards,
Boyan Dimitrov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Virgil Schleich
Top achievements
Rank 1
answered on 12 Nov 2012, 02:07 PM
Hello,

Thank you for the response.  We are using 2012 Q2 AspNet Ajax controls.

Virgil
0
Boyan Dimitrov
Telerik team
answered on 15 Nov 2012, 08:01 AM
Hello Virgil,

This is a known issue caused by RadFormDecorator and  it is already fixed in the latest version of our controls.

Regards,
Boyan Dimitrov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Virgil Schleich
Top achievements
Rank 1
answered on 15 Nov 2012, 03:32 PM
Thank you for the response. I will look into updating to the next release.

Virgil
Tags
ComboBox
Asked by
Virgil Schleich
Top achievements
Rank 1
Answers by
Boyan Dimitrov
Telerik team
Virgil Schleich
Top achievements
Rank 1
Share this question
or