I am running into a situation in a ribbon group where the caption is not displaying at all. If I maximize the form and allow the ribbon to be bigger, the caption appears immediately. I have tried setting the TextTrimming property on the RibbonGroup to EllipsisCharacter, but that had no effect. What property should I be setting to get something to appear? See below:
The captions that are missing should be "Boxing" and "Adjust Job Quantity" respectively.
Hello Richard,
I tried to create a sample using the layout file you provided. However, I’m unable to do so as I’m getting an xml parse exception when using the “layout.xml” file. To fix this issue please try the below:
-Load the layout file (LoadFromXML) into a new application with just UltraToolbarManager on the form and see if that works. If it does, then zip the application and share it here.
I will further look into this issue as soon as I hear from you.
Can't you do that on your end? Are you saying there's something wrong with the file I sent to you?
I tried to load your xml file and I am also getting an error. Looks like the file has somehow become corrupted. Not sure how that could have happened.
It might be worth trying it on your machine just to see if you can load the same file into a ToolbarsManager in a new project with just an UltraToolbarsManager on a form. My guess is that it will not work for you, either, and that you will need to re-save the layout and try again. You might try saving it to binary as well as Xml, just as a backup.
Our developer finished reviewing Caption missing on items in Ribbon group issue. The size of the ribbon affects how tools are displayed. Tools on a ribbon have 3 possible sizes: Large, Normal, and ImageOnly. As the space available on the ribbon diminishes, the tools are systematically resized, going from Large -> Normal -> ImageOnly based on their current size. In this scenario, the ribbon is small enough that the tools within the Reports group have been resized down to ImageOnly. On the InstanceProps of each tools, there is a MinimumSizeOnRibbon property that provides the ability to specify what the smallest size mode the tool can be collapsed to. This same property can be set in the designer by right-clicking the tool, and setting the MinimumSize property in the context menu. In this case if you want to always display the tool captions, then you would have to set the MinimumSizeOnRibbon to Normal for all the tools on the ribbon. If you only set it on the tools in the Reports group, these tools will display captions, but other tools within the tabs will then be resized due to the available space.
Please let me know if you have any questions.
Thanks for sharing the sample. Using it, I have investigated Caption missing on items in Ribbon group issue, and I have asked our engineering staff to examine this further. To ensure that it will receive attention, I have logged this behavior in our internal tracking system with a Development ID of 257325. This will be assigned to a developer in a future sprint to review my investigation and confirm my findings or to offer a fix, or other resolution.
I will update you with any new information after the review.
Here it is4062.RibbonGrpToolCaption.zip
Please delete the bin and object folders from your sample application to reduce its size and zip it and send it to us. If you are still having issues sending the zip file to us then let me know. I will create a private case for you and will provide the public file sharing location via the case.
I believe SYSTEM, REPORTS are tabs in your sample application. I will implement the steps you suggested in these tabs to reproduce this issue as soon as I receive the sample.
Looking forward to hearing from you.
Sincerely,Sahaja KokkalagaddaAssociate Software Developer
I modified your sample project and zipped it up, but was unable to upload it to you (file too big maybe?). You will need to make all of the tabs in the ribbon visible. I also upgraded to Infragistics 18.1.
After making the above changes, run the project, go to the SYSTEM tab in the ribbon. Notice that the captions in the REPORTS group do not appear until the form is resized large enough to fit the entire caption.