cancel
Showing results for 
Search instead for 
Did you mean: 

checkboxes in ITS (again)

Former Member
0 Kudos

Well, I thought everything was OK, but . . .

My checkboxes in ITS are still misbehaving. Here's how I express one, for example:

<input type=checkbox name="`REC_IDS-HEAT_TREAT_LOT_IND[j].name`" value="`REC_IDS-HEAT_TREAT_LOT_IND[j].value`" `if(REC_IDS-HEAT_TREAT_LOT_IND[j].selected)` checked `end`>

The checkbox is multiply-occurring in a control, also, but it is not a line selector. When I check the checkbox, its value is never passed to the ABAP program.

Also, I had heard it suggested that there is some sort of template that can be used, presumably with the Web Dynpro. Unfortunately, I think we're only at the 4.6 version of ITS (which is also the version of SAP we're running.)

Any suggestions? Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

try to use this:

<INPUT TYPE="HIDDEN" name="zoda-check[`i`]" VALUE=" ">

<INPUT TYPE="CHECKBOX" name="zoda-check[`i`]" VALUE="X" `if ( zoda-check<i> == "X" )` checked `end` >

Gianluca

Answers (0)