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

[Solved] Combobox resize issue when disabled

1 Answer 107 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Kosal
Top achievements
Rank 1
Kosal asked on 11 Jan 2010, 03:38 PM
I have a combobox using the default Office2007 skin that works fine.  However when enabled is changed to false it re-sizes to half its size.
This problem seems to be confined to the Office2007 skin because it works fine with using other skins.
I am using version 2008.03.1314.

Any help will be appreciated.  Thanks!

1 Answer, 1 is accepted

Sort by
0
Accepted
Yana
Telerik team
answered on 14 Jan 2010, 02:40 PM
Hello there,

This problem occurs with older versions of RadComboBox and when it is placed in RadAjaxPanel. The work-around is to subscribe to ResponseEnd event of the ajax panel:

<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" ClientEvents-OnResponseEnd="onResponseEnd">

and in its handler:

function onResponseEnd() {
    $find('RadComboBox1').get_inputDomElement().style.zoom = 1;
}

Regards,
Yana
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
ComboBox
Asked by
Kosal
Top achievements
Rank 1
Answers by
Yana
Telerik team
Share this question
or