Problem creating second row selector on a Classic Report
I am working with APEX 4.2 on Windows. APEX is configured with the Embedded PL/SQL Gateway.I have created a master-detail form. The detail report contains the standard row selector checkbox to accommodate multi-row deletes. I am trying to create a second row select to be used for a different purpose. To create the second row selector column, I modified the report's select statement by adding the following:
select apex_item.checkbox2(20,lookup_value_id) "CHECK$02",
......
Adding the apex_item to the select statement does create the additional report attribute and, after changing the attribute to Standard Report Text, the checkbox appears. However, when the second row selector is checked, the row is not highlighted. I have also noticed that the resulting HTML for the second row selector is quite different that it is for the automatically generated row selector (see below).
select apex_item.checkbox2(20,lookup_value_id) "CHECK$02",
......
Adding the apex_item to the select statement does create the additional report attribute and, after changing the attribute to Standard Report Text, the checkbox appears. However, when the second row selector is checked, the row is not highlighted. I have also noticed that the resulting HTML for the second row selector is quite different that it is for the automatically generated row selector (see below).
0