Hi,
I am using new
ASP.NET Beta version. I could find simple example for
combo implementation at
http://www.ebusiness-apps.com/products/combobox/embeddedmenus/
but couldn't find for ntb:ComboColumn inside nitobi grid. My
requirement is preety simple I want to bind combo column to a
hardcoded list. When user starts typing into it, it should show the
matching values like intellisesnse. My grid is something like:
<ntb:Grid ID="TravelerGrid" runat="server" Width="580" Height="250"
Mode="locallivescrolling"
AllowAddRow="true" AllowDeleteRow="true"
Resizable="Fixed" ShowCellToolTips="true"
DataSourceId="TravelerData"
LiveScollingMode="Leap" Theme="nitobi">
<Columns>
<ntb:BoundColumn Name="Last Name"
HeaderText="Last Name" DataField="LastName" Width="100">
</ntb:BoundColumn>
<ntb:BoundColumn HeaderText="First Name"
DataField="FirstName" Width="100">
</ntb:BoundColumn>
<ntb:BoundColumn HeaderText="Title"
DataField="Title" Width="60">
</ntb:BoundColumn>
</Columns>
</ntb:Grid>
I want to make my 'Title' column as dropdown.
Please let me know if you have any idea about it.