Hi,
I have a file.ds.xml, I'm using eclipse for a project.
My code before:
[HTML]
<field name="file_status" type="enum" required="true">
<title>
<fmt:message key="ds_pricer_file_to_process_file_status" />
</title>
<valueMap>
<value ID="Loaded"><fmt:message key="ds_pricer_file_to_process_file_status_uploaded"></fmt:message></value>
<value ID="Processed"><fmt:message key="ds_pricer_file_to_process_file_status_processed"></fmt:message></value>
<value ID="Priced"><fmt:message key="ds_pricer_file_to_process_file_status_exported"></fmt:message></value>
</valueMap>
</field>
[/HTML]
My code after Shift+Ctrl+F
[HTML]
<field name="file_status" type="enum" required="true">
<title>
<fmt:message key="ds_pricer_file_to_process_file_status" />
</title>
<valueMap>
<value ID="Loaded">
<fmt:message key="ds_pricer_file_to_process_file_status_uploaded"></fmt:message>
</value>
<value ID="Processed">
<fmt:message key="ds_pricer_file_to_process_file_status_processed"></fmt:message>
</value>
<value ID="Priced">
<fmt:message key="ds_pricer_file_to_process_file_status_exported"></fmt:message>
</value>
</valueMap>
</field>
[/HTML]
After this change, the valueMap stopped working properly...
Can you check this please?
Regards
Jean-Philippe
I have a file.ds.xml, I'm using eclipse for a project.
My code before:
[HTML]
<field name="file_status" type="enum" required="true">
<title>
<fmt:message key="ds_pricer_file_to_process_file_status" />
</title>
<valueMap>
<value ID="Loaded"><fmt:message key="ds_pricer_file_to_process_file_status_uploaded"></fmt:message></value>
<value ID="Processed"><fmt:message key="ds_pricer_file_to_process_file_status_processed"></fmt:message></value>
<value ID="Priced"><fmt:message key="ds_pricer_file_to_process_file_status_exported"></fmt:message></value>
</valueMap>
</field>
[/HTML]
My code after Shift+Ctrl+F
[HTML]
<field name="file_status" type="enum" required="true">
<title>
<fmt:message key="ds_pricer_file_to_process_file_status" />
</title>
<valueMap>
<value ID="Loaded">
<fmt:message key="ds_pricer_file_to_process_file_status_uploaded"></fmt:message>
</value>
<value ID="Processed">
<fmt:message key="ds_pricer_file_to_process_file_status_processed"></fmt:message>
</value>
<value ID="Priced">
<fmt:message key="ds_pricer_file_to_process_file_status_exported"></fmt:message>
</value>
</valueMap>
</field>
[/HTML]
After this change, the valueMap stopped working properly...
Can you check this please?
Regards
Jean-Philippe
Comment