Ajax DropDown control

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Peter

    #1

    Ajax DropDown control

    Does anyone know of OpenSource .NET 2.0 ajax dropdown box with typeahead
    feature and ability to load only X amount of items? I have over 20,000
    names in a database table which I would like to allow user to select from a
    dropdown box, but I don't want to load all of them at one time.

    Thank You


    Peter


  • Eliyahu Goldin

    #2
    Re: Ajax DropDown control

    Googling for typeahead dropdown ajax returns quite a lot of references:


    For the loading part, you should filter the items on your datasource before
    databinding.

    --
    Eliyahu Goldin,
    Software Developer
    Microsoft MVP [ASP.NET]




    "Peter" <pczurak@nospam .nospamwrote in message
    news:uEKUgwSfIH A.4760@TK2MSFTN GP06.phx.gbl...
    Does anyone know of OpenSource .NET 2.0 ajax dropdown box with typeahead
    feature and ability to load only X amount of items? I have over 20,000
    names in a database table which I would like to allow user to select from
    a dropdown box, but I don't want to load all of them at one time.
    >
    Thank You
    >
    >
    Peter
    >
    >

    Comment

    • Peter

      #3
      Re: Ajax DropDown control


      Thanks for your help!

      I've already looked at most of them and they work with FireFox or just don't
      work at all. I was looking for an OpenSource custom control that works with
      both IE and FireFox.



      "Eliyahu Goldin" <REMOVEALLCAPIT ALSeEgGoldDinN@ mMvVpPsS.orgwro te in
      message news:OScUKKUfIH A.5280@TK2MSFTN GP02.phx.gbl...
      Googling for typeahead dropdown ajax returns quite a lot of references:

      >
      For the loading part, you should filter the items on your datasource
      before databinding.
      >
      --
      Eliyahu Goldin,
      Software Developer
      Microsoft MVP [ASP.NET]


      >
      >
      "Peter" <pczurak@nospam .nospamwrote in message
      news:uEKUgwSfIH A.4760@TK2MSFTN GP06.phx.gbl...
      >Does anyone know of OpenSource .NET 2.0 ajax dropdown box with typeahead
      >feature and ability to load only X amount of items? I have over 20,000
      >names in a database table which I would like to allow user to select from
      >a dropdown box, but I don't want to load all of them at one time.
      >>
      >Thank You
      >>
      >>
      >Peter
      >>
      >>
      >
      >

      Comment

      • Michael Nemtsev [MVP]

        #4
        Re: Ajax DropDown control

        Hello Peter,

        So, what's your expectations from the control? What do u wanna get?
        If not extract all records then u need change the usability of your contol.
        I'd recommend to use AutoComplete dropdown list, where the selection creteria
        is based on the first 2 symbols which user typed

        ---
        WBR,
        Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

        "The greatest danger for most of us is not that our aim is too high and we
        miss it, but that it is too low and we reach it" (c) Michelangelo


        PDoes anyone know of OpenSource .NET 2.0 ajax dropdown box with
        Ptypeahead feature and ability to load only X amount of items? I have
        Pover 20,000 names in a database table which I would like to allow
        Puser to select from a dropdown box, but I don't want to load all of
        Pthem at one time.
        P>
        PThank You
        P>
        PPeter
        P>


        Comment

        • Peter

          #5
          Re: Ajax DropDown control

          I would like the control to look and act the same in IE and FireFox, every
          control I've looked at it visually acted differently in IE then FireFox
          (usually no usable in one of them, for example
          http://easylistbox.com/demoComboAjax.aspx this control is totally unusable
          in FireFox) and that's where my experience is lacking to fix them , CSS and
          HTML.



          "Michael Nemtsev [MVP]" <nemtsev@msn.co mwrote in message
          news:900895ec2f 6478ca4c222d833 ab0@msnews.micr osoft.com...
          Hello Peter,
          >
          So, what's your expectations from the control? What do u wanna get? If not
          extract all records then u need change the usability of your contol.
          I'd recommend to use AutoComplete dropdown list, where the selection
          creteria is based on the first 2 symbols which user typed
          >
          ---
          WBR, Michael Nemtsev [.NET/C# MVP] :: blog:

          "The greatest danger for most of us is not that our aim is too high and we
          miss it, but that it is too low and we reach it" (c) Michelangelo
          >
          PDoes anyone know of OpenSource .NET 2.0 ajax dropdown box with
          Ptypeahead feature and ability to load only X amount of items? I have
          Pover 20,000 names in a database table which I would like to allow
          Puser to select from a dropdown box, but I don't want to load all of
          Pthem at one time.
          PPThank You
          PPPeter
          P>
          >

          Comment

          Working...