Pop-up window's styles

Hello, colleagues,
I changed styles of theme, now orgchart uses corporative colours, but pop-up windows, like Actions->Parameters has default themes colurs. I need to change their background etc on corporative clours if it's possible.
Thanks.
Best Regarfs,
Alex.

Hi Alex,
I'm pretty sure that these are not Flex controlled and will either be controlled by CSS or by XSL, depending on the pop-up (but most likely CSS). It migt be t hat some XSL do not have CSS so they just use the system default settings.
If you can clarify which pop-ups you mean that we might be able to help.
Best regards,
Luke

Similar Messages

  • Can I get an os9 style pop-up window?

    Here is what I would like to do. I have a file folder called Personel. I have created an alias and put it on the desktop. I have also put Personel in the dock. Let's say I have a TEST EDIT file called m-audio on the desktop. There is another folder in Personel called comp_info. I want to drag m-audio into Personel (desktop or dock), see a list of items in Personel, including the comp_info folder, and then drag m-audio into the comp_info folder. This was possible in OS9 with pop-up windows. Can I do something similar in OSX. Thanks.
    Owen

    It works fine if you drag to the folder/alias on the desktop. Drag and hold a second and the folder will pop open.
    Not sure about the dock.

  • When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history pa

    When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history page etc. Happens on all options that should open new page. I am so frustrated, this has been happening since Firefox updated itself 2 days ago to Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 ( .NET CLR 3.5.30729; .NET4.0C) was fine before that. using windows vista. Can you please advise what I should do? Also can you go back to previous version? Error console eg
    Warning: Error in parsing value for 'cursor'. Declaration dropped.
    Source File: https://ib.nab.com.au/nabib/styles/menu_nab.css?id=009
    Line: 116
    ib.nab.com.au : server does not support RFC 5746, see CVE-2009-3555 and Warning: Selector expected. Ruleset ignored due to bad selector.
    Source File: https://ib.nab.com.au/nabib/styles/nabstyle.css?id=014
    Line: 837
    == This happened ==
    Every time Firefox opened
    == 2 days ago after update.

    Do you have that problem when running in the Firefox SafeMode?
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • How to pass values from main window to pop-up window?

    I want to pass a value from the main window (1st form) to pop-up window (2nd form). The first form is of name booking.jsp and 2nd form is of name Fund_booking.jsp. I am using window.showModalDialog to open the window. I think, I have written right code in main window to pass the value but even then I am not able to get it on pop-up window. I am not even able to display an alert on pop-up window saying "hi" by writing a function on save Button in pop-up window. The code is as follows:
    On booking.jsp:
    <script>
    function popup()
    var aForm;
    aForm = D_requisition_id.options[D_requisition_id.selectedIndex].text;
    \\Here I have captured value from a drop down box in my main window form and assigned it to the variable.
    alert(aForm);
    var myObject =new Object();
    myObject.Brandcode = aForm;
    alert(myObject.Brandcode);
    window.showModalDialog("Fund_booking.jsp",myObject,"dialogHeight:400px;dialogWidth:420px;");
    </script>
    <button name="B_FundBooking" tabIndex=4 style='POSITION:absolute;LEFT:393;TOP:292;WIDTH:100;height:24;BACKGROUND-COLOR:buttonface' onClick ="popup()">Fund Booking</button>
    On Fund_booking.jsp:
    <SCRIPT>
    var oMyObject = window.dialogArguments;
    var sBrandcode = oMyObject.Brandcode;
    alert(sBrandcode);
    </SCRIPT>
    Even the following alert is not getting displayed in pop-up window;
    <script>
    function ValidateData()
    alert("Hi");
    </script>
    <button name="B_Save" tabIndex=1 style='POSITION:absolute;LEFT:255;TOP:315;WIDTH:75;height:24;BACKGROUND-COLOR:buttonface' onClick ="ValidateData()">Save</button>
    I am using DIV instead of frames in my both forms. I just want to get that value in my pop-up window to write a query based on which data will get displayed in my table of pop-up window.
    Plz help me to solve this problem.

    Well, this is actually a JavaScript question, not a Java question but I can give some hints.
    When you do pop-up windows you need to put JavaScript in the html of the pop-up itself. Data can be passed by creating new fields in the window object, which the popup can access via the window.openner field.
    So, before invoking the popup add any data to be passed to the window object, then the onLoad function in the popup grabs the data.

  • How to pass value from main window to pop up window?

    I want to pass a value from the main window (1st form) to pop-up window (2nd form). The first form is of name booking.jsp and 2nd form is of name Fund_booking.jsp. I am using window.showModalDialog to open the window. I think, I have written right code in main window to pass the value but even then I am not able to get it on pop-up window. I am not even able to display an alert on pop-up window saying "hi" by writing a function on save Button in pop-up window. The code is as follows:
    On booking.jsp:
    <script>
    function popup()
    var aForm;
    aForm = D_requisition_id.options[D_requisition_id.selectedIndex].text;
    \\Here I have captured value from a drop down box in my main window form and assigned it to the variable.
    alert(aForm);
    var myObject =new Object();
    myObject.Brandcode = aForm;
    alert(myObject.Brandcode);
    window.showModalDialog("Fund_booking.jsp",myObject,"dialogHeight:400px;dialogWidth:420px;");
    </script>
    <button name="B_FundBooking" tabIndex=4 style='POSITION:absolute;LEFT:393;TOP:292;WIDTH:100;height:24;BACKGROUND-COLOR:buttonface' onClick ="popup()">Fund Booking</button>
    On Fund_booking.jsp:
    <SCRIPT>
    var oMyObject = window.dialogArguments;
    var sBrandcode = oMyObject.Brandcode;
    alert(sBrandcode);
    </SCRIPT>
    Even the following alert is not getting displayed in pop-up window;
    <script>
    function ValidateData()
    alert("Hi");
    </script>
    <button name="B_Save" tabIndex=1 style='POSITION:absolute;LEFT:255;TOP:315;WIDTH:75;height:24;BACKGROUND-COLOR:buttonface' onClick ="ValidateData()">Save</button>
    I am using DIV instead of frames in my both forms. I just want to get that value in my pop-up window to write a query based on which data will get displayed in my table of pop-up window.
    Plz help me to solve this problem.

    just attach the value with its url for example
    String names="java";
    <a href="# onclick="window.open('file.jsp?name='+names);"></a>

  • How to show details from web part as pop up window

    Hello
    I designed few web pages in SharePoint Designer 2010 and trying to customize it. I have a XSLTListView web part that is displaying filtered data from the external SQL database. When user choses the item from this list, I need it to show in the new pop
    up window. I can't seem to find the way to do it. Saw multiple references to use SP.UI.ModalDialog.ShowPopupDialog(url), but I don't know how and where to incorporate it, since there is no place in the page where it actually specifies that url
    of the page that I need to show as pop up.
    Below there is a code for the XsltListWebPart, where I'm hoping I could make changes to make it pop up (it seems that this is the part that is calling the display details form). The form that I'd like to pop up is DispForm.aspx
    <script>
    function showpreview<xsl:value-of select="$ViewCounter" />(o) {
    count = 1;
    for(i = 0; i &lt; o.childNodes.length; i++)
    var child = o.childNodes[i];
    if (child.style.display == &quot;none&quot; &amp;&amp; child.tagName == &quot;DIV&quot;)
    f = document.getElementById(&quot;n&quot; + count + &quot;<xsl:value-of select="$WPQ" />&quot;);
    f.innerHTML = unescape(child.innerHTML) + &apos;&#160;&apos;;
    count ++;
    </script>
    <div id="previewpaneerror{$ViewCounter}" style="width: 801px"></div>
    <table cellspacing="0" cellpadding="0" border="0" id="previewpanetable{$ViewCounter}" dir="{List/@Direction}">
    <xsl:choose>
    <xsl:when test="not($dvt_RowCount=0)">
    <tr>
    <td valign="top" style="width: 186px">
    <div class="ms-ppleft" style="width: 100px">
    <table cellspacing="0" cellpadding="0" border="0" style="width: 122%">
    <xsl:apply-templates select="." mode="RenderView"/>
    </table>
    </div>
    </td>
    <td valign="top">
    <div id="preview1{generate-id()}" class="style2" style="width: 690px; margin-left: 30px;">
    <table border="0" cellpadding="0" cellspacing="0">
    <xsl:for-each select="ViewFields/FieldRef[not(@Explicit='TRUE')]">
    <tr>
    <td nowrap="nowrap" valign="top" class="ms-formlabel" style="width: 143px">
    <nobr>
    <xsl:value-of select="@DisplayName"/>
    </nobr>
    </td>
    <td valign="top" class="ms-formbody" id="n{position()}{$WPQ}" style="width: 370px">
    </td>
    </tr>
    </xsl:for-each>
    </table>
    </div>
    </td>
    </tr>
    </xsl:when>
    <xsl:otherwise>
    <tr>
    <td class="ms-vb">
    <table class="ms-summarycustombody" cellpadding="0" cellspacing="0" border="0">
    <xsl:call-template name="EmptyTemplate" />
    </table>
    </td>
    </tr>
    <tr>
    <td height="5">
    <img src="/_layouts/images/blank.gif" width="1" height="5" alt="" />
    </td>
    </tr>
    </xsl:otherwise>
    </xsl:choose>
    </table>
    </xsl:template>
    Alla Sanders

    Hi Alla,
    You can show details from web part as pop up window using JavaScript with SP.UI.ModalDialog.ShowPopupDialog(url). Here is a demo you can refer to:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function(){
    var obj1=$("a[id='forum0-NewPostLink']");
    url="http://sp13"+obj1.attr("href");
    //alert(url);
    obj1.removeAttr("href");
    obj1.click(function(){
    openDialogBox(url);
    function openDialogBox(url) {
    var pageUrl=url;
    var title="New Discussion";
    SP.UI.ModalDialog.showModalDialog(
    url: pageUrl,
    autoSize: true,
    title: title,
    dialogReturnValueCallback: function (result){
    if(result== SP.UI.DialogResult.OK){
    //refresh parent window
    window.location.href=window.location.href;
    </script>
    Reference:
    https://social.technet.microsoft.com/Forums/en-US/f18062ed-2e17-440e-8e00-2904f5316802/discussion-board-forum-opens-in-other-page?forum=sharepointdevel
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Pop Up Window - Dynamic Page - Need Best Solution

    I'd like to create a pop-up window for my site. I've used behaviors in the past. I'm not sure if that's the best way now. Basiclly I have a photo gallery with thumbnails. Once you click the thumbnail I want a larger window to open with the image. I've seen the javascript windows used that use CSS lightbox, however I can't get it to work with my site. I guess I should mention I'm using:
    ASP vbscript
    SQL Database
    Unit is set for repeating regions
    Help me find the best solution to carry out this task. Thanks in advance.

    At this time I can't post the page. This is what I'm using:
    http://www.lokeshdhakar.com/projects/lightbox2/
    Using asp vbscript ,ms sql database with a link to the image paths that are sitting in the images folder.
    This is really all I can show you. Hopefully you can make heads of tails out of it. Thanks for answering my post!
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <!--#include file="Connections/conn_ssfGallery.asp" -->
    <%
    Dim rs_ssfGallery
    Dim rs_ssfGallery_cmd
    Dim rs_ssfGallery_numRows
    Set rs_ssfGallery_cmd = Server.CreateObject ("ADODB.Command")
    rs_ssfGallery_cmd.ActiveConnection = MM_conn_ssfGallery_STRING
    rs_ssfGallery_cmd.CommandText = "SELECT * FROM dbo.tbl_pictures ORDER BY picture_ID ASC"
    rs_ssfGallery_cmd.Prepared = true
    Set rs_ssfGallery = rs_ssfGallery_cmd.Execute
    rs_ssfGallery_numRows = 0
    %>
    <%
    Dim HLooper1__numRows
    HLooper1__numRows = 25
    Dim HLooper1__index
    HLooper1__index = 0
    rs_ssfGallery_numRows = rs_ssfGallery_numRows + HLooper1__numRows
    %>
    <%
    '  *** Recordset Stats, Move To Record, and Go To Record: declare stats variables
    Dim rs_ssfGallery_total
    Dim rs_ssfGallery_first
    Dim rs_ssfGallery_last
    ' set the record count
    rs_ssfGallery_total = rs_ssfGallery.RecordCount
    ' set the number of rows displayed on this page
    If (rs_ssfGallery_numRows < 0) Then
      rs_ssfGallery_numRows = rs_ssfGallery_total
    Elseif (rs_ssfGallery_numRows = 0) Then
      rs_ssfGallery_numRows = 1
    End If
    ' set the first and last displayed record
    rs_ssfGallery_first = 1
    rs_ssfGallery_last  = rs_ssfGallery_first + rs_ssfGallery_numRows - 1
    ' if we have the correct record count, check the other stats
    If (rs_ssfGallery_total <> -1) Then
      If (rs_ssfGallery_first > rs_ssfGallery_total) Then
        rs_ssfGallery_first = rs_ssfGallery_total
      End If
      If (rs_ssfGallery_last > rs_ssfGallery_total) Then
        rs_ssfGallery_last = rs_ssfGallery_total
      End If
      If (rs_ssfGallery_numRows > rs_ssfGallery_total) Then
        rs_ssfGallery_numRows = rs_ssfGallery_total
      End If
    End If
    %>
    <%
    Dim MM_paramName
    %>
    <%
    ' *** Move To Record and Go To Record: declare variables
    Dim MM_rs
    Dim MM_rsCount
    Dim MM_size
    Dim MM_uniqueCol
    Dim MM_offset
    Dim MM_atTotal
    Dim MM_paramIsDefined
    Dim MM_param
    Dim MM_index
    Set MM_rs    = rs_ssfGallery
    MM_rsCount   = rs_ssfGallery_total
    MM_size      = rs_ssfGallery_numRows
    MM_uniqueCol = ""
    MM_paramName = ""
    MM_offset = 0
    MM_atTotal = false
    MM_paramIsDefined = false
    If (MM_paramName <> "") Then
      MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "")
    End If
    %>
    <%
    ' *** Move To Record: handle 'index' or 'offset' parameter
    if (Not MM_paramIsDefined And MM_rsCount <> 0) then
      ' use index parameter if defined, otherwise use offset parameter
      MM_param = Request.QueryString("index")
      If (MM_param = "") Then
        MM_param = Request.QueryString("offset")
      End If
      If (MM_param <> "") Then
        MM_offset = Int(MM_param)
      End If
      ' if we have a record count, check if we are past the end of the recordset
      If (MM_rsCount <> -1) Then
        If (MM_offset >= MM_rsCount Or MM_offset = -1) Then  ' past end or move last
          If ((MM_rsCount Mod MM_size) > 0) Then         ' last page not a full repeat region
            MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
          Else
            MM_offset = MM_rsCount - MM_size
          End If
        End If
      End If
      ' move the cursor to the selected record
      MM_index = 0
      While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1))
        MM_rs.MoveNext
        MM_index = MM_index + 1
      Wend
      If (MM_rs.EOF) Then
        MM_offset = MM_index  ' set MM_offset to the last possible record
      End If
    End If
    %>
    <%
    ' *** Move To Record: if we dont know the record count, check the display range
    If (MM_rsCount = -1) Then
      ' walk to the end of the display range for this page
      MM_index = MM_offset
      While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size))
        MM_rs.MoveNext
        MM_index = MM_index + 1
      Wend
      ' if we walked off the end of the recordset, set MM_rsCount and MM_size
      If (MM_rs.EOF) Then
        MM_rsCount = MM_index
        If (MM_size < 0 Or MM_size > MM_rsCount) Then
          MM_size = MM_rsCount
        End If
      End If
      ' if we walked off the end, set the offset based on page size
      If (MM_rs.EOF And Not MM_paramIsDefined) Then
        If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then
          If ((MM_rsCount Mod MM_size) > 0) Then
            MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
          Else
            MM_offset = MM_rsCount - MM_size
          End If
        End If
      End If
      ' reset the cursor to the beginning
      If (MM_rs.CursorType > 0) Then
        MM_rs.MoveFirst
      Else
        MM_rs.Requery
      End If
      ' move the cursor to the selected record
      MM_index = 0
      While (Not MM_rs.EOF And MM_index < MM_offset)
        MM_rs.MoveNext
        MM_index = MM_index + 1
      Wend
    End If
    %>
    <%
    ' *** Move To Record: update recordset stats
    ' set the first and last displayed record
    rs_ssfGallery_first = MM_offset + 1
    rs_ssfGallery_last  = MM_offset + MM_size
    If (MM_rsCount <> -1) Then
      If (rs_ssfGallery_first > MM_rsCount) Then
        rs_ssfGallery_first = MM_rsCount
      End If
      If (rs_ssfGallery_last > MM_rsCount) Then
        rs_ssfGallery_last = MM_rsCount
      End If
    End If
    ' set the boolean used by hide region to check if we are on the last record
    MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount)
    %>
    <%
    ' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters
    Dim MM_keepNone
    Dim MM_keepURL
    Dim MM_keepForm
    Dim MM_keepBoth
    Dim MM_removeList
    Dim MM_item
    Dim MM_nextItem
    ' create the list of parameters which should not be maintained
    MM_removeList = "&index="
    If (MM_paramName <> "") Then
      MM_removeList = MM_removeList & "&" & MM_paramName & "="
    End If
    MM_keepURL=""
    MM_keepForm=""
    MM_keepBoth=""
    MM_keepNone=""
    ' add the URL parameters to the MM_keepURL string
    For Each MM_item In Request.QueryString
      MM_nextItem = "&" & MM_item & "="
      If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
        MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item))
      End If
    Next
    ' add the Form variables to the MM_keepForm string
    For Each MM_item In Request.Form
      MM_nextItem = "&" & MM_item & "="
      If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
        MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item))
      End If
    Next
    ' create the Form + URL string and remove the intial '&' from each of the strings
    MM_keepBoth = MM_keepURL & MM_keepForm
    If (MM_keepBoth <> "") Then
      MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
    End If
    If (MM_keepURL <> "")  Then
      MM_keepURL  = Right(MM_keepURL, Len(MM_keepURL) - 1)
    End If
    If (MM_keepForm <> "") Then
      MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
    End If
    ' a utility function used for adding additional parameters to these strings
    Function MM_joinChar(firstItem)
      If (firstItem <> "") Then
        MM_joinChar = "&"
      Else
        MM_joinChar = ""
      End If
    End Function
    %>
    <%
    ' *** Move To Record: set the strings for the first, last, next, and previous links
    Dim MM_keepMove
    Dim MM_moveParam
    Dim MM_moveFirst
    Dim MM_moveLast
    Dim MM_moveNext
    Dim MM_movePrev
    Dim MM_urlStr
    Dim MM_paramList
    Dim MM_paramIndex
    Dim MM_nextParam
    MM_keepMove = MM_keepBoth
    MM_moveParam = "index"
    ' if the page has a repeated region, remove 'offset' from the maintained parameters
    If (MM_size > 1) Then
      MM_moveParam = "offset"
      If (MM_keepMove <> "") Then
        MM_paramList = Split(MM_keepMove, "&")
        MM_keepMove = ""
        For MM_paramIndex = 0 To UBound(MM_paramList)
          MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1)
          If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then
            MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex)
          End If
        Next
        If (MM_keepMove <> "") Then
          MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1)
        End If
      End If
    End If
    ' set the strings for the move to links
    If (MM_keepMove <> "") Then
      MM_keepMove = Server.HTMLEncode(MM_keepMove) & "&"
    End If
    MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "="
    MM_moveFirst = MM_urlStr & "0"
    MM_moveLast  = MM_urlStr & "-1"
    MM_moveNext  = MM_urlStr & CStr(MM_offset + MM_size)
    If (MM_offset - MM_size < 0) Then
      MM_movePrev = MM_urlStr & "0"
    Else
      MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size)
    End If
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Southern Store Fixtures Inc.</title>
    <link href="CSS/global.css" rel="stylesheet" type="text/css" />
    <link href="CSS/layout.css" rel="stylesheet" type="text/css" />
    <link href="CSS/details.css" rel="stylesheet" type="text/css" />
    <!--beginning of lightbox script -->
    <link href="CSS/lightbox.css" rel="stylesheet" type="text/css" />
    <script src="Scripts/protype.js" type="text/javascript"></script>
    <script src="Scripts/scriptaculous.js?load=effects,builder" type="text/javascript"></script>
    <script src="Scripts/lightbox.js" type="text/javascript"></script>
    <!--end of lightbox script -->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    #apDiv1 {
    position:absolute;
    left:1226px;
    top:643px;
    width:284px;
    height:251px;
    z-index:1;
    a:link {
    color: #CCC;
    text-decoration: none;
    a:hover {
    color: #5FABFF;
    text-decoration: none;
    a:visited {
    text-decoration: none;
    a:active {
    text-decoration: none;
    </style>
    <link href="CSS/gallery.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <!--begining of wrapper div -->
    <div id="wrapper">
      <!---begining of header--->
      <div id="header"><img src="SSFLogo.png" width="298" height="96" alt="SSFlogo" /></div>
      <!---end of header--->
      <div id="banner"><img src="blueHeader_2.png" width="950" height="133" alt="header" /></div>
      <!---begining main nav--->
      <div id="mainNav"> 
        <ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a href="index.asp">Home</a>    </li>
        <li><a href="#" class="MenuBarItemSubmenu">Company Info</a>
          <ul>
            <li><a href="#">Privacy Policy</a></li>
            <li><a href="#">About Us</a></li>
            <li><a href="#">Jobs/Career</a></li>
            <li><a href="#">Information Request</a></li>
          </ul>
        </li>
        <li><a class="MenuBarItemSubmenu" href="#">Gallery</a>
          <ul>
            <li><a class="MenuBarItemSubmenu" href="#">Store Pictures</a>
              <ul>
                <li><a href="#">Item 3.1.1</a></li>
                <li><a href="#">Item 3.1.2</a></li>
              </ul>
            </li>
    </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">Products</a>
          <ul>
            <li><a href="#">Self Serve</a></li>
            <li><a href="#">Serve</a></li>
            <li><a href="#">Multi Decks</a></li>
            <li><a href="#">Combinations</a></li>
            <li><a href="#">Food Service</a></li>
            <li><a href="#">Islands</a></li>
            <li><a href="#">Produce</a></li>
            <li><a href="#">Floral</a></li>
            <li><a href="#">Hot Foods</a></li>
          </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">News/Events</a>
          <ul>
            <li><a href="#">Inside Look</a></li>
            <li><a href="#">Happenings</a></li>
            <li><a href="#">Trade Show Schedule</a></li>
          </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">Contact</a>
          <ul>
            <li><a href="#">Customer Service</a></li>
          </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">Buiss. Portal</a>
          <ul>
            <li><a href="#">Login</a></li>
          </ul>
        </li>
      </ul>
      </div>
      <!---end main nav--->
      <!---begining subBanner--->
      <div id="subBanner"><img src="secBanner.png" width="950" height="156" alt="secBanner" /></div>
      <!---end subBanner--->
      <!---begining contenMain--->
      <div id="contentMain">
        <!--beginning of gallery div -->
        <div id="gallery">
          <p>
            <!--beginning of galleryImage div -->
          </p>
          <table width="400" border="0" align="center" id="galleryNav2">
            <tr>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                  <a href="<%=MM_moveFirst%>">First</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                <a href="<%=MM_movePrev%>">Previous</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                <a href="<%=MM_moveNext%>">Next</a>
              <% End If ' end Not MM_atTotal %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                <a href="<%=MM_moveLast%>">Last</a>
              <% End If ' end Not MM_atTotal %></td>
            </tr>
          </table>
          <p> </p>
          <table align="center" id="HorzLooper">
            <%
    startrw = 0
    endrw = HLooper1__index
    numberColumns = 5
    numrows = 5
    while((numrows <> 0) AND (Not rs_ssfGallery.EOF))
    startrw = endrw + 1
    endrw = endrw + numberColumns
    %>
            <tr align="center" valign="top">
              <%
    While ((startrw <= endrw) AND (Not rs_ssfGallery.EOF))
    %>
              <td><div id="galleryImage">
                <div id="galleryThumb"><a href="images/pic/<%=(rs_ssfGallery.Fields.Item("picture_url").Value)%> rel="lightbox"><img src="images/thumb/<%=(rs_ssfGallery.Fields.Item("thumb_url").Value)%>" alt="<%=(rs_ssfGallery.Fields.Item("alt_url").Value)%>" /></a></div>
                <div id="galleryImageID"><%=(rs_ssfGallery.Fields.Item("picture_ID").Value)%></div>
                <div id="galleryImageFamily"><%=(rs_ssfGallery.Fields.Item("family").Value)%></div>
              </div></td>
              <%
    startrw = startrw + 1
    rs_ssfGallery.MoveNext()
    Wend
    %>
            </tr>
            <%
    numrows=numrows-1
    Wend
    %>
          </table>
          <p> </p>
          <table width="400" border="0" align="center" id="galleryNav">
            <tr>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                  <a href="<%=MM_moveFirst%>">First</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                  <a href="<%=MM_movePrev%>">Previous</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                  <a href="<%=MM_moveNext%>">Next</a>
              <% End If ' end Not MM_atTotal %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                  <a href="<%=MM_moveLast%>">Last</a>
              <% End If ' end Not MM_atTotal %></td>
            </tr>
          </table>
    <!--end of galleryImage div -->
        </div>
        <!--end of gallery div -->
      </div>
      <!---end of contentMain--->
      <!---begining of contentSec--->
      <div id="contentSec">
        <div id="column1"></div>
        <div id="column2"></div>
        <div id="column3"></div>
      </div>
      <!---end of contentSec--->
      <!---begining of secNav--->
      <div id="secNav">
        <div id="column1">
          <p align="center">Supermarket  </p>
          <p align="center">C-Store </p>
          <p align="center">Small  Format  </p>
          <p align="center"> Food  Service </p>
          <p align="center"> Gourmet </p>
          <p align="center"> Restaurant</p>
        </div>
        <div id="column2">
          <p align="center">Produce </p>
          <p align="center">Prepared  Foods</p>
          <p align="center">Deli </p>
          <p align="center"> Meat </p>
          <p align="center">Seafood </p>
          <p align="center">Cheese </p>
          <p align="center">Bakery </p>
          <p align="center">Floral </p>
          <p align="center">Sushi </p>
          <p align="center"> </p>
    </div>
        <div id="column3">
          <p align="center">Soup </p>
          <p align="center"> Chocolate   </p>
          <p align="center">Food  Bars </p>
          <p align="center">Low  Temp </p>
          <p align="center">Gelato </p>
          <p align="center"> Hot  Cases </p>
          <p align="center"> Pizza/Sandwich </p>
          <p align="center"> Multi-Decks </p>
          <p align="center">  Islands</p>
          <p> </p>
        </div>
        <div id="column4">
          <p>Trade Shows</p>
          <p>About</p>
          <p>Info</p>
          <p>Privacy</p>
          <p>Content</p>
          <p>Service</p>
          <p>Parts</p>
          <p>Login</p>
        </div>
      </div>
      <!---end of secNav--->
      <!---begining of footer--->
      <div id="footer">Southern Store Fixtures 2010 Inc.| All Rights Reserved</div>
      <!---end of footer--->
    </div>
    <!--end of wrapper div -->
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    </html>
    <%
    rs_ssfGallery.Close()
    Set rs_ssfGallery = Nothing
    %>

  • Employee Address Entry (Address Stype pop-up window not come in R12)

    Hi
    I have implemented Oracle HRMS (11.5.10.*). But now I am going to implement HRMS in R12 (12.0.6).
    My Problem is, In 11i when I would want to enter any Employee Address a pop-up window come to select address style
    by In R12 there is no pup-up window come. But My client requirement is to use different address style.
    Anyone could help me to could i get the address style pup-up window.
    Regards
    Makshud

    Hi Winnie
    Unfortunately I have been sick and did not read the message before. I apologize.
    I have not received help beyond what is on the page. But when I get I tell you.
    I hope you can get answers. If you receive, I ask that you share with me.
    thank you very much
    best regards
    AC
    Date: Mon, 27 Feb 2012 09:33:10 -0700
    From: [email protected]
    To: [email protected]
    Subject: Pop up Window before saving remembering the need (forcing) to fill required fields in a form
        Re: Pop up Window before saving remembering the need (forcing) to fill required fields in a form
        created by Win_Form in Forms - View the full discussion
    Hi ACI wonder if you can share any responses on to your question above?I too have never used a script but, I have the same problems as you in regards to building a form. And wants to have the same 'protection' and message reminders for the end users. Any information, including a script and/or a contact email of experts you can share with me will help tremendously. Thank you so much in advance. Winnie
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4232307#4232307
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4232307#4232307. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Forms by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Opening a pop up window from another pop up window

    Hi i'm having difficulty doing this, i'm redoing the business
    directory at this address:
    http://www.localeyenewspaper.com/business.html
    When you click on an ad, on some companies that have website
    i want to put a link below the ad in the pop up window and when the
    user clicks on it another pop up window opens with their site.
    However when i tried to do this instead of another window opening,
    the window with the advert went to the site, and it also stayed the
    same size without resizing to the dimensions i need to display the
    website, can anyone help me? Thanks

    <script type="text/javascript">
    <!--
    var newWin2;
    function MM_openBrWindow2(theURL,winName,features) {
    //v2.0custom
    newWin2=window.open(theURL,winName,features);
    //-->
    </script>
    <a href="
    http://www.dmpowerwashing.co.uk"
    class="style1"
    onclick="MM_openBrWindow2('
    http://www.dmpowerwashing.co.uk','dm','toolbar=yes,loc
    ation=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=1200,height=
    800');return false;">
    Note I've renamed the function and the function call (and
    added "return
    false" to the latter.) This means you'll no longer be able to
    modify it
    using the OpenBrowserWindow behavior in the Behaviors window.
    emichael
    Stuart.hamilton wrote:
    > Here's the code for a pop up window that i want to link
    to another pop up.
    > Where would i put the new code in this? thanks
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8" />
    > <title>Untitled Document</title>
    > <style type="text/css">
    > <!--
    > .style1 {font-family: Verdana, Arial, Helvetica,
    sans-serif}
    > -->
    > </style>
    > <script type="text/javascript">
    > <!--
    > function MM_openBrWindow(theURL,winName,features) {
    //v2.0
    > window.open(theURL,winName,features);
    > }
    > //-->
    > </script>
    > </head>
    >
    > <body>
    > <p><img src="../ADs/Useful services
    /Power-washing2.png" width="394"
    > height="438" /></p>
    > <p><a href="
    http://www.dmpowerwashing.co.uk"
    class="style1"
    > onclick="MM_openBrWindow('
    http://www.dmpowerwashing.co.uk','dm','toolbar=yes,loc
    >
    ation=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=1200,height=
    > 800')">www.dmpowerwashing.co.uk</a></p>
    > </body>
    > </html>
    >
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Having problems with a pop up window when downloading

    Hi all,
    i developed a site in asp.net,
    everytime i click to download a file on the site, it opens a *blank window* and leaves it open, it only happens with safari, it works fine with the other popular browsers, with the others, it opens the download box directly.
    for safari it still downloads directly but the blank pop up window still stays open.
    im not a pro, but would like to fix this, i would be really greatul if someone could help me for this,
    Thanking you in advance!

    Thank you for your response Carolyn,
    but unfortunately it has more to do with coding compatibility, i put the target to blank as highlighted. it opens the window for all browsers and closes it automatically when the download starts, but with safari it stays open.
    here is the code for the download asp.net function,is there anything which needs to be put up there to be compatible with safari?
    i do hope that it is now clearer,
    thanking you again!
    <table border="0" cellspacing="0" cellpadding="0" style="margin-left:0;">
    <tr>
    <td width="185" height="89" align="center"></td>
    </tr>
    <tr>
    <td height="30" align="center" ><table width="100%" border="0" cellpadding="0" cellspacing="5">
    <tr>
    <td width="38%" align="right" ></td>
    <td width="62%" align="left" class="riqi">Campus</td>
    </tr>
    </table></td>
    </tr>
    </table>
    </td><td></td><td></td><td></td><td></td>
    </tr>
    </table>
    Message was edited by: positivologist

  • Create pop-up windows in forms 10g

    I have an application in which several formal controls are made before insert/update a record. Some of them are blocking, some others arent.
    Actually, at every constraint violation, a message is displayed with an alert. So, the user may got one or more alerts before he succeed in inserting/updating a record. And it may be annoying to click on 'OK' a lot of times!
    So, I wish to collect all error message and display them in a window, which is to be displayed in a pop-up way (something like the alerts that appear at the bottom-right corner of our screen when we have new mail).
    The issue is that the pop-up window must not disturb the user, i.e it should be displayed and iconized after few seconds, leaving the focus on the main window.
    I tried several solutions, but each of them have some issues.
    External HTML page: maybe its the easiest solution. But bluring it, the focus doesnt return to the form application.
    New window: I can run and iconize it. But, as in the previous case, the main window lost the focus.
    New canvas: I put a text item LOG_ERRORS in a new canvas, in the same main window. But when I run it, the main canvas disappear.
    does anyone know how to create popup windows in forms 10g (if it is possible)?
    thank you

    You can use a new window and set "Window Style" to "Dialog" then you can show the window without the main-window loosing the focus

  • Stopping pop up windows

    How come some pop up windows still appear even if Safari is set up to stop them in the preferences?

    Because popups are triggered with JavaScript and Flash, so unless you want to disable both of those, you can't avoid them all. You might find this link useful, as it provides code for custom style sheets to block Flash ads.
    Mulder

  • Javascript Pop-up window

    Hello guys. PLEASE HELP ME!
    I have the Javascript for opening a page into a pop up window
    with no toolbars, scrollers etc….
    Here is the code that I enter in the html page itself in the
    HEAD tags:
    </style></head>
    <script language="JavaScript">
    function openNewWindow(URLtoOpen, windowName, windowFeatures)
    newWindow=window.open(URLtoOpen, windowName, windowFeatures);
    </script>
    Here is the code that I enter into a button from the flash
    movie:
    on (release) {
    getURL("\r\njavascript:openNewWindow('main.html','thewin',\\r\\n'width=1280,height=980,to olbar=no,scrollbars=yes')");
    What I am looking for is that I need the popup window to open
    not by specifying WIDTH and HEIGHT as above in my script, but I
    would like the html to extend and open on a percentage way thus to
    fit any monitor.
    I tried this but it wasn’t working:
    'width=100%,height=100%
    Or
    'width=default, height=default
    I hope someone has the clue for me regarding this issue.
    Thanks a lot for your efforts,
    Beko

    Here you go....
    <script type="text/javascript">
    <!--
    function popup(url)
    params += ', directories=no';
    params += ', location=no';
    params += ', menubar=no';
    params += ', resizable=no';
    params += ', scrollbars=no';
    params += ', status=no';
    params += ', toolbar=no';
    params += ', fullscreen=yes';
    newwin=window.open(url,'windowname', params);
    if (window.focus) {newwin.focus()}
    return false;
    // -->
    </script>
    <a href="javascript: void(0)"
    onclick="popup('popup.html')">Fullscreen popup window</a>
    Thanks & Regards
    Ankur Arora
    Project Leader(Flash and Flex)
    http://flashdeveloper.blogspot.com
    let your
    thoughts fly to others... you will become rich.

  • How to use one pop up window for multiple buttons and input fields?

    Hi Experts,
    I have created a pop up window that will be opened from multiple buttons in the same view. There are input fields that the data will be populated from a pop up window.  How can I set up which button that a pop up window is opened from? I also would like to populate the data from a pop up window to the input field next to a clicked button. There are 6 buttons and 6 input fields that share the same pop up window. I would very appreciate your responses.
    Thank you,
    Don

    Hi,
    Try creating 2 context attributes, one in your component controller and the other in the pop-up view. Bind the attribute of pop-up view to the component controller attribute.
    In the main view, on click of every button set a unique code in the controller's context which helps you in identifying the button clicked. Since u have created a binding to the pop-up view attribute the value flows from the controller.
    In the init method of your pop-up view, check the value of the attribute and based on that display which ever UI elements are required.
    Eg:
    On Button 1 click set value "B1", Button 2  value "B2" etc. In the init() of pop-up view u can check the values and perform the required operation:
    if(("B1").wdContext().currentContextElement().getButtonIdentifier()){
    else...{
    Hope this helps you.
    Regards,
    Poojith MV

  • Since installing 3.6.9 my Joomla content editor pop-up windows no longer return the URLs selected

    I recently upgraded to Firefox 3.6.9 and found that when using the editor in a Joomla 1.0.15 website , the content editor pop-up windows no longer return URLs selected (eg: image or file URL to be used in a link). I have been using the site with no problems for many years, and the problem was cured when I reinstalled 3.6.8

    Thanks cor-el but the problem is not in my web development but is a new issue/problem in FireFox which was not present in all versions up to and including version 3.6.8 and was only introduced in version 3.6.9. I have also established that the same problem also exists in FireFox version 4 beta 6 and have therefore also raised a second question today.
    My understanding was that I should raise these issues in this forum, but I will also check out the other forum.

Maybe you are looking for

  • Is there any way to merge multiple pdf into one?

    Hi, Is any there any way to convert different frame files into pdf and merge them into one programmatically using FDK11. Like, for example, a.fm, b.fm, c.fm  to abc.pdf Thanks, Venkat

  • Poor network when create virtual switch in hyper-v 2012

    Hello, i installed on DELL R620 windows server 2012 STD and add the hyper-v role when i created a virtual switch , the speed of network in the HOST( the server itself) is ver poor ( copy file from fileserver is 300Kbs) when i remove the virtual switc

  • IMac very slow with near constant beach ball :(

    Any help is much appreciated!  Here is my EtreCheck report: EtreCheck version: 2.0.2 (86) Report generated October 12, 2014 at 8:34:25 PM EDT Hardware Information: ℹ️     iMac (27-inch, Mid 2010) (Verified)     iMac - model: iMac11,3     1 3.2 GHz In

  • Macbook pro stalls during startup

    My macbook pro with Yosemite stalls during startup.  I've tried Command R and ran disk utility.  The disk is ok.  I've zapped the RAM but it still stalls about 25% of the way through the startup process.

  • Material Status

    Hi, what is the difference between these two fields VPSTA   (Direct input: field MARA-VPSTA (full maintenance status) PSTAT  (Direct input: field MARA-PSTAT (maintenance status)) Thanks.