Taskflow popup window size

Hai i had opned a task flow as an inline popup i want to the size to be increased is this possible to achive if so how to do it?

Hi,
You should be able to set the window height and window width properties on the button that you use to invoke the popup.
That is if you use a button to invoke the popup.
Regards
Luc Bors

Similar Messages

  • Reduce Popup Window Size

    Hello Experts,
    I have one popup window, the height and width of popup window is being displayed too large.
    I am using method window set_window_size() and passing the parameter u2018Width = 20%u2019 and u2018Height = 30%' but it doesnu2019t work. How to reduce Popup Window Size?
    Could you please suggest me?
    Thanks.

    Check out this post POPUP WINDOW .
    I think the popup size will work in later SP level, instead of work on height and width of the popup specify the size of the called UI  container.
    Sergio

  • Notify popup window size

    Hi,
    Is there a way to change the Notify popup window size (especially width)?
    Sometimes I got emails where the subject is quite long, and quite important information is at the end of the subject. The default width of the popup window is not enough to show the full subject.
    Thanks in advance for any tips.

    Hi,
    Unfortunately I too can't figure out a way to do this.
    Perhaps one of the GroupWise guru's knows something that we don't ;)
    Cheers,

  • Managing Popup window size

    I am using RoboHelp 10 - I need to manage the popup window sizes so the larger popups (images of the main screens) can be displayed full size but without scroll bars.  Can anyone help?  If I choose the option for the popups where I decide on the size it makes all popups that size.  Suggestion????
    Also - how do I create lists so the are properly aligned.  bullet remains to the left like a hanging paragraph and the text remains indented properly ....

    Any ideas?
    When I change the settings for toolbar, status, etc, then the
    changes take effect, it seems though only the width and height
    don't work for some reason.
    I would be very grateful for any suggestions
    Thanks
    Lyle

  • Change the popup window size in the "optional label with help" template?

    G'Day Apex/javascript gurus,
    I am using Apex 4.0 where I coded an HTML table for help text in one item. Now, when an user click for help in this item then the HTML table is bigger than the size of the pop up window so the client has to re size it a bit to see it fully. To fix this, I tried to create a new "optional level with help" template where I can control the size of the pop up window and make it bigger to fit my HTML table so the client does not have to resize but I could not find any parameter in the original template:
    <label for="#CURRENT_ITEM_NAME#"><span class="t9optionalwithhelp"> "javascript:popupFieldHelp('#CURRENT_ITEM_ID#','&SESSION.')" tabindex="999" that help me to achieve that
    I am not an expert in javascript but I appreciate greatly if somebody here could help me to create a new label (with help) template where I can control the size of the popup window.
    Kind regards
    Carlos
    Edited by: creyes on Aug 1, 2011 1:22 AM

    Hello Carlos,
    You can overload the APEX javascript with your own, on the page you want it to happen. You can do that in the Page Definition - Function and Global Variable Declaration.
    Copy the below code into there and change the width and height of the popup.
    function popupFieldHelp(pItemId, pSessionId){
        // Show jQuery div based dialog if not running in screen reader mode, if not fall back to old popup
        if (!$x('pScreenReaderMode')) {
            apex.jQuery.getJSON(
            'wwv_flow_item_help.show_help?p_item_id=' + pItemId + '&p_session=' + pSessionId + '&p_output_format=JSON',
            function(pData){
              var lDialog = apex.jQuery("#apex_popup_field_help");
              if (lDialog.length===0) {
                // add a new div with the retrieved page
                lDialog = apex.jQuery('<div id="apex_popup_field_help">'+pData.helpText+'</div>');
                // open created div as a dialog
                lDialog
                  .dialog({
                    title: pData.title,
                    bgiframe: true,
                    width: 500,
                    height: 350,
                    show: 'drop',
                    hide: 'drop' });
              } else {
                // replace the existing dialog and open it again
                lDialog
                  .html(pData.helpText)
                  .dialog('option', 'title', pData.title)
                  .dialog('open');
        } else {
            popupFieldHelpClassic(pItemId, pSessionId);
        return;
    }; // popupFieldHelpHope that makes sense,
    Dimitri
    http://dgielis.blogspot.com
    http://www.apex-evangelists.com

  • Popup window size problem

    Hi,
    For some reason, the popup window link in my Flash website
    opens up a popup which doesn't behave to the window size rules I
    set.
    The website is www.caveataudiens.net , click on the 'music'
    button, and then on the Jukebox button to see as example.
    The Jukebox button has the following actionscript:
    on (release) {
    //customize the window that gets opened
    // 0 equals NO.
    // 1 equals YES.
    address = "
    http://www.caveataudiens.net/music/mp3player.html";
    target_winName = "kirupa";
    width = 400;
    height = 300;
    toolbar = 0;
    location = 0;
    directories = 0;
    status = 0;
    menubar = 0;
    scrollbars = 1;
    resizable = 0;
    //sends data back to the function
    openWinCentre(address, target_winName, width, height,
    toolbar, location, directories, status, menubar, scrollbars,
    resizable);
    and in my main actionscript layer I have:
    stopAllSounds();
    forum_btn.onRelease = function() {
    getURL("
    http://www.flaccidsacks.co.uk/phpBB2/",
    "_blank");
    music_btn.onRelease = function() {
    gotoAndStop("music");
    links_btn.onRelease = function() {
    gotoAndStop("links");
    about_btn.onRelease = function() {
    gotoAndStop("about");
    news_btn.onRelease = function() {
    gotoAndStop("news");
    Movieclip.prototype.openWinCentre = function (url, winName,
    w, h, toolbar, location, directories, status, menubar, scrollbars,
    resizable) {
    getURL ("javascript:var myWin; if(!myWin ||
    myWin.closed){myWin = window.open('" + url + "','" + winName +
    "','" + "width=" + w + ",height=" + h + ",toolbar=" + toolbar +
    ",location=" + location + ",directories=" + directories +
    ",status=" + status + ",menubar=" + menubar + ",scrollbars=" +
    scrollbars + ",resizable=" + resizable +
    ",top='+((screen.height/2)-(" + h/2 +
    "))+',left='+((screen.width/2)-(" + w/2 + "))+'" +
    "')}else{myWin.focus();};void(0);");
    Can some kind soul help me figure out how to adjust the
    window size?
    Many thanks
    lyle

    Any ideas?
    When I change the settings for toolbar, status, etc, then the
    changes take effect, it seems though only the width and height
    don't work for some reason.
    I would be very grateful for any suggestions
    Thanks
    Lyle

  • Controlling popup window size

    Is there a way to influence the size of popup windows? I am
    developing help that will be displayed in a narrow panel, and
    popups get to be ridiculously narrow. It seems that the autosizing
    algorithm prioritizes tall over wide, so that a pupup topic that
    fits in the help display without scrollbars doesn't use as much
    width as it could. The width is extended as a last resort if the
    amount of text would otherwise demand a scrollbar. I would like the
    popups to be only a little narrower than the main window regardless
    of the text amount.

    GEWB,.
    Thanks. A bit of elaboration:
    I make extensive use of popups to display screen shots in a
    separate window so the user can browse help and go from topic to
    topic without necessarily navigating in the parent application at
    the same time. I also make the guide available in our DocWeb
    library as a standalone guide, so the user can read it with the
    parent application closed.
    Sometimes the popup window contains a fair amount of text in
    a subtopic that the user may need to read only once and never
    summon again. He or she has the option of ignoring that popup link
    on returning to the topic. It's the same principle as a Glossary
    definition. The link is there, but once you read it, why bother if
    you can remember it from last time?
    I haven't used dropdowns much, but as I recall they appear in
    the topic pane and push text down until they are dismissed. Useful,
    yes, but they wouldn't accomplish my purpose for popups.
    I looked through ehlpdhtm.js, which primarily serves IE. It
    figures out the autosize dimensions on the fly, and performs the
    dhtml effect on text, such as flying in and out, but
    Firefox/Mozilla/NS don't use dhtml effects.
    I can't find a place in ehlpdhtm.js where (if it's in this
    file) the default popup window is sized (it's about 300 px wide by
    150 px high).
    BSSCDHTM.JS doesn't appear in WebHelp output. Much of it is
    similar to the other js file. I have no idea how it's used. The RH
    help topic on output files mentions ehlpdhtm.js, but there is no
    reference to bsscdhtm.js.
    Is it possible that ehlp... replaced bssc.. and bssc... never
    was removed from the RH code? Or is bssc... perhaps used in
    generating html help?
    If it's in some dll file, I can't fiddle with it, unless you
    can tell me how to edit and save a dll file without destroying its
    dll file type. DHTMLFX.DLL has a lot of code that looks similar to
    the two .js files, but I can't find the default size. That's why I
    thought perhaps the non-ie browsers have a built-in default when
    the html code doesn't specify a custom size.
    I'm content with the workaround, using custom sizes for all
    popup windows, unless a real developer (of which I am not one) can
    help figure this out.
    Thanks again.
    Harvey

  • How to reduce Popup Window Size?

    Hello All,
    I have one popup window, the height of popup window is being displayed too large.
    I used method IF_WD_WINDOW->WINDOW_SIZE( ), there are parameters 'Width' and 'Height' of type string, i have passed '30' and also '30%'  like formate, it didn't work.
    how to control the size of window? Could you please suggest me?

    To be honest i havent found the size parameters working, what you can do though is to RESTRUCTURE the TEXT to be displayed in the pop-up, that would allow you to controll the WIDTH of the pop-up.
    in my code sample below l_text table has 2 entries, we can further have more inserts to it to gain height.
    You can create pop-up with different text, by extending the below source.
    data :  l_cmp_api          type ref to if_wd_component,
              l_window_manager   type ref to if_wd_window_manager,
              l_popup            type ref to if_wd_window,
              l_text             type        string_table,
              l_api              type ref to if_wd_view_controller,
             RR_POPUP_WINDOW type ref to  IF_WD_WINDOW.     
      l_cmp_api        = wd_this->wd_get_api( ).
      l_window_manager = l_cmp_api->get_window_manager( ).
      insert `Records marked with RED LED contain error into table l_text.
      insert `To proceed processing with errors, select YES for this POP-UP.` into table l_text.
      rr_popup_window = l_window_manager->create_popup_to_confirm(
                    text            = l_text
                    button_kind     = if_wd_window=>co_buttons_yesnocancel
                    message_type    = if_wd_window=>co_msg_type_warning
                    window_title    = 'INFO'
                    window_position = if_wd_window=>co_center
                    ).                                          "#EC
          rr_popup_window->subscribe_to_button_event(
                   button            = if_wd_window=>co_button_yes
                   action_name       = 'TO_V_PODETAILS' "action on the view that handles click
                   action_view       = ir_view
                   is_default_button = abap_true ).
    RR_POPUP_WINDOW ->open( ).
    Greetings
    Prashant

  • Popup window size

    How can I set size and location of a popup in JavaHelp 2.0 explicitly, i.e. in Java Code ?
    Thanks in advance
    Thomas G�lden
    Munich, Germany

    For the size you can use setSize();
    Code:
    Popup popup = (Popup) Popup.getPresentation(HelpSetName, null);
    popup.setInvoker(ButtonName);
    popup.setCurrentID("Sect1");
    popup.setSize(new Dimension(400,600));

  • How to maximize a popup window?

    Hi,
    My issue:
    A popup contains data larger that the screen size, it therefore maximizes itself, meaning that it sets its WIDTH to 100%. But this is most unfortunate as WD does not recognise its own scrollbar as the end of the available screen and now the close button (cross) of the popup is beneath the scrollbar!
    When doing a "true" maximize by clicking on the button left to the "closing cross", it recognizes scrollbars and stays visible in total.
    My question:
    How can I programmatically access the maximize/fullscreen function? Interface IF_WD_WINDOW does not provide a corresponding method as far as I can see...
    Already tried:
    ...please no "put width and height to 100%" as I already stated that this is not what I want...
    Also setting width to 95% or the likes does not work, as the popup automatically sets 100% on refresh if there are to large contents.
    <br>
    I would appreciate your help on this!!
    Kind Regards,
    Robert

    Hi Robert,
    You can do any size related actions in POPUP, Actually we have SET_WINDOW_SIZE Method to set window size,
    But for popups it wont work.
    Please check this thread, check Thomos reply
    Re: Confirm Popup in Web Dynpro, window size
    Check using set_window_size.. but can't effect.
    How to reduce Popup Window Size?
    As suggested saravanan, check SAP NOTE also.
    Cheers,
    Kris.

  • Popup with fixed window size

    Hey, i'm really stuck with this and keep hitting a dead end.
    i've got a button in my flash website and i want it to open a popup
    window of 600x400 pixels when clicked. The popup contains a
    background image of this size so i dont want any white space in the
    background. I've tried putting the following into the actions
    window with the button selected but nothing happens when i click
    the link in the website.
    on (release) {
    getURL ("javascript:openNewWindow('
    http://www.mysite.co.uk/support.html','thewin','height=400,width=600,toolbar=no,scrollbars =no');");
    If I attach a behaviour to the button to geturl, it works but
    brings up the page full size. I'm new to flash so am just going on
    scripts i'm finding on various websites. Is there a simple way to
    do this? Its pretty straight forward in Dreamweaver but i cant see
    where to specify popup dimensions in flash. Thanks, Dren

    I found a script that works. If anyone comes across this post
    this is what you need:
    on (release) {
    var jscommand:String = "window.open('
    http://www.yourdomain.com/yourpage.html','win','height=600,width=800,toolbar=no,scrollbars =no');";
    getURL("javascript:" + jscommand + " void(0);");
    }

  • Popup image works fine but how to control the window size

    Hello folks,
    I use
    <img title="Click to pop up large image" src="#OWNER#.view_my_file_form?p_file=#IMGID#" width="40" height="30" />
    to popup a image window. It works just fine. How can I set the popup image window size? The window is too big but the image is too samll.
    Many thanks.
    Mickey

    The popupURL function is defined as
    function popupURL(url)
    w = open(url,"winLov","Scrollbars=1,resizable=1,width=800,height=600");
    if (w.opener == null) w.opener = self;
    w.focus();
    If 800x600 is too big for you, write your own mypopupURL function with whatever size you want

  • When a allowed popup window opens, it is maximized. Before it was the size it was supposed to be but after updating Firefox, everything is maximized.

    Popup windows are all maximized. This was not the case before updating Firefox.

    Try:
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • RE: Getting multiple values from more than one multiple select popup window

    I have a button on a JSP of mine that when clicked creates a popup window (right now it is called popup.html) with a multiple select menu.
    My question is how do I get all the values selected from the menu into my JSP (sample.jsp) so that I can set each of the values for my bean.
    The other problem is that I have more than one select multiple menu.
    Please help if you can. Any advice or suggestions here would be greatly appreciated!
    Thank you!

    I realize that I can use request.getParameterValues to get the values selected from my html because I am passing them to the hidden inputs I have and then using the request.getParameterValues to get each of the values.
    MY PROBLEM IS WHAT IF I HAVE 4 MULTIPLE SELECTS??? How can I use the same html popup menu to get the values from the 4 different multiple selects????
    I look forward to your response.
    This code is from my JSP:
    <INPUT TYPE="TEXT" NAME="Field1" SIZE="15">
    <INPUT TYPE="hidden" name="F1Rad1">
    <INPUT TYPE="hidden" name="Permission">
    <input type=button name=choice onClick="window.open('optionPicker.html','popuppage','width=250,height=100');" value="Options"></TD>
    Here is my optionPicker.html code for the pop up menu:
    <html>
    <head>
    <script language="JavaScript">
    function sendValue(s)
    var boxSize= s.options[0].value;
    var restrict     = s.options[1].value;
    window.opener.document.addNewForm.F1Rad1.value = boxSize;
    window.opener.document.addNewForm.Permission.value = restrict;
    window.close();
    </script>
    </head>
    <body>
    <center>
    <form name=selectform>
    <select multiple name=selectmenu size="2">
    <option value="large">Large Text Input Area
    <option value="restrict">Restricted Access
    </select>
    <p></p>
    <input type=button value="Select Option(s) For Field" onClick="sendValue(this.form.selectmenu);">
    </form>
    </center>
    </body>
    </html>

  • How to stop popup window using phone layout for display - Responsive HTML5, RH11

    Hello,
    I'm using the new Responsive HTML5 output in RH11. For some of my hyperlinks, I want to use a pop-up to display the linked topic. In the output, the pop-ups work, but they are automatically displayed using the phone layout, with the associated navigation buttons at the bottom, the help title, and so on. I don't want this - I just want a plain popup window. So, I tried to add a Screen Profile, set to 400 x 500 pixels exactly (thinking that this is bigger than a phone, but smaller than a tablet). I also added a corresponding Screen Layout. In the popup properties, I set the popup size to be 400 x 500 pixels. I guess there is something else I need to do to get this to work... but I don't know what that is. (I tried creating a new Window on the Project Set-up tab, and I tried creating a different master page. These things didn't work.)
    Can anyone tell me if what I'm trying to do with these popups is just a bad idea and it won't work well with certain browsers?
    Thanks!
    Alexandra

    I am confused as the responsive layouts are one size fits all, that is the point of them. You have one layout that morphs according to window size.
    Screen Profiles are only used within Multiscreen HTML5 layouts where you can map screen profiles to different adaptive screen layouts, such as desktop, tablet and phone. That mapping does not apply to responsive layouts.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

Maybe you are looking for

  • How do I get my Third-Party Mail Server to deliver Mail quickly to BlackBerry?

    With Gmail and Yahoo! the mail delivery is very fast.  We own/use a Windows Mail Server that is IMAP/POP/Etc. but sometimes it take mail quite some time to display in the BlackBerry device.  Is there a trick to it? Thanks for the help.

  • Video Calls Without Video

    Hello, I have a Tandberg TANDBERG 550 MXP when i call another Video Endpoint there is no video and see this log on 550 MXP Video format unknown. What could be? Regards Leonardo Santana

  • Can't open an important file!Help!!

    i can't open an very important pages file i've been worked on these days.it displays "can't open ..."in Chinese,(i use Chinese version).i tried to copy this file to my movable HD,and open it on another iMac,FAILED TOO!! Does that mean this file is co

  • Lenovo K1 rebooting at lenovo screen - Please HELP!!

    After OTA update, K1 does not go beyond lenovo screen, keeps rebooting. Assuming some files might have been corrupted, tried the "rooting method" . I have tried different method of rooting - eg. windoze, k1-v2 etc. All of them shows it goes thru form

  • Reversed GR after Invoice Verification

    Hello SAP Experts, We have an issue regarding a goods receipt that was reversed after it was invoice verified. The quantity was for 137. However, after it was reversed, it shows the quantity as "0" in the purchase order history. When we look at the m