oracle - add item inside Interactive Report Region -
i need add text box @ top of inetractive report region or between action bar , report itself. tried make irr without heading not successful in either. help
you need create dynamic action fired on page load , set execute javascript code posted below:
document.getelementbyid('apexir_toolbar').innerhtml = document.getelementbyid('apexir_toolbar').innerhtml + '<label for="p5_x" class="uoptional"></label></td><td align="left" valign="middle"><input type="hidden" name="p_arg_names" value="11759631789729827" /><input type="text" id="p5_x" name="p_t01" class="text_field" style="margin:5px" value="" size="30" maxlength="4000" />';
or using oracle-apex 'jquerysh' notation:
$x('apexir_toolbar').innerhtml = $x('apexir_toolbar').innerhtml + '<label for="p5_x" class="uoptional"></label></td><td align="left" valign="middle"><input type="hidden" name="p_arg_names" value="11759631789729827" /><input type="text" id="p5_x" name="p_t01" class="text_field" style="margin:5px" value="" size="30" maxlength="4000" />';
Comments
Post a Comment