Posted by : Akshay Patil
Friday, 13 March 2015
Though there are multiple ways to do this, here is the
simple way to make tabular form read-only or disable in oracle apex.
Use following syntax to make tabular form column read-only
or disable.
       $(document.wwv_flow.f05).attr('disabled',true);
       $(document.wwv_flow.f05).attr('readonly',true);
                Where,
f05 is the name of the column.
                Oracle
Apex support only one tabular form on one page therefore undoubtedly                                      document.wwv_flow access the tabular form on our page.
                Therefore,
to identify the name of your tabular form column do following:
                1.
Right Click on column item
                2.
Select Inspect element.
                3. Use
the name shown in Inspect Element Window.