Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Region Display Selector problem in oracle apex 5

M.broMay 12 2015 — edited Jul 20 2015

Hi All,

I am Using Oracle Apex 5 and Database Version is 12c. I have 2 Problem

1. ) I have used REGION DISPLAY SELECTOR in my reports,I don't set any

Note : Remember Last Selection : Yes Means Last Selection report only loaded  Or NO means the first tab report to be loaded.


2.) I want change the format mask in charts like 250,000(default) to 2,50,000

Oracle Apex : https://apex.oracle.com/

WorkSpace :MBRO

Username :MANIK161@GMAIL.COM

Password : RND2015

Application Id :  33940 - Chart

This post has been answered by timothyscottchambers-Oracle on May 12 2015
Jump to Answer

Comments

843807
I don't know the exact cause of the problem, but as a -not so nice but it works- solution, I propose to add the following line right before the first c.repaint() call:
c.add(new JLabel());
843807
This may sound silly but are you using a layout manager? If not, why not? Setting positions is difficult and keeping the controls in the right place will be difficult. When you use a layout manager, you can programmatically "lock" the labels. Using BorderLayouts and GridBagLayouts are terrific. Check out this link, it helped me a lot.

http://developer.java.sun.com/developer/onlineTraining/GUI/AWTLayoutMgr/shortcourse.html

Just remember that you should decide how you want the labels to behave (should they resize and move or be fixed) and pick the layout that matches that behavior. Create a JPanel, set that layout and then add the JLabels...
843807
I added a null layout manager and everything stuck. One line of code. Ha ha that article on layout managers was good thanks.
1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 17 2015
Added on May 12 2015
4 comments
10,481 views