I'm working on a project in xpages.
I want to make a view panel components displayed in French.The pager item is already displayed in French but the pager sizes item and pager expand item are written in English.
I would like to know if there is a way to change the language on these two items, either need it I create buttons to achieve the same functionality as these items?
Thanks
Select in <xe:pagerExpand section All Properties and put in properties collapseText and expandText your translated strings. If you have to support several languages then you have to calculate the string.
In <xe:pagerSizes you put your translation in property text.
Related
I'm relatively new to Hugo and mostly just using default values. The current theme provides Personas and Tags as taxonomy categories, and they appear at the bottom of the menu system in the left navigation bar. I know how to use weight to change the order of the other menus, etc., but I'd like to put these taxonomy categories at the top.
I've been reading through the .toml file, Hugo docs, etc., but I'm not a coder and some of it is hard to understand. Any suggestions on how I can do this? thanks.
Using hugo-0.69.0-2.fc32~bootstrap.x86_64
When I use OpenView in Domino Designer, all the Views are presented in the Menu Bar. How can I make sure that only one view is presented and at the same time do not hide the other Views so I can use them to other Hotspot Button. Thank you.
The easiest is to create an outline with the views. You can organize the views in expandable groups, specify icons for each view, and much more.
You then create a page where you insert the outline, set the fonts and formatting, etc.
Finally you create a frameset and put the page with the navigation menu in one of the frames.
I created a simple template with all this several years ago, you can find it at http://blog.texasswede.com/free-application-templateframework-for-notes/
Download it and take a look at how it's done there.
I'm using Callisto to add ratings to my app. Everything works fine but the tab navigation for this control.
Any idea about how to support tab navigation for this control, like the "Store" app for example? The idea is select the control (focus) and select the rating value with left/right keys (like a slider)
Thanks in advance!
The tab navigation works but it takes more tabs to hop from one rating item to another. I recommend you to use FocusWatcher class, you will be able to figure out the situation.
New to Orchard. I have been looking for some documentation on how the menus actually work. It appears that you can have hierarchical menus, but I cannot find any good information on this.
It took me a while to figure this out too. You can see how to create a navigational menu in this video (around 8:45, but i'd recommend watching the entire video).
Basically, you need to drag & drop an item below and to the right of another content item in order to make a nested menu item.
Yes, you can. Since 1.5 you can create hierarchical menus from Navigation admin screen. Hierarchy (and reordering) of items can easily be created by drag & drop.
Navigation screen is used to define your menus. In order to display a defined menu you need to put Menu Widget in the zone of your choice. When you create that widget you need to choose which menu is it going to display. Besides the choice of the menu, you can also choose some other optional parameters if you need to customize the display more (eg. display only certain level).
So I'm building a tool that allows a user to edit a whole bunch of preferences for various things. There are several groups of settings, too many to use a TabControl without creating arrow sliders to view all of the tabs, so I decided I would try and use a ListBox to list the groups of preferences, and then when they click on them, the settings that they can change show up to the right of the box.
I'm just not sure how to do this. Obviously it would invoke something in the OnSelectionChanged function of the ListBox, but I'm not sure where to go from there. Surely a dialog can have dynamic design, right? Would I mimic the creation of a tabbed-dialog where I create my designs and then bind them to the TabControl, and just do something similar for the ListBox? Again, it's not the ListBox itself that is dynamic. The user will click on "Settings A" from the ListBox, and to the right of the ListBox will be settings 1, 2, and 3 that each have textboxs/radios/checks.
Any hints on how I can accomplish this? I just think it looks nicer than having a whole bunch of tabs lined up across the top of the box. Thanks in advance to any brilliant minds who can help me out. I'm versed in C++, but I'm very much a beginner at VC++.
You can a vertical splitter with two panes:
one which contains the list
another one which contains the configuration dialogs you would normally use in a tab control
Each time the list selection changes you can load the appropriate dialog in the right pane. You can find a splitter tutorial here: http://www.codeproject.com/KB/wtl/wtl4mfc7.aspx