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
175
Add items to WebCombo declaratively and from a sqldatasource
posted

I want to be able to declaratively add rows to the beginning of the list in a WebCombo like I can to an ASP:DropDownList.  In ASP.NET there is a property called AppendDataBoundItems that lets you append both static and dynamic rows to the drop down list.  Can I do this with the WebCombo control?  Microsoft defines the option as: "The AppendDataBoundItems property allows you to add items to the ListControl object before data binding occurs. After data binding, the items collection contains both the items from the data source and the previously added items."

John