How to set Link object type to grid column??
Hello friends ,
I m using C# language. I want to set LinkedObjectType to the grid columns.So how can I set the Linked Obj type to the grid column?
Reguards ,
Mithun
David Nussböck replied
Hi,
it should look like this.
oGrid.Columns.Item(ColUID).Type = BoGridColumnType.gct_EditText; EditTextColumn col = (EditTextColumn)oGrid.Columns.Item(ColUID); col.LinkedObjectType = "2"; // Link to BusinessPartner
lgDavid