Hello Sir,
I have upgrad Infragistics vol 7.3 2007 to Infragistics vol 8.3 2008.
I Convert Using Project Upgrade Tool .. Now i Run the Web Page I Get the Error Message.
But in Before that is Older Version There is No Problem .
" WebCombo has the Editable property set to True;
therefore it must have equal DataTextField and DataValueField to be used as an editor
in an UltraWebGrid. "
I'm having the same issue (version 8.3.20083.1009). I left the property set to True since I need to allow the users to type in a value that may not be present in the current list. The code that binds the data to the webcombo is below, but I'm still getting the error (WebCombo has the Editable property set to True; therefore it must have equal DataTextField and DataValueField to be used as an editor in an UltraWebGrid.). Am I missing other settings?
wcFavProjs.DataSource = FavProjectsListwcFavProjs.DataValueField =
"ProjectDescription" wcFavProjs.DataTextField = "ProjectDescription"wcFavProjs.DataBind()