I am trying to find out if it's possible to customise what gets shown when I hover over any of the properties inside the Data Panel (inside the Spotfire Analyst). The current behaviour is to show the name of the property itself but I would like to change it so it shows a description showing what the property means.
According to TIBCO community, the option to see a description upon hover over is available in Spotfire 10.3. The version I am running is 10.0.
Related
I have a title component(touch-ui) in my project and made the title field mandatory by setting required(boolean) – true at the title property level. Now, when we save the dialog with an empty title field, validation fires up, but the triangular icon overlaps the description icon in the component. See the screenshot attached. Is there any way to resolve this?
Seeing the same behavior in We.retail title component.
It's the same in AEM 6.4. I've kind of assumed this was by design, so that more attention is drawn to the error.
If you look at the JavaScript behind the validation logic, you'll notice that the description icon receives the u-coral-screenReaderOnly CSS class as soon as a validation error appears, which results in its disappearance. It's not that the error icon overlaps the info one. The latter is explicitly hidden from sight.
This appears to be part of the Coral UI 2 client library. This isn't something you could fix on your own (an attempt to do that would be tricky and not maintainable). If you need this behaviour changed, you could try your luck contacting Day Care. It does look like a deliberate feature though.
I had setup the Endicia label sever in NetSuite, but I'd like to do some modify on the label.
I was customizing the NetSuite Standard Shipping Label PDF/HTML Template and marked it as PREFERRED, but it doesn't affect to the label. The information on label still incorrect.
Does anyone know how to find out the correct label template in NetSuite or who has similar issue, how do you solve this issue.
Thanks
In order to change which shipping label is printed you need to Edit the Shipping Label Transaction Form. You can navigate there by going to Customization>Forms>Transaction Forms. Customize the Shipping Label form, select the Printint Type (in your case it sounds like it would be Basic), and then in the PDF Layout Dropdown menu, select the Shipping Label PDF you customized. Make sure this customized Transaction Form is marked Preferred, as only the Preferred shipping label prints from the Item Fulfillment record.
I'm having an issue following this lesson exercise here's an image of the instructions. When I have the edStatus field selected the enable property is not available for me to change.Here is an image of the layout editor with edStatus selected. Other fields have the enable ExtProperty but this specific field I can't locate it to complete the exercise. Any input would be greatly appreciated. Thank you
Just realized that you can set the enabled property even if not listed via the layout editor through the source code. Hopes this helps anyone else stuck on this issue.
I have created a custom content type ContactForm and I'm using the Custom Forms module.
Is there a way to override the Create.cshtml file only for the ContactForm?
I tried Create-ContactForm.cshtml but it's not working.
If you want alternate view to be displayed follow the steps.
1. Enable Designer tools module.
2. View the page where create.cshtml is displayed.
3. You will see see small minus sign in right bottom corner, click it to enable shape tracing.
4. Trace the shape for which you want alternate view.
5. check shapes tab, there will be multiple alternate options availbale. click on create for appropriate one.
6. find and edit that template in visual studio.
first of all read about alternates and shape tracing.
some reference for you.
http://devhammer.net/blog/Customize-Orchard-CMS-with-Designer-Tools
http://docs.orchardproject.net/Documentation/Alternates
I'm new to Domino Designer. I'm trying to modify an existing application which is running on a remote server. I create a blank xPage and view in browser and it works. I add a label and view in browser and it works. I add a combo box and setup a data source for my xPage. The data source is in the current application and I'm using a view. I setup my combo to point to that data source and specify BindTo value. I view it in browser and I get Error 500 "HTTP Web Server: Command Not Handled Exception" I can open the view that I've used and see all the data in the view. I can even add, edit, and delete from the view.
Ideas... Thnxs in advance.
Additional Info. I've added a "View" from "Container Controls" and used the same data source and the same view and it also works in the browser.
The error being printed is:
javax.faces.el.PropertyNotFoundException: Error getting property 'CompanyName' from bean of type lotus.domino.local.View
com.sun.faces.el.PropertyResolverImpl.getValue(PropertyResolverImpl.java:119)
com.ibm.xsp.el.PropertyResolverImpl.getValue(PropertyResolverImpl.java:144)
com.sun.faces.el.impl.ArraySuffix.evaluate(ArraySuffix.java:182)
com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:163)
com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:257)
com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:150) ....
This was already answered in the comments, but I want to write a better answer.
The problem in this case is that a view data source is being used for editing a document. Directly, this is not a possibility, though there are a few great ways to get around this. The first way, and my favorite, is to use an inline form. I think the Extension Library Demo database offers a few great examples of how to go about doing this. One way is to use a tooltip dialog. Another way is an inline form. A repeater is used and for every row in the view, a hidden panel can be made which contains the document data source and all field which are required to be changeable. By clicking on a button or link, the panel is made visible. This is my favorite variant because it is simple, quick, and generally looks great.
Another way to go about this is to have a view data source only, but use scripts to retrieve the document and set the values in the background and then save and release. It all depends on what you are trying to achieve.
My main recommendation is to look at the ExtLib demo and take a look at what they are doing there.