Hi,
I have a grid cell with combo type
it relates to my DB field “CONTENT_VALUE”
I would like to show Content Display Name after Load data to Grid.
The Content Display Name is kept in another definition table.
i.e.
Content Display Name (Definition Table 1: User Name):
Richard (value = 0)
Lulu (value = 1)
Peter (value = 2)
Content Display Name (Definition Table 2: Book Name):
Book1 (value = 0)
Book2 (value = 1)
Book13 (value = 2)
Content Value filed in myGird (Real Link Table: Parameter):
Table Name | Content Value
User Name 0 (I want to show Richard)
Book Name 1 (I want to show Book2)
User Name 2 (I want to show Lulu)
User Name 3 (I want to show Peter)
Book Name 2 (I want to show Book13)
how to achieve for the grid keeping “CONTENT_VALUE” but
show Content display name in that field (with Combo type)?
At last, I have to save the “CONTENT_VALUE” to DB.
Regards