Hi,
I am looking to get the actual HTML that some APEX views are generating at runtime.
Let's take APEX_APPLICATION_PAGE_ITEMS for example. I've got item P1_INPUT from application_id 150.
I am looking for an API that would return something like this :
get_item_html(application_id => 150, item_name => 'P1_INPUT') which would return something like
<input type="text" id="P1_INPUT" name="p_t04" class="text_field" value="" size="30" maxlength="4000">
Is this possible?
Thanks.