Currently I am updating classification object with a new attribute and want to add a new column in the targeted certification item page which shows that attribute
Is it possible to do that and where all do I need to make a change for that ?
To add attribute to certification, extend the schema for link and certification item, use HBM XML files or extended columns. Refer below for more info on implementation and examples:
But still its not visible in the certificationItem page
According to the steps mentioned in the above link
added a column entry in UI Config under uiCertificationItemWorksheetColumn entry.
all the properties ( dataIndex, groupProperty, Property, sortProperty, stateId) is set to “HibernateCustom1”.
wrote a CertificationItemCustomization rule and added it’s entry in system configuration.
CertificationItemCustomization rule had the logic to create the data that is required to populate in new column.
item.setCustom1(value); (I added value as HibernateCustom1)
Not sure what I am doing incorrect here