I have this database table structure
datatable {
data_Id int;
data_description VARCHAR(200);
info_Id int;
}
infotable {
info_Id int; // Primary Key
info_description VARCHAR(200);
}
I want a ComboBox into my DynamicForm, so this display the info_description.
Thanks
datatable {
data_Id int;
data_description VARCHAR(200);
info_Id int;
}
infotable {
info_Id int; // Primary Key
info_description VARCHAR(200);
}
I want a ComboBox into my DynamicForm, so this display the info_description.
Thanks
Comment