Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
3790
combo box busted?
posted

Seem in downloading the latest trial code the combo box does not display right.

Below displays a drop down with the name as the nullText but no items appear. When I press the down arrow a grey line appears.


     function menue( name, item1, item2, item3, item4, item5, item6, item7, item8, item9, item10)
     {
         makeWindow( inWindowDiv, inX, inY, 1, 1 )//set up windows size bar and position.
         $( function ()
         {
             var file = [
                 { "item": item1 },
                 { "item": item2 },
                 { "item": item3 },
                 { "item": item4 },
                 { "item": item5 },
                 { "item": item6 },
                 { "item": item7 }
             ];
             $.ig.loader( function ()
             {
                 inIUDiv.igCombo( {
                     dataSource: file,
                     virtualization: true,
                     nullText: name,
                     textKey: "item",
                     valueKey: "item",
                     width: "200px",
                     autoComplete: true
                 } );
             } );
         } );

     };

Parents
No Data
Reply
  • 3115
    Offline posted

    Hi seang,

    Can you check for some errors which have been thrown into the browser console?

     

     

    Thanks,

     

Children