This question is locked. New answers and comments are not allowed.
Hy,
is any way, for DataForm and EditorType.AutoCompleteEditor, that AutoCompleteEditor has list of custom class and not list of string?
Example:
I have classes for Book and Worker, I would like to use for author AutoComplete whick have list of WorkerRecord.
public class BookRecord{
[DataSourceKey("BookName")]
string Name;
[DataSourceKey("Author")]
WorkerRecord author;
}
public class WorkerRecord{
string Name;
string Surname;
}
this.dataForm.RegisterEditor("BookName", EditorType.TextEditor);
this.dataForm.RegisterEditor("Author", EditorType.AutoCompleteEditor);
Tnx for all information.
Regards,
Jernej
