cancel
Showing results for 
Search instead for 
Did you mean: 

New Localized string not displayed from sc.Model.properties

bisana
Champ on-the-rise
Champ on-the-rise
Hi
  I have created custom properties named
sc:lddoctype
sc:nameofparty
sc:nameofotherparty
sc:project
sc:purpose

in one of my Custom Type Whitepapper "sc:whitepaper" and in scModel.properties I have defined values as

prop.sc_lddoctype=My Document Name
prop.sc_nameofotherparty=Name of Other Party
prop.sc_project=Project
prop.sc_purpose=Purpose
prop.sc_effectivedate=Effective Date
prop.sc_expirydate=Expiry Dare
prop.sc_governinglaw=Govt Law

and in share-config-custom.xml inside   "config evaluator="node-type" condition="cm:whitepaper"" above apperance tag I have added
          
          
      <field id="sc:lddoctype" label-id="prop.sc_lddoctype" />
      <field id="sc:nameofparty" label-id="prop.sc_nameofparty" />
      <field id="sc:nameofotherparty" label-id="prop.sc_nameofotherparty" />
      <field id="sc:project" label-id="prop.sc_project" />
      <field id="sc:purpose" label-id="prop.sc_purpose" />
But when I check docoument properties or when I go to advanced search option I cannot see the Localized values.
I would like to get advice on why my localized strings are not shown
Thanks
Joseph John
1 REPLY 1

bisana
Champ on-the-rise
Champ on-the-rise
Was able to solve it,
I was able to solve the issue by adding
  <title>Parameter Value </title>
while defining the properties of Custom Type
eg
<property name="sc:curvalue">
  <title>Currency Value </title>
<type>d:text</type>
<mandatory>false</mandatory>
</property>