Hi Team,
Can anyone help to create pop up modal box which contains input field like password to get user entered data in AEM JEE Designer.
Views
Replies
Total Likes
Xfa.host.messagebkx
Views
Replies
Total Likes
Yes, you can. '
Try this on your form initialize:
function dialog()
{
var dialogDescriptor =
{
description:
{
name: "dailog1",
elements: [
{
type: "view",
elements: [
{
type: "static_text",
name: "Please enter your name",
},
{
width: 200,
height: 22,
type: "edit_text",
item_id: "NAME",
},
{
type: "static_text",
item_id: "ERR1",
name: "You must enter your name",
}
]
},
{
type: "ok_cancel",
}
]
},
initialize : function(dialog)
{
dialog.load({
"NAME": dialogObject.NAME,
});
dialog.visible({"ERR1": false,});
dialog.setForeColorRed("ERR1");
},
validate : function(dialog)
{
var isValid = true;
var elements = dialog.store();
if (elements["NAME"] === "")
{
dialog.visible({ERR1:true});
isValid = false;
}
else
{
dialog.visible({ERR1:false});
}
return isValid;
},
commit : function(dialog)
{
var elements = dialog.store();
dialogObject.NAME = elements["NAME"];
},
"NAME" : function(dialog)
{
},
};
var dialogObject =
{
NAME: "",
execDialog: function() { return app.execDialog(dialogDescriptor); },
};
return dialogObject;
}
var d = dialog();
d.execDialog();
console.println(d.NAME);
There are few sample available online:
Views
Replies
Total Likes
Hi Mayank,
Thanks for the reply. Yes this works perfectly in Workspace in PDF view. But when I switch to HTML view in AEM 6.4 workspace it does not work. Is there any alternative to achieve it.
Views
Replies
Total Likes
You can create HTML code with basic auth and redirect it to HTML equivalent URL of forms. If the users can be brought in AEM you can use AEM login page as well on the AUTHOR.
Which workspace are you referring to when you say "AEM 6.4 workspace"?
-Mayank Gandhi
Views
Replies
Total Likes