Best AEM Tools to Buy in October 2025

AEM 30-0300 X-Series Wideband UEGO AFR Sensor Controller Gauge
-
MODERN DESIGN: STRIKING FACEPLATE WITH 87% LARGER DISPLAY FOR VISIBILITY.
-
ADVANCED DATA OUTPUT: 0-5V, RS232, AND AEMNET FOR SUPERIOR DATA LOGGING.
-
OPTIMAL TUNING: FAST RESPONSE WITH X-DIGITAL TECH FOR SAFER, POWERFUL TUNES.



AEM 30-0311 X-Series OBDII Gauge
-
READS DTCS & DATA FROM 2008+ VEHICLES VIA OBDII FOR ACCURACY!
-
EASY INSTALLATION WITH SECURE OBDII CONNECTOR – PLUG & PLAY!
-
COMPACT GAUGE DESIGN FITS ANYWHERE – SLIM & VERSATILE MOUNTING!



AEM 30-0306 X-Series Boost Pressure Gauge 52mm, Black
- HIGH ACCURACY FOR PRECISE MEASUREMENT AND PERFORMANCE TRACKING.
- SLEEK DESIGN ENHANCES AESTHETICS AND INTEGRATES SEAMLESSLY IN VEHICLES.
- DURABLE CONSTRUCTION ENSURES LONG-LASTING RELIABILITY AND PERFORMANCE.



AEM 30-2056 12 Position Universal Trim Pot
- WEATHERPROOF DESIGN WITH INSULATED COLOR-CODED FLYING LEADS.
- EASY INSTALLATION WITH 3/8 MOUNTING HOLE AND JAM NUT.
- DURABLE BUILD FOR RELIABLE PERFORMANCE IN ANY ENVIRONMENT.



AEM 30-4110NS Digital Wideband UEGO Gauge without Sensor , Black , 6.025 inches
- COMPREHENSIVE GAUGE KIT-INCLUDES WELD-IN BUNG AND VERSATILE DESIGN.
- CUSTOMIZABLE APPEARANCE WITH INTERCHANGEABLE FACEPLATES AND BEZELS.
- RELIABLE RS232 OUTPUT FOR ENHANCED DATA MONITORING AND ANALYSIS.



AEM 30-0301 X-Series Pressure Gauge, Black, 52mm
- ACCURATE READINGS FOR PEAK PERFORMANCE MONITORING.
- SLEEK DESIGN ENHANCES ANY DASHBOARD AESTHETIC.
- DURABLE CONSTRUCTION FOR LONG-LASTING RELIABILITY.


In Adobe Experience Manager (AEM), if you want to hide inherited dialog properties, you can do so by specifying the "sling:hideProperties" property in the component's cq:dialog node. This allows you to hide certain properties that are inherited from a higher-level component or template. By defining which properties you want to hide in the "sling:hideProperties" property, you can customize the dialog to show only the properties that are relevant to your specific component. This can help declutter the dialog and make it easier for authors to use.
What is the process for hiding inherited dialog properties on AEM?
To hide inherited dialog properties on AEM, you can follow these steps:
- Open the component's dialog in CRXDE or AEM’s Touch-UI.
- Identify the properties that are inherited from the parent component or template.
- Add a new property called “sling:hideResource” with a value of “true” to the properties you want to hide.
- Save the changes and refresh the component dialog.
- The properties with “sling:hideResource=true” will be hidden in the dialog, and only the locally defined properties will be visible.
By following these steps, you can effectively hide inherited dialog properties on AEM and customize the dialog to meet your requirements.
How can I streamline the process of hiding inherited dialog properties on AEM?
One way to streamline the process of hiding inherited dialog properties on AEM is to use a custom dialog implementation. By creating a custom dialog, you can control which properties are inherited and which should be hidden or modified.
Here are steps you can take to streamline the process:
- Create a custom component dialog: Instead of using the default dialog for your components, create a custom dialog that only includes the properties you want to display. This can help streamline the process of hiding inherited dialog properties.
- Use a design dialog: If you want to hide properties that are inherited from a design, you can create a design dialog that only includes the properties you want to display. This can help separate the design-specific properties from the component-specific properties.
- Configure inheritance rules: In AEM, you can configure inheritance rules to specify which properties should be inherited and which should be hidden. You can use the inheritance tab in the component properties dialog to control these settings.
By following these steps, you can streamline the process of hiding inherited dialog properties on AEM and create a more user-friendly experience for content authors.
What is the recommended approach for handling inherited dialog properties on AEM?
The recommended approach for handling inherited dialog properties on AEM is to use the "cq:Dialog" mixin node type in the dialog definition. By using this mixin, properties can be inherited from parent components without explicitly declaring them in the child dialog node. This allows for a more flexible and streamlined approach to dialog inheritance.
Additionally, it is advisable to carefully plan and organize the dialog structure and properties in a way that makes sense for the component hierarchy and inheritance structure. This includes defining a clear naming convention, grouping related properties together, and avoiding unnecessary duplication of properties.
Finally, it is important to document and communicate the dialog inheritance structure to team members to ensure consistency and clarity in the development process. This can help prevent confusion and errors when working with inherited dialog properties.
What is the best way to hide inherited dialog properties on AEM?
One way to hide inherited dialog properties on AEM is by creating a new dialog and copying over only the specific properties that you want to include. This way, the inherited properties will not be visible in the new dialog.
Another option is to use dialog global settings to hide inherited properties from being displayed in the dialog. You can do this by configuring the properties to not be displayed or disabled in the global settings.
Additionally, you can use design mode to hide inherited dialog properties. Design mode allows you to customize the look and feel of the dialog box, including hiding certain properties.
Overall, the best way to hide inherited dialog properties on AEM will depend on the specific requirements and use case of your project.
How can I prevent certain dialog properties from being inherited on AEM components?
To prevent certain dialog properties from being inherited on AEM components, you can create a cq:dialog node in your component's cq:editConfig node. Then, you can specify the properties that you want to exclude from inheritance by setting their values to "IGNORE" in the cq:dialog node.
Here is an example of how you can prevent the title and description properties from being inherited on your AEM component:
- Add a cq:editConfig node under your component's jcr:content node:
<cq:editConfig jcr:primaryType="cq:EditConfig"/>
- Add a cq:dialog node under the cq:editConfig node and specify the properties to exclude from inheritance by setting their values to "IGNORE":
<cq:editConfig jcr:primaryType="cq:EditConfig" cq:dialogPath="./dialog" />
<cq:dialog jcr:primaryType="nt:unstructured" title="My Component Dialog" jcr:title="My Component Dialog" xtype="dialog" extraClientlibs="[mycomponent.author]"
<content
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/container">
<items jcr:primaryType="nt:unstructured">
<title
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/textfield"
fieldDescription="Title of the component"
name="./jcr:title"/>
<description
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/textfield"
fieldDescription="Description of the component"
name="./jcr:description"/>
</items>
</content>
</cq:dialog>
By setting the value of these properties to "IGNORE" in the cq:dialog node, they will no longer be inherited by the component and will need to be defined specifically for each instance of the component.