suscripción a normas

¿Quieres consultar siempre las normas más actualizadas?

Suscríbete a para tener acceso a las últimas versiones de las normas

265131 Resultados disponibles

Filtrar:

(130730)
(130350)
(4051)
UNE

UNE 30124:1960

En Vigor
1960-06-15
Reactivos para análisis. Acido fluorhídrico.
UNE

UNE 36102:1971

En Vigor
1971-07-15
Lingote de hierro o arrabio no aleado. Condiciones técnicas de suministro y recepción.
UNE

UNE 38853:1999

En Vigor
1999-09-15
Aluminio y aleaciones de aluminio. Determinación de estaño. Método volumétrico.
UNE

UNE 27371:1974

En Vigor
1974-10-15
Refuerzos simples PN 6.
UNE

UNE 32110:1995

En Vigor
1995-10-24
Carbón. Determinación de elementos mayoritarios y minoritarios en cenizas de carbón por espectrometría de absorción atómica.
UNE

UNE 30001:1957

En Vigor
1957-07-15
Productos químicos. Clasificación por calidades, definiciones y normalización.
UNE

UNE 34836:1986

En Vigor
1986-03-15
Leche y productos lácteos. Determinación del contenido en hierro. (Método fotométrico de referencia).
UNE

UNE 37220:1980

En Vigor
1980-06-15
Óxidos de plomo. Determinación del contenido en materias insolubles en una mezcla de ácido nítrico y agua oxigenada.
Preguntas frecuentes ¿Tienes alguna duda sobre nuestros productos?
Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> field.getValue().getString(locale)  [in template "34352066712900#33336#65792215" at line 30, column 26]

----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign value = field.getValue().getS...  [in template "34352066712900#33336#65792215" at line 30, column 9]
----
1<#if entries?has_content> 
2  <div class="faq-container"> 
3		 <style> 
4      .faq-container { margin-top: 20px !important; margin-bottom: 60px !important; max-width:800px; margin:0 auto; font-family:Arial,sans-serif; }  
5			.faq-container .faq-question.open { color: var(--brand-color-1, #1F57A3) !important; } 
6			.faq-container .faq-item { max-width: 900px; margin: 16px auto; padding: 14px; padding-bottom: 10px; border: 1px solid #DDE1E6; overflow:hidden; box-shadow:0 2px 4px rgba(0,0,0,0.1); } 
7			.faq-container .faq-question { background: none; cursor:pointer; border:none; 
8                      width:100%; text-align:left; font-size:20px; font-weight:400; padding-left: 0; font-family: SohoGothicPro-Regular; 
9                      position:relative; line-height: 24px; color: #21272A; } 
10      .faq-container .faq-question::after { content: url(/documents/d/global/ico-chevron-down); position:absolute; right:0px; top:50%;  
11				                          transform: translateY(-50%) scale(0.6); } 
12      .faq-container .faq-question.active::after { transform:translateY(-50%) scale(0.6) rotate(180deg); } 
13      .faq-container .faq-answer { max-height:0; margin-top:10px; padding: 0 20px; overflow:hidden; background:#fff; } 
14			  
15      .faq-container .faq-answer.active { max-height:500px; margin-top: 10px; padding-left: 0px; border-top: 1px solid #D0E0E480; } 
16      .faq-container .faq-answer-content { line-height:1.6; font-family: SohoGothicPro-Regular; font-size: 16px; font-weight: 400; line-height: 24px;  
17				                         text-align: left; color: #2D2D2B; padding-top: 12px } 
18    </style> 
19    <#list entries as entry> 
20			<#assign renderer = entry.getAssetRenderer() /> 
21      <#assign fields   = renderer 
22                          .getDDMFormValuesReader() 
23                          .getDDMFormValues() 
24                          .getDDMFormFieldValues() 
25			/> 
26			<#assign question = "" /> 
27			<#assign answer = "" /> 
28			<#list fields as field>         
29				<#assign name = field.getDDMFormField().getLabel().getString(locale) /> 
30        <#assign value = field.getValue().getString(locale) /> 
31				 
32        <#if name == "Pregunta"> 
33          <#assign question = field.getValue().getString(locale) /> 
34        <#elseif name == "Respuesta"> 
35					<#assign answer = field.getValue().getString(locale) /> 
36				</#if> 
37      </#list> 
38      <div class="faq-item"> 
39        <button 
40          type="button" 
41          class="faq-question" 
42          onclick="toggleFAQ(${entry_index})" 
43
44          ${question} 
45        </button> 
46 
47        <div id="faq-answer-${entry_index}" class="faq-answer"> 
48          <div class="faq-answer-content"> 
49            ${answer} 
50          </div> 
51        </div> 
52      </div> 
53    </#list> 
54  </div> 
55 
56  <script> 
57    function toggleFAQ(index) { 
58      const q = document.querySelectorAll('.faq-question')[index]; 
59      const a = document.getElementById('faq-answer-' + index); 
60      q.classList.toggle('open'); 
61			q.classList.toggle('active'); 
62      a.classList.toggle('active'); 
63
64  </script> 
65</#if>