I looks like the solution is that... Thanks Greg.
public event MicroFour.StrataFrame.UI.IWebListControl.ListPopulatingEventHandler ListPopulating;
void IWebListControl.RaiseListPopulatingEvent(ListPopulatingEventArgs e)
{
if (ListPopulating != null) {
ListPopulating(e);
}
}
But now the IWebListControl.PopulateList(params object[] Parameters) interface method won't compile. The error that I'm getting is Argument '1': cannot convert from 'GKG.WebControls.sfRadComboBox' to 'System.Web.UI.WebControls.ListControl'
void IWebListControl.PopulateList(params object[] Parameters)
{
if (!this.DesignMode)
{
WebListControl.PopulateCombo(this, (MicroFour.StrataFrame.Tools.ITypeResolver)this.Page, Parameters);
}
}
I believe this is because the Telerik RadComboBox doesn't have System.Web.UI.WebControls.ListControl in it's inheritance hierarchy. Can any of the developers look into this because I would really like to use these controls with Strataframe.
Thank You