[msdyncrm_twig]
{% fetchxml collection=”products” cache=”PT30M” %}















































{% endfetchxml %}

{% for product in products.results.entities %}

{{ currentrecord.name }}

{% if ‘oled’ in product.oea_subjectname|lower or ‘tft’ in product.oea_subjectname|lower or product.oea_subjectname == “Graphic LCD” or product.oea_subjectname == “Character LCD” or product.oea_subjectname == “Chip on Glass LCD” %}

{{ product.oea_subsubject }} {{ product.oea_subject }} Display

{% else %}

{{ product.oea_subsubject }} Series {{ product.oea_subject }}

{% endif %}

{% if product.producttypecodename == “Discontinued” %}
{% if product.new_discontinuedate != null %}

This product was discontinued on {{ product.new_discontinuedate|date(“m/d/Y”) }}.
{% if product.oea_substituteproduct2id != null %}
Replaced by {{ product.oea_substituteproduct1id }} or {{ product.oea_substituteproduct2id }}.
{% elseif product.oea_substituteproduct1id != null %}
Replaced by {{ product.oea_substituteproduct1id }}.
{% else %}
{% endif %}

{% else %}

This product is discontinued.

{% endif %}
{% endif %}

{{ product.description|nl2br }}

{% if ‘oled’ in product.oea_subjectname|lower %}

Resolution

{{ product.oea_subsubject }} pixels
Color

{{ product.new_color }}
Outline

{{ product.new_modulesize }} (mm)
Viewing Area

{{ product.new_viewingarea }} (mm)

{% endif %}
{% if ‘tft’ in product.oea_subjectname|lower %}

Diagonal Size

{{ product.oea_subsubject }}
Resolution

{{ product.new_resolution }} pixels
Touchscreen

{% if product.new_touchscreen == “NONE” or product.new_touchscreen == null %}
NONE
{% else %}
{% if product.new_touchscreen==”PROJ CAP” %}
CAPACITIVE
{% else %}
{{ product.new_touchscreen }}
{% endif %}
{% endif %}
Overall Size

{{ product.new_modulesize }} (mm)
Brightness

{{ product.new_brightness }} nits
Contrast Ratio

{{ product.oea_contrastratio | number_format(2) | trim(“0”, “right”) | trim(“.”) }}:1
Interface

{{ product.oea_interface }}

{% endif %}
{% if product.oea_subjectname == “Graphic LCD” %}

Resolution

{{ product.oea_subsubject }} pixels
Outline (LxW)

{{ product.new_modulesize }} (mm)
Backlight Color

{{ product.new_backlightcolor }}
Operating Temperature

{{ product.new_temperature }}
Viewing Angle

{{ product.new_viewangle }} o’clock
Polarizer

{{ product.new_polarizer }}
Controller

{{ product.oea_controllerid }}

{% endif %}
{% if product.oea_subjectname == “Character LCD” %}

Resolution

{{ product.oea_subsubject }}
Overall Size

{{ product.new_modulesize }} (mm)
Backlight Color

{{ product.new_ledcolor }}
Operating Temperature

{{ product.new_temperature }}
Viewing Angle

{{ product.new_viewangle }} o’clock
Polarizer

{{ product.new_polarizer }}

{% endif %}
{% if product.oea_subjectname == “Chip on Glass LCD” %}

Resolution

{{ product.oea_subsubject }}
Size (OD)

{{ product.new_modulesize }} (mm)
Backlight Color

{{ product.new_backlightcolor }}
Temperature Range

{{ product.new_temperaturerange }}
Viewing Angle

{{ product.new_viewangle }} o’clock
Polarizer

{{ product.new_polarizer }}
Controller

{{ product.oea_controllerid }}

{% endif %}
{% if ‘capacitor’ in product.oea_subjectname|lower or ‘quencher’ in product.oea_subjectname|lower or ‘filter’ in product.oea_subjectname|lower or ‘spd’ in product.oea_subjectname|lower %}

{{ product.subsubject.oea_longdescription|raw }}

{% endif %}

{% if ‘oled’ in product.oea_subjectname|lower or ‘tft’ in product.oea_subjectname|lower or ‘lcd’ in product.oea_subjectname|lower %}
{% if product.displayproductimage.annotationid != null %}

{{ product.productnumber }}

{% else %}

{{ product.productnumber }}

{% endif %}
{% else %}
{% if product.noisesurgeproductimage.annotationid != null %}

{{ product.productnumber }}

{% else %}

{{ product.productnumber }}

{% endif %}
{% endif %}

${{ product.productsampleprice.oea_price }}
All prices USD

{% if ‘oled’ in product.oea_subjectname|lower or ‘tft’ in product.oea_subjectname|lower or ‘lcd’ in product.oea_subjectname|lower %}

{% else %}

{% endif %}

{% endfor %}

[/msdyncrm_twig]