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

ComboBox not showing the X to unselect

1 Answer 69 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Carrie
Top achievements
Rank 1
Carrie asked on 12 Sep 2013, 11:49 AM
Hello,

I am trying to implement the combo box and it is rendering and working fine except that I don't get the "X" inside the input once a selection is made.   The X is used to unselect.    What is wrong with my code?

I am using version 2013.2.716 - it does work in IE but not in Firefox

Thanks,
Carrie
@(Html.Kendo().ComboBoxFor(model => model.Impact)
            .Placeholder("Choose One...")
            .DataTextField("Text")
            .DataValueField("Value")
            .Suggest(true)
            .DataSource(dataSource => dataSource
                 .Read(read => read.Action("GetImpactList", "Enum"))
             ))

1 Answer, 1 is accepted

Sort by
0
Accepted
Dimiter Madjarov
Telerik team
answered on 12 Sep 2013, 02:55 PM
Hello Carrie,


The X is not part of the Kendo UI ComboBox. It's a default feature of the input fields in IE 10. You could assure this in the following JS Bin example.

Regards,
Dimiter Madjarov
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
ComboBox
Asked by
Carrie
Top achievements
Rank 1
Answers by
Dimiter Madjarov
Telerik team
Share this question
or