public UIAccountForm(InitParams initParams) throws Exception {
super("UIAccountForm");
UIFormInputWithActions accountInputSet = new UIAccountInputSet("AccountInputSet");
List<ActionData> actions = new ArrayList<ActionData>();
ActionData addCategory = new ActionData();
addCategory.setActionListener("SearchUser");
addCategory.setActionType(ActionData.TYPE_ICON);
addCategory.setActionName("SearchUser");
addCategory.setCssIconClass("SearchIcon");
actions.add(addCategory);
accountInputSet.setActionField("username", actions);
setSelectedTab(accountInputSet.getId());
addChild(accountInputSet);
UIFormInputSet userProfileSet = new UIUserProfileInputSet("UIUserProfileInputSet");