Oracle Apex: Help Text Option for Interactive Report - oracle

I love how you can set either inline or standard help text on page items. Unfortunately the only current region in APEX (Universal theme) that supports this functionality out of the box is new interactive grid.
But even here it is not ideal as it sits under Actions menu -> Help and contains additional text about IG functionalities which might be not what you want to show anyway.
Does anyone know of a work around in which I can set help text on an interactive report?
Thanks

Just set it in column's property palette (left screenshot). Then run the report, click column's header (1), click the question mark (2) and - here's your help (3):

So I found another way that better represents what I wanted to display to my users. If you create a display only text field above your interactive report with the appearance template = Optional - Above. Then add this inline CSS to your page:
label[for="PX_YOUR_PAGE_ITEM"], #PX_YOUR_PAGE_ITEM {
font-size: 16px !important;
font-weight: bold !important;
}
The page item will now display as the region header (Display Only Form Field). Now you just add your help text and now you have a pretty, functional, region header with help text attached. (Sorry I can't embed images into my answer yet so plz up vote if you found this solution helpful).
*Note: In the images I have two region titles that can display help text. You must have a CSS block for each region title.
Display Only Form Field
Help Text Active

Related

Accessibility error in offcanvas element in Joomla site

I have a problem with a validation error to http://www.tsiapos.gr/ (Joomla 3.9.10 - yootheme template0
https://wave.webaim.org/report#/https://tsiapos.gr/
which is related to empty link in "offcanvas"
I don't know where to find the code and how to fix it. Thank you.
That looks like your menu button which is only visible in responsive mode. If I increase my font size or run on mobile, then I see it.
There are two problems with the menu button. The first is that it doesn't have a label that a screen reader can announce. That's the error that WAVE is pointing out. You can fix that by adding an aria-label to your link.
The second problem that WAVE didn't find is that the "state" of your menu (expanded or collapsed) also needs to be conveyed. You do that with aria-expanded. Set the value to "false" when the menu is closed and "true" when the menu is open.
And if you want to get picky, there's a third problem that you're using a link instead of a button. A link should be used for navigation, opening a new page, not for an "action". I'd recommend changing your menu to a <button>.
If you want to use an <a> then you should add role="button" and make sure the space key can be used to select the link. By default, links only allow the enter to select them but a button allows both space and enter.

Sitecore page editor dropdown

I would kindly ask for your help :) From couple of days I am trying to achieve "linked" custom field in content editor and dropdown in page editor.
Basically I want to have dropdown in page editor and content editor which are responsible for a same thing.
In my c# code i have enums which represent directions. I created custom field which accepts assembly and class with overridden onload method and successfully populate dropdown values in the content editor. So far so good but i have no idea how to create dropdown which will represent the same functionality inside page editor.
So please give me any ideas...
Judging from your reply to my comment you need to think of the following: How is my field value being rendered onto a page?
If you are always using 1 control to do this then you just need to ensure that this control has 2 different rendering modes depending on the Context.PageMode
But as I understand it you want this dropdown to also appear when someone renders your custom field using a <sc:FieldRenderer>. In this case you'll need to look into the RenderField pipeline of Sitecore. There you find a processor called RenderWebEditing. Possibly through some manipulation here you can get your dropdown appear as you wish.

Programatically hiding images in Telerik RadGrid image columns

Greetings,
I've got a RadGrid populated with data from a DB. I've also got an image column which is to display an icon based on whether or not a specific boolean property (called IsDirty) of the object populating the row is true or false. If it's true, show the icon in the image column; if not, show nothing. The icon is the same for every row.
What I'm wondering is if and how this can be done. The best solution I've come up with so far is a hack that would change the image source path based on the value of IsDirty, but this isn't really acceptable, since my app is skinnable and showing a blank image would ruin the look.
Thanks in advance for any help.
I know a help topic that may get you started - it is located here:
http://www.telerik.com/help/aspnet-ajax/grdconditionalimagedisplayingridcolumn.html
Dick

Two Column Article content Joomla

How to make some of article when I click readmore the paragraph not show
to the bottom but to the right side...
Here's the illustration screenshot:
http://www.oymo.com/upload/uploads/collumn-artikel.jpg
You can't do proper columns - ie. when the text flows from the bottom of one column it moves to the top of the next, without use of CSS3 (which isn't widely supported). You could probably do something with a bit of mootools or jquery as an alternative.
However, if you just want to show the intro text in one div and the main text in another (something like http://www.kodaklens.co.uk/mobile/) then you need to modify your template /templates/templatename/html/com_content/article/default.php, by creating your required 'static' layout and then loading the different article pieces into each container, but this won't help with text flow.

How to set header and footer in print layout

I have a very simple requirement: I want to show a header and footer in print layout of a view. One approach I can use is to manipulate the height of the page and display some text fields at appropriate positions as header and footer, but I think there must be smarter way to do this in cocoa.
Can any one tell me- is there any default method to achieve this in cocoa or some smarter way to do this?
To be more precise ... I want to show page number on center at footer such that if print layout consists of n number of pages it should display: page 1 of n, page 2 of n and so on !
I am able to resolve it by sub-classing NSView and coding in - (void)drawPageBorderWithSize:(NSSize)borderSize...
Now I have a complex scenario: I have prepared a view on top which contains some images and text fields. I want to set it as header in all pages in print layout, but firstly I want to know is it possible ? If yes then how??
Can anyone show me some direction to achieve it?
Thanks,
Miraaj

Resources