Adding Html tag into the title of the Tree query in Oracle APEX -
i have requirement make few text in title of tree query in oracle apex bold adding b tag. when that, tag displayed @ front end. query mentioned below. not want see b tag, rather want text enclosed b tag bold. please help.
select case when connect_by_isleaf = 1 0 when level = 1 1 else -1 end status, level, case when level = 1 questions else '<b>' -- comes in front end not want || flow_condition || '</b>' || ' - ' || questions end title, null icon, question_id value, null tooltip, --null link apex_page.get_url( p_page => 401, p_items => 'p401_question_id', p_values => question_id, p_clear_cache => 401 ) link ( select mmq.*, mmm.flow_condition msd_mc_questions mmq left outer join msd_mc_par_chld_mapping mmm on ( mmq.parent_id = mmm.parent_question_id , mmq.question_id = mmm.child_question_id ) ) start parent_id null connect prior question_id = parent_id order siblings questions
Comments
Post a Comment