I can't seem to figure out why, but my APEX page is showing "APEX.IG.SEARCH" as the search placeholder. How can I change this? I've looked through all of their docs and haven't found anything pointing to a fix.
If I have to, I can use JavaScript to change it, but wanted to see if there's an easier fix first. Also, on 5.0.4 of APEX
It is about *translating (Apex) messages" (https://docs.oracle.com/database/apex-18.2/HTMDB/translating-messages.htm#HTMDB14004). Search that page for APEX.IG.SEARCH; you'll find it under the Interactive Grid Messages Requiring Translation section (which is quite long).
So, what to do about it and how to change it?
while in App Builder, open your application
navigate to its shared components
in there, go to the Globalization section and click Text messages
click "Create text message" and set
Name: APEX.IG.SEARCH
Language: leave it as is (English, probably)
Used in JavaScript: leave it as is (Yes)
Text: put your own message in here; for example, "Enter search criteria and push the GO button"
Apply changes
If you run the page now, you should see the new text in the Interactive Grid Search's field.
Related
I have a problem in french translation of an application. The application is translated completely fine, but when we run an Interactive Report, the string showing current filter is still in English, not in French. See the following screen shot
Is there a way that we can translate the string showing filter text (in this example "Running" and "Highlight Failed")? Can someone please help with this?
Thanks in Advance.
Interactive Report and Interactive Grid settings are being set in the frontend rather than the backend where all the translation logic is located. Therefore, I don't think it is possible to do this with the standard APEX translation methods.
If you have a basic Report with only little customatization and you really need to translate these filters, I would suggest to create two Reports in the Backend, one for the english version, one for the french version, and use the language application item (usually FSP_LANGUAGE_PREFERENCE) to display one or another.
If you have a complicated report with several private reports or heavy customization, I would advise against this solution and just use both language to name your Report settings like you did in your example.
Another option would be to use Javascript to rename the display filter. Try $('.a-IG-controlsLabel[data-setting="highlight"]') to select the appropriate items. However, it will be kind of hard to find the correct event handlers to trigger this at the right moment.
I want to show a task module (not url) while bot installs (with tab) in the teams. Something like Text does, but a bit more interactive with drop downs and all.
I have referred to the link to create deep link for tab and paste the link here, in app-studio manifest editor:
But this doesn't seem to work. Only an empty pop up shows following this procedure.
Can someone correct me, where I am going wrong! TIA!
This "Text" screen is not showing a Task module, it's showing a custom Configuration page for the app's Tab installation. When you create an App that includes a Tab, you have the option of creating such a "Configuration" popup that gives the user the chance to configure how your tab will actually work. See here for more: https://learn.microsoft.com/en-us/microsoftteams/platform/tabs/how-to/create-tab-pages/configuration-page
Within that configuration page, you can show whatever web content you'd like. Showing an Adaptive Card is a bit of a strange scenario considering it's a web page, but you could conceivably do this using the adaptive cards js library inside the page (https://www.npmjs.com/package/adaptivecards)
I need to make style changes to Oracle apex IR (apex version 4.2). For that purpose where can i find the template of it. ? is it saved inside table or procedure ?
Interactive reports are held in a region and the region can have a template, but has no effect on its content, such as an IR.
While you can define report templates for classic reports, this is not possible for interactive reports.
You cannot control the structure (html) it puts out.
You can however change the style of it by applying CSS to the appropriate elements. You don't have need to alter the source it puts out. Defining selectors and using your browser tools to inspect everything you can definitely influence the look and feel.
Word of warning though: heavily applying CSS will bring some trouble when upgrading to apex 5, as IRs have been changed a lot. This means you'll have to change selectors quite a bit while also doing more setup on the IR.
If you'd supply more info on the kind of change you'd want to make to the IR, answers could be more specific and concrete.
You can find Oracle Interactive reports template from
PAGE RENDERING SECTION
Right Click your INTERACTIVE REPORT
Click Edit Report Attributes
Then template is under Layout and Pagination Section
But i doubt you can edit the template in there.
If you are looking for adding a template to be used in your report then follow these steps
Go to the Main Page of your application
Then go to Shared Components
Then Search for User Interface Section
Under this section, Click Templates, this is where you can add template for any type of item(report, region, page, etc..)
Read these article for customizing report template
http://www.apexninjas.com/blog/2011/03/customizing-report-templates/
http://rimblas.com/blog/2014/05/using-conditions-with-column-templates/
http://www.eberapp.com/pls/apex/f?p=BLOG:READ:0::::ARTICLE:5976400346831048
http://apex.shak.us/post/1145946801/fully-control-your-interactive-reports-toolbar
You can create new template under apex:
Application Builder/Application #/Shared Components/Templates
I need a custom control that show Like Google Docs into the top of my Page
...if another user see the currently XPages...
Have someone any suggest to realize this feature?
Into JSF runtime there are a List of XPages opened in all session?
Check out my openntf project document Locker
http://www.openntf.org/Internal/home.nsf/project.xsp?action=openDocument&name=XPage%20Document%20Locker
You could use this to lock the document but with a little modification you could also see people on the same Xpage.
Add people when they enter the xpage, remove them when they exit.
I would like to add in my web app ability to add comments to a specific word in the page. Something like the LaTex footnotes.
The UI I had in mind is, each word would be highlighted when the mouse hovers over it (or that the space after it is being highlighted), and when the user clicks, a textbox to enter the comment pops up near the place the comment would appear. After the user entered the comment a little number would appear after this word in the web page, and other users would be able to click on this number and reveal the comment.
The architecture I had in mind is, a client side javascript program that would handle the view. The model and the controller would be on the server. They would save the document in some textile-like format (say, StackOverflow's question's format), and would only verify permissions (ie users would only be allowed to add [1] (user-name) ... to the document body
).
That's the architecture and UI I had in mind, but I'm open to new suggestions.
Is there any similar component availible?
I have been developing one with similar features. I use jQuery as the main framework and build on it.
1.select text to add some footnote to it.
2.click on the bubble to show dialog for enter your comments.
3.text with comments highlighted. Mouse hover over to bring up the dialog window with comments
entered earlier, hover out to close dialog window.
(pics here)
It is not perfect now and I am trying to make it a plugin(javascript code) with JSP(maybe. it's coldfusion now.)
The best thing I found so is the digress plugin for wordpress which allows paragraph-based comments.