Dialog Box

142 views
Skip to first unread message

tanmoychak...@gmail.com

unread,
Aug 19, 2014, 9:35:11 AM8/19/14
to suppor...@runmyprocess.com
Hi i Just want to set a list dialog box can anyone please tell me how to do it.......................

Bidisha Das

unread,
Aug 19, 2014, 9:57:26 AM8/19/14
to suppor...@runmyprocess.com, tanmoychak...@gmail.com
Hi Tanmoy,
Can you be more clear on what you mean by list dialog box?

Anyways, if you want to set an alert box,you can use the following code: RMPApplication.showErrorBox("Title of box", "Message of box"): this function opens a pop-up box (like an "alert").
If you want to show in another popup window, you can use window.open("url of the page you want to open in popup"); in your javascript.


Thanks & Regards
Bidisha

tanmoychak...@gmail.com

unread,
Aug 19, 2014, 10:33:12 AM8/19/14
to suppor...@runmyprocess.com, tanmoychak...@gmail.com
Hi Bidisha,

I took a button in my web interface and if i click on this button a menu_list will appear but i cant make this menu list so can u please help me.....

Dimitri MELCHIOR Pro

unread,
Aug 19, 2014, 11:31:57 AM8/19/14
to RunMyProcess Support Forum, tanmoychak...@gmail.com
Hi Tanmoy,

I have some difficulties to understand properly your request. If possible, illustrate with screenshots. Meanwhile and for each RMP Widget, you have a setVisible method that could help you.

WidgetID.setVisible(true);;

or (to hide the widget),

WidgetID.setVisible(false);

Best regards.

--

Dimitri MELCHIOR

PreSales Consultant

     

Fujitsu RunMyProcess user? Please add a review on GoogleApps Marketplace

Afin de contribuer au respect de l'environnement, merci de n'imprimer ce message qu'en cas de nécessité.
Be environmentally friendly: do not print this email unless it is entirely necessary.


On Tue, Aug 19, 2014 at 12:33 PM, <tanmoychak...@gmail.com> wrote:
Hi Bidisha,

           I took a button in my web interface and if i click on this button  a menu_list will appear but i cant make this menu list so can u please help me.....


--
Fujitsu - RunMyProcess
---
You received this message because you are subscribed to the Google Groups "RunMyProcess Support Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supportforum...@runmyprocess.com.
To post to this group, send email to suppor...@runmyprocess.com.
Visit this group at http://groups.google.com/a/runmyprocess.com/group/supportforum/.
To view this discussion on the web visit https://groups.google.com/a/runmyprocess.com/d/msgid/supportforum/181a7e2a-3a5b-44d8-b54e-f1843613558d%40runmyprocess.com.

tanmoychak...@gmail.com

unread,
Aug 19, 2014, 12:02:59 PM8/19/14
to suppor...@runmyprocess.com, tanmoychak...@gmail.com
Hi Dimitri

Ok i will explain you it again i have created a webinterface where i have taken a button on clicking on this button i want a dialog box which contains some custom list values............. for example-(kolkata, chennai, Mumbai etc)
Now can u please help me......

Message has been deleted

Sushma Padidela

unread,
Aug 19, 2014, 6:05:41 PM8/19/14
to suppor...@runmyprocess.com, tanmoychak...@gmail.com
Hi Tanmoy,

From you previous email what i understood was you have a web interface which has a button and now onClick of that button you want to open a dialog box (which is like a new window). So for the button Action select "Execute script" and in the script write:

window.open('https://live.runmyprocess.com/live/1113465/appli/9013?P_mode=${P_mode}','mywindow','width=400,height=200')

So as you need a list in the dialog box, create another RunMyProcess webinterface which has a List widget and associate it with a custom list with values kolkata, chennai, Mumbai etc and copy paste the web interface URL into the window.open.

Please ignore my previous email it was sent by mistake.

Thanks,
Sushma


On Tue, Aug 19, 2014 at 10:57 AM, Sushma Padidela <spad...@runmyprocess.com> wrote:
Hi Tanmoy,

From you previous email what i understood was you have a web interface which has a button and now on clcik of that button you want to open a dialog box (which is like a new window). So for the button Action select "Execute script" and in the script write:
 



--
Fujitsu - RunMyProcess
---
You received this message because you are subscribed to the Google Groups "RunMyProcess Support Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supportforum...@runmyprocess.com.
To post to this group, send email to suppor...@runmyprocess.com.
Visit this group at http://groups.google.com/a/runmyprocess.com/group/supportforum/.

tanmoycha...@gmail.com

unread,
Aug 20, 2014, 5:49:39 AM8/20/14
to suppor...@runmyprocess.com, tanmoychak...@gmail.com
Thanx Sushma for that help i will try it out soon...........

tanmoycha...@gmail.com

unread,
Aug 20, 2014, 6:19:55 AM8/20/14
to suppor...@runmyprocess.com, tanmoychak...@gmail.com, tanmoycha...@gmail.com
Hi Sushma i have done what you have told and it will come perfectly but i need little bit of help from the dialog box that i have created below that hjave given a add button, now the function of this add button is that when i click on this add button the value from the list of my dialog box get added to the list of my another web interface

can you tell me how to do that????


I am attaching the screen shot for your better understanding..

ASSIGNEE.png

Sweta Suman

unread,
Aug 20, 2014, 9:34:26 AM8/20/14
to suppor...@runmyprocess.com

Hi,

I am assuming that on click of "Add More Assignee" dialog box get opened and on select of assignee you are clicking on "Add". Now,you want that assignee to be added in WebInterface "Assignee To" list.

You should take "Variable Based List"  and save that user in collection on Click of "Add",then it will be added in "Assign To" list of Interface. 
In order to print in text input,take a Text input(initial visibility- false).On "Add" write below JS-

id_text_input.setVisible(true);
var result = RMPApplication.getVariable("Label_variable");
id_text_input.setValue(result);

Also,you can select more than one user of list by checking "Multi-Selection" in list widget property.


If you are still facing issues, please feel free to ask.

Thanks and Regards,
Sweta



--
Fujitsu - RunMyProcess
---
You received this message because you are subscribed to the Google Groups "RunMyProcess Support Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supportforum...@runmyprocess.com.
To post to this group, send email to suppor...@runmyprocess.com.
Visit this group at http://groups.google.com/a/runmyprocess.com/group/supportforum/.
Reply all
Reply to author
Forward
0 new messages