Bug 413738 - Preserve character case in UI for node labels
Summary: Preserve character case in UI for node labels
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: Sapphire (show other bugs)
Version: unspecified   Edit
Hardware: PC Linux
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-07-25 10:44 EDT by Konstantin F. CLA
Modified: 2021-11-19 09:22 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Konstantin F. CLA 2013-07-25 10:44:50 EDT
Hey,

the first character is transformed to upper case for node labels. For example:

<editor-page>
  <root-node>
    <node>
      <label>${Id}</label>
      <section>
        ..
      </section>
    </node>
  </root-node>
</editor-page>

Sometime is necessary to keep the actual content like for ids. Propably some expression language function like preserver() would be nice:

<editor-page>
  <root-node>
    <node>
      <label>${preserve(Id)}</label>
      <section>
        ..
      </section>
    </node>
  </root-node>
</editor-page>

For more information check this eclipse forum thread http://www.eclipse.org/forums/index.php/t/490153/

Thank you!

Kon