Reputation: 3941
I have an Interactive Grid with a lot of columns and APEX fits them all on the screen making them way to small to be useful. How can I give them a default width and make them go off the screen with a scroll bar?
Changing the Width
parameter for a column in the Appearance
secion has no visual effect.
I'm using APEX 5.1
Upvotes: 4
Views: 6620
Reputation: 519
I know it's not the perfect solution.. but here is what I did:
,p_width=>xx
change xx with a number, save the file, import the page back.
it's way easier than using ACTION menu IMHO
Upvotes: 0
Reputation: 132570
You need to set the Minimum Column Width property for each column in the Interactive Grid's Actions menu:
Once done, you can use Actions>Report>Save to save these settings permanently. The result (I just did this for 2 columns):
Upvotes: 6