Hi,
I have a grid where I would like to have a foreignkeyfield/foreignkeyvalue mechanism, meaning I want to hold "id" values and display "name" values.
I have used this syntax for my column :
col.Field("SomethingId")..ForeignKeyField("Id").ForeignKeyValue("Name").DataSource(myData).Add();
and it works as intended, the problem is, that "myData" (the datasource) can be really big, and I wouldn't want to load it all, is there a way where to keep this foreignkeyfield/value mechanism without having to load the whole datasource ?
I'll gladly give you more informations if needed, or if I wasn't clear enough.
Thank you.
Remy