jquery - How to Show/Hide Column Values on Specific Rows in an Oracle APEX Report -


hoping can assist have interactive report following sample column/data:

    id   company    name          s     p     c     r     w     ---- ---------- ------------- ----- ----- ----- ----- -----     1    abc        harry         s           c     r     w     2    qaz        sam                 p     c     r     w 

basically, need means of being able show/hide individual column elements on per row/column basis , not whole column itself.

using above ir, each of column values beneath column headings s | p | c | r | w links.

so when user instance clicks "s" link against id. 1 record, need means of hiding column element "r" , showing column elements "c" , "w". in addition this, original "s" (for start), clicked turn on "p" (paused) link, alongside , "s" link switched off (updated in backend against id. 1 record.

so record id. 1, after clicking on "s", record should follows, keeping column headings intact rows.

i need appear (as below), when page requeried.

    id   company    name          s     p     c     r     w     ---- ---------- ------------- ----- ----- ----- ----- -----     1    abc        harry               p     c           w 

the same type of scenario applicable id. 2 record - if user clicks on "p", need hide column elements "r" , "w" id. 2 record only. @ same time, "p" link switched off , once again, "s" link appear/be switched on. id 2 record when clicked/requeried appear follows:

    id   company    name          s     p     c     r     w     ---- ---------- ------------- ----- ----- ----- ----- -----     2    qaz        sam           s           c             

hope above additions assist after.

would appreciate on how achieve above. need jquery/dynamic action click function unsure how target particular cells particular row clicked on.

thanks.

managed solve problem of tom using column within table, report based off, trigger required elements.


Comments

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

How to get multiresult with multicondition in Sql Server -