Why is this not working?
DECLARE
MouseItem VARCHAR2(80) :=
:system.mouse_item;
BEGIN
-- if the mouse is held over a button
-- item, show the help text for that
-- item in the toolbar text item
IF get_item_property(MouseItem,
ITEM_TYPE) = 'TEXT ITEM' THEN
:MIST_CALL.MC_GENDER :=
get_item_property(
MouseItem, HINT_TEXT);
END IF;
END;
My requirement is when a mouse is placed on an item, that item will display the options for that text.
Example:
Gender should display m for male; f for female when a mouse is over gender. This is not working.
What is wrong with it?
DECLARE
MouseItem VARCHAR2(80) :=
:system.mouse_item;
BEGIN
-- if the mouse is held over a button
-- item, show the help text for that
-- item in the toolbar text item
IF get_item_property(MouseItem,
ITEM_TYPE) = 'TEXT ITEM' THEN
:MIST_CALL.MC_GENDER :=
get_item_property(
MouseItem, HINT_TEXT);
END IF;
END;
My requirement is when a mouse is placed on an item, that item will display the options for that text.
Example:
Gender should display m for male; f for female when a mouse is over gender. This is not working.
What is wrong with it?