Hi,
I am trying to bind the Input Panel to an ADO.Net Entity Framework datasource.
However, the Input panel does not auto add all of the necessary controls. It seems to omit controls for nullable datatypes. I.e. Int?, DateTime? etc.
I have tried this at both runtime and design time.
========================
I.e. RUNTIME CODE
// Model is an ADO.Net Entity Data Model connecting to a SQL Server 2000/2005 database.
Model _myModel = new Model();
// Select all items from the Items in the Model.
var items = from item in _myModel.Items select item;
// Create new input panel and set datasource.
C1InputPanel panel = new C1InputPanel();
BindingSource bindingSource = new BindingSource();
bindingSource.DataSource = items;
panel.DataSource = bindingSource;