Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.
Nivel 1
Nivel 2
Iniciar sesión en la comunidad
Iniciar sesión para ver todas las insignias
Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.
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.
Vistas
Respuestas
Total de me gusta
Xfa.host.messagebkx
Vistas
Respuestas
Total de me gusta
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:
Vistas
Respuestas
Total de me gusta
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.
Vistas
Respuestas
Total de me gusta
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
Vistas
Respuestas
Total de me gusta
Vistas
me gusta
Respuestas
Vistas
me gusta
Respuestas
Vistas
me gusta
Respuestas