cancel
Showing results for 
Search instead for 
Did you mean: 

How to set Link object type to grid column??

Former Member
0 Kudos

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

Accepted Solutions (1)

Accepted Solutions (1)

Nussi
Active Contributor
0 Kudos

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

Former Member
0 Kudos

Thanks David.

Answers (0)