New Rich Controls

I started working on a few new controls that eventually might find
their way into a control suite of some kind. First, I built a
AutoCompleteTextBox much like the To Email field in Gmail.
When you type in the textbox, a search takes place and you get a
dropdownlist of data. In the pic below, I bound “FirstName, LastName,
Email” and then set FormatString = “{0} {1} <{2}>”. This way
all three fields are searchable. I also set ValueSeparator=”,” so that
it could handle multiple values.

Right now it sends all the data to the client, but I’m adding in a
XMLHttp system that pulls the data dynamically, like google’s new autocomplete search feature.  That should make for a pretty powerful control. Here’s a preview:

AutoComplete

The second control uses a lot of the above code, but does it with a
dropdownlist/combobox/autocomplete interface that’s pretty popular. I’d
like to combine this with the ability to have tabular data in the
dropdownlist. This may have to be two different controls, but it’d be
nice to have one really powerful dropdownlist control.

 

6 thoughts on “New Rich Controls

  1. Hello,

    we are currently using your editor in Kentico CMS. We would like to upgrade to version 3.0 and purchase the distribution/source code license. Unfortunately, PayPal does not support payments from our country. Could you please tell me if there’s some other way how to pay (Share-it or other software registration service)?

    I have already sent an e-mail to sales and placed a comment to another blog article, but I haven’t received any answer yet 🙁

    Thank you.

    Best Regards,

    Petr Palas

    CEO

    ==============================

    Kentico Software s. r. o.

    Martinkova 5

    602 00 Brno 2

    Czech Republic

    E-mail: petr.palas@kentico.com

    Phone: +420 533 309 021

    Mobile: +420 605 423 863

    U.S. Toll Free: 1-888-225-2767

    Skype: kentico

    WWW: http://www.kentico.com">http://www.kentico.com

    Blog: http://www.kentico.com">http://www.kentico.com/blog

    ==============================

    we help you deliver better web sites

  2. It’s coming really well. I had a version done, but then I realized that it would need to have callbac functionality to really be worthwhile. I worked on porting the ASP.NET 2.0 callback framework to 1.x this week and I made a simple combox box with it. Now that that’s done, I can combine the two.

    JD

Comments are closed.