Hrishikesh - Saturday, March 8, 2014 7:22 AM:
Hi Team,
On execute of an Item Action, i display a Identity Search Dialog where user select the Identity and do the further functionality.
so now my question when I execute the Action the Identity Search Dialog displayed, but it through error as follow,

If any solution on the above error, Please reply.
Thanks,
Hrishikesh
plm_stud - Wednesday, March 12, 2014 1:55 AM:
Hrishikesh,
Please post the code which you have written in Method of your Item Action. You are using wrong API I guess.
- Novice
Harsha - Thursday, March 13, 2014 1:51 AM:
Hi Hrishikesh,
You can use the following to open a Search Dialog.
var src =
{
aras: top.aras,
itemtypeName: 'Identity',
multiselect: false
};
var dialog = showModalDialog('searchDialog.html', src, 'dialogHeight:500px; dialogWidth:800px; status:0; help:0; resizable:1;');
Harsha