Just make sure to populate the options with the Return Value of a method you call yourself. The easiest is like this
In your form markup, use this as Options
In your form markup, use this as Options
<ff:StaticMethodCall type="Your.Helper.Type" method="GetListValues" />
And then have this code that you're calling.public class Your.Helper.Type
{
public static Dictionary<string, string> GetListValues()
{
using (var data = new DataConnection())
{
return data.Get<IYourType>().ToDictionary(e => e.Id, e => e.FirstName +" "+ e.LastName);
}
}
}