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

Three dots instead of ddl using Firefox

1 Answer 506 Views
DropDownList
This is a migrated thread and some comments may be shown as answers.
Ed
Top achievements
Rank 1
Ed asked on 01 Oct 2015, 06:08 PM

I have dropdownlists in a kendo grid. In IE and Chrome, it all works without issue. In Firefox, the dropdownlist will change to three dots if I shrink the browser width enough. What is the reason for this and how can I have Firefox behave like IE/Chrome where it doesn't change from the dropdownlist to the 3 dots?

See attached of example of what I mean.

 

1 Answer, 1 is accepted

Sort by
0
Accepted
Plamen Lazarov
Telerik team
answered on 05 Oct 2015, 02:25 PM

Hello Ed,

This behavior is by design and is due to the following CSS rule which is applied to the <span> with k-input class: 

.k-dropdown .k-input {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

There are two options in this case:

  1. Override the text-overflow property. For instance: text-overflow: clip;
  2. If the Grid is configured for inline editing you should set larger column width, so there is enough space for the DropDownList and its text.
    Regards,
    Plamen Lazarov
    Telerik
     
    Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
     
    Tags
    DropDownList
    Asked by
    Ed
    Top achievements
    Rank 1
    Answers by
    Plamen Lazarov
    Telerik team
    Share this question
    or