jQWidgets Forums

jQuery UI Widgets Forums General Discussions Lists DropDownList Dropdownlist items overlapping

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 11 years, 3 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Dropdownlist items overlapping #54049

    arlev
    Participant

    We created a simple dropdown list, but when displayed on the web page (ie8), the items are overlapping. ALthough each item is in it’s own row (sort of), the height of each line items is probably 6px.
    We are using JQW version 3.2.1

    The source code below:

                         var monthCodes = [
                             { value: 0, label: "" },
                             { value: 1, label: "January" },
                             { value: 2, label: "February" },
                             { value: 3, label: "March" },
                             { value: 4, label: "April" },
                             { value: 5, label: "May" },
                             { value: 6, label: "June" },
                             { value: 7, label: "July" },
                             { value: 8, label: "August" },
                             { value: 9, label: "September" },
                             { value: 10, label: "October" },
                             { value: 11, label: "November" },
                             { value: 12, label: "December" },
                         ];
                         var monthSource = { datatype: "array", datafields: [{ name: 'label', type: 'string' }, { name: 'value', type: 'int' }], localdata: monthCodes };
                         var monthAdapter = new $.jqx.dataAdapter(monthSource);
    
                         $('#ExpMonthComvax').jqxDropDownList({ source: monthAdapter, width: '100', theme: "metro", displayMember: "label", valueMember: "value", height: '25' });
    
    Dropdownlist items overlapping #54050

    Peter Stoev
    Keymaster

    Hi arlev,

    My suggestion is to check for CSS conflicts on your page with existing CSS styles. We cannot reproduce such issue from the provided information. If there’s no CSS conflict, then please provide a full web page as an example of your scenario.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.