Coding Duchess
Coding Duchess

Reputation: 6909

Oracle APEX: how to select a default value of a radio group

I have a radio group based on LOV with two options. I want to make first option selected by default.

I tied setting the default value to a static value but that did not work and radio group still comes up with nothing selected on page load. How can I accomplish that?

Upvotes: 0

Views: 2327

Answers (1)

Tony Andrews
Tony Andrews

Reputation: 132580

Setting the default is the correct way. Most likely you have defaulted the display value you want? It needs to be the return value (e.g. DEPTNO not DNAME).

Upvotes: 1

Related Questions