Hi All,
I followed the article http://experience-aem.blogspot.in/2014/01/aem-cq-56-extend-useradmin-add-new-user.html and its working fine on my local OOTB instance.
I am trying to learn things and have doubts as below:
1] CQ.Ext.ns("MyClientLib")
is registering our own custom xtype or something?
2] var fields = CQ.security.data.AuthRecord.FIELDS
I am not able to get what exactly does this do. I thought it was part of extjs api, but could not find anything.
3] What does the below lines indicate.
addSecondEmail: function(propPanel){
var userForm = propPanel.userForm;
userForm.insert(userForm.items.indexOf(emailComp[0]) + 1, secondEmailComp);
userForm.doLayout();
4] What is the best procedure I need to follow to understand such code. Any pointers/links etc would be helpful.