Radio group with dynamic help text in Oracle APEX 4.2 using CSS

Introduction

To show dynamic help text in radio group item in Oracle APEX 4.2 using CSS.

Procedure:

Step 1: Create Radio group item.

Step 2: Use below query in radio group LOV Source.

<<SQL Begins>>

SELECT

(‘<span style=”cursor:help” title=”‘

|| PRODUCT_DESCRIPTION

|| ‘”>’

|| PRODUCT_NAME

|| ‘</span>’) AS SHOW_VALUE,

PRODUCT_ID RETURN_VALUE

FROM

DEMO_PRODUCT_INFO

ORDER BY

1 );

<<End>>

Summary:

The User can show the custom tooltip message in the select list item.

 

Recent Posts