cancel
Showing results for 
Search instead for 
Did you mean: 

checkbox in a matrix column

CarlesCostaMun
Participant
0 Kudos

Hi everybody

How can I load values in a checkbox in a Matrix?

In screen painter, i have a matrix with two columns: one for task and anohter for comments.

The task it has to be a checkbox with the values from ddbb but i haven't found how to do it in screen painter. I set:

alias = U_...

Databound = true

displayDesc= true

table= @name of table

title = title

Type = it_combo_box

UniqueId= task

But the checkbox don't load the values...

Thanks

Carles

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Carles

You may set ValOn and ValOFf property to Y and N.

Regards

János

CarlesCostaMun
Participant
0 Kudos

Thanks János,

Where is this? I dont' see it in screen painter?

Have i to set it by code?

Thanks

Former Member
0 Kudos

Hello Carles

The val_On val_Off I don't believe is editable using ScreenPainter. You may have to open the srf file using another tool like Visual Studio (srf is actually an xml file). Below is a sample section of an srf file similar to the one you are looking for.


<specific caption="No Points" AffectsFormMode="1" val_on="Y" val_off="N">
    <databind databound="1" table="Source Name" alias="Field Name" />
</specific>

I hope it helps.