Change the label of an item


/ Published in: JavaScript
Save to your folder(s)

Use this in the ApplicationModule.js file.


Copy this code and paste it in your HTML
  1. //Change label of an item
  2. this.registerCustomization('VIEWTYPE', 'VIEWNAME', {
  3. at: function(row) { return row.name == 'ITEMNAME'; },
  4. type: 'modify',
  5. value: {
  6. label: 'NEWNAME'
  7. }
  8. });

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.