I am currently working with the extensibility framework and I would like to reference some of the fields on the stock tab of the part. I have got what I think the field names are and I would have thought the following action would place the value from bis_udfchar01 into bis_udfchar02, just as a quick example:
'[extensibleFramework][tabName=BIS][isTabView=true][name=bis_udfchar01]' : {
blur : function() {
var me = this;
var vFormPanel = EAM.Utils.getCurrentTab().getFormPanel();
var vStatusField = vFormPanel.getForm().findField("bis_udfchar01");
var vStatusValue = vStatusField.getValue();
vFormPanel.setFldValue('bis_udfchar02', vStatusValue,true);
}
}
Can anyone suggest what is missing to get this to work.