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
395
A very quick note on the JavaScript
posted

Just noticed something in Infragistics.Web.UI.ListControls.WebDropDown.js.igDropDown.js which looked a bit odd:

In createItem under $IG.DropDownItemCollection.prototype, the properties are initialized:

var length = $IG.DropDownProps.Count;

...shouldn't that be $IG.DropDownItemProps instead? No big deal, but it's just making more blank properties than it needs to if that's the case.

--=- Ritchie Annand