Shadowbox (lightbox) and spry

Hi,
I have a question. I am trying to get spry working with the
new lightbox version: shadowbox but somehow it doesn't work. Here
is my example page maybe someone has a solution.
http://www.jt.nl/media/ew/jtbioscopen/mark/trailers/index.html

Sorry if im not getting the explanations in these post but i
am having real trouble here.
I have a div id="ssc" that is hidden on a page (it is going
to have a detail region from a spry data set named rsSS)
I use thickbox to show that div.
On the main page i have a spry table with each row will have
an edit buttion. This edit button will open the thickbox. and
seeing that the edit button already getting repeated in each row,
by clicking on the button it sets the detail region because it is
in the row that has the onclick event that has the code to set the
detail region.
This code for the button works on other pages i have when it
isnt located in a spry region.
<input type="button" name="button4" id="button4"
value=">"
alt="#TB_inline?height=550&amp;width=700&amp;inlineId=ssc"
title="Add Invoice" class="thickbox"/>
But as soon as you put it in the Spry:Region=" rsSS" that no
longer works. Nothing happens not even an error.
Can someone help me with the coding
Here is my coding that is important
Head-
<script type="text/javascript"
src="../../Scripts/jquery.js"></script>
<script type="text/javascript"
src="../../Scripts/thickbox.js"></script>
<link rel="stylesheet" href="../../css/thickbox.css"
type="text/css" media="screen" />
<script src="../../SpryAssets/xpath.js"
type="text/javascript"></script>
<script src="../../SpryAssets/SpryData.js"
type="text/javascript"></script>
var rsSS = new
Spry.Data.XMLDataSet("../../rstoxml/ssDetail.php?SubID=<?php
echo $row_rsSSphp['SubID']; ?>", "export/row",{useCache:false});
Body-
<div id="ssc" spry:region="ssCont rsSS">
<div spry:choose="choose">
<div spry:when="{ds_RowCount} == 0">
<table width="100%" cellpadding="2" cellspacing="0"
height="111" class="panelRating">
<tr>
<td height="69" align="center"
valign="middle"><strong>There are no
Contacts</strong></td>
</tr>
<tr>
<td height="40" align="center" valign="middle">
<input type="button" name="button3" id="button3"
value="Add Contact"
onclick="document.getElementById('apDiv1').style.display=(document.getElementById('apDiv1 ').style.display==
'block')?'none':'block';" /> </td>
</tr>
</table>
</div>
<div spry:when="{ds_RowCount} > 0">
<table width="100%" cellpadding="2" cellspacing="0"
class="paneltable">
<tr class="panelheaders">
<th width="4%" align="left"> </th>
<th width="20%" align="left"
spry:sort="SubCLName">Name</th>
<th width="15%" align="left">Phone</th>
<th width="9%" align="left">Ext:</th>
<th width="14%" align="left">Cell:</th>
<th width="19%" align="left">Email:</th>
<th width="19%" align="left"> </th>
</tr>
<tr spry:repeat="ssCont" spry:setrow="ssCont"
spry:odd="TBRowOdd" spry:even="TBRowEven" spry:hover="TBRowHover"
>
<td><input type="checkbox" name="DelC[]"
id="DelC[]" value="{ssContactID}" /></td>
<td align="left">{SubCLName}, {SubCFName}</td>
<td><div spry:choose="spry:choose">
<div spry:when="'{SubCPhone}' >
''">{SubCPhone}</div>
<div
spry:default="spry:default">{rsSS::SubPhone}</div>
</div></td>
<td>{SubCExt}</td>
<td>{SubCCell}</td>
<td>{SubCEmail}</td>
<td><input type="button" name="button4"
id="button4" value=">"
alt="#TB_inline?height=550&amp;width=700&amp;inlineId=apDiv2"
title="Add Invoice" class="thickbox"/>
<input type="button" name="Outlook" id="Outlook"
value="Outlook"
onclick="MM_openBrWindow('../../Scripts/vcardSSC.php?ssContactID={ssContactID}','','width =200,height=100')"
/>
<input name="EmailContact" type="button"
id="EmailContact"
onclick="MM_openBrWindow('mailto:{SubCEmail}','','')"
value="Email"/></td>
</tr>
<tr>
<td align="center" valign="middle"
colspan="7"><input type="submit" name="ssContactDel"
id="ssContactDel" value="Delete" />
<input type="button" name="button3" id="button3"
value="Add Contact"
onclick="document.getElementById('apDiv1').style.display=(document.getElementById('apDiv1 ').style.display==
'block')?'none':'block';" /></td>
</tr>
</table>
</div>
</div>
</div>

Similar Messages

  • Lightbox 2 and Spry Accordian

    Hello,
    Does anyone know if there might be an incompatibility issue
    with lightbox 2 and spry accordians with Explorer?
    compare these 2 pages in explorer
    http://www.pearceco.com/bowdoin_square.html
    http://www.pearceco.com/bowdoin_square3.html
    click on the one bedroom floorplan link (right hand side) in
    each
    In Explorer on a pc in the second page (the page with the
    accordian) sometimes the page won’t even
    open... What is most perplexing is that this all worked
    before... go figure.
    Please help,
    elizabeth

    >>>>Any thoughts as to why?
    Not without seeing the code.
    Can you post a link to the page showing the problem
    behaviour?
    Regards
    John Waller

  • UI Datepicker and Spry textfield Validation

    Hi, I am having a problem with using the UI Date picker and Spry textfield Validation together. I have created a sample form: 2 input boxe, the test box has the datepicker and spry validation and test2 has the date picker only,one submit button and some php code that echos the boxes values on submit.
    My date picker is date formated as 'yy-mm-dd' for four digit year.  My spry validation is formated 'yyyy-mm-dd' with validate on submit.
    Now when I click on the test input box the datepicker comes up normally and i select a date. I then select the date on test2. Once I click the submit button the test field with spry validation come back saying a value is required and nothing else happens.
    I was playing around and trying other things to get it to work and I noticed that when I select the test inputbox and the calander pops up if I enter some numbers into the text box then select a date from the datepicker then enter a date in the test2 inputbox and hit submit it works.
    So it appears to me that the validation is not reading anything in the test field when I just select a date.  Why is that?  When I select a date it shows a date in the inputbox.  It makes it hard to use the datepicker on a form.
    Any help would be a preciated.  Code is below.
    Thanks Winrol
    <?php echo "Test box 1 value = ". $_POST['test']. "<br/>" ?>
    <?php echo "Test box 2 value = ". $_POST['test2'] ?>
    <!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>
    <script src="jquery-ui-1.7.2/js/jquery-1.3.2.min.js" type="text/javascript"></script>
    <script src="jquery-ui-1.7.2/js/jquery-ui-1.7.2.min.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <link href="jquery-ui-1.7.2/css/base/ui.core.css" rel="stylesheet" type="text/css" />
    <link href="jquery-ui-1.7.2/css/base/ui.datepicker.css" rel="stylesheet" type="text/css" />
    <link href="jquery-ui-1.7.2/css/base/ui.theme.css" rel="stylesheet" type="text/css" />
    <link href="jquery-ui-1.7.2/css/base/ui.datepicker.images.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    /* BeginOAWidget_Instance_2137022: #datepicker */
    #datepicker .ui-widget {
    font-family: inherit;
    #datepicker .ui-datepicker {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    #datepicker .ui-datepicker-title {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 1.1em;
    color: #000;
    font-weight: normal;
    line-height: 1.8em;
    #datepicker .ui-state-default, .ui-widget-content .ui-state-default {
    border-color: #e6e6e6;
    background-color: #e6e6e6;
    color: #555555;
    #datepicker .ui-state-default, .ui-state-default a {
    color: #555555;
    #datepicker .ui-state-highlight, .ui-widget-content .ui-state-highlight {
    border-color:#FCEFA1;
    background-color:#FCEFA1;
    color:#363636;
    #datepicker .ui-state-active, .ui-widget-content .ui-state-active {
    border-color: #FFFFFF;
    background-color: #FFFFFF;
    color: #212121;
    #datepicker .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus
    border-color: #5F5F5F;
    background-color: #5F5F5F;
    color: #212121;
    #datepicker .ui-widget-header
    border-color: #5F5F5F;
    background-color: #808080;
    border-width: 1px;
    /* Text attributes for the Days of Week Text */
    #datepicker .ui-datepicker table th
    font-size: .8em;
    color: #000;
    font-weight: bold;
    /* EndOAWidget_Instance_2137022 */
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2137022" binding="#datepicker" />
    </oa:widgets>
    -->
    </script>
      <script type="text/javascript">
    // BeginOAWidget_Instance_2137022: #datepicker
    $(function() {
    $('input').filter('.datepicker').datepicker({dateFormat: 'yy-mm-dd'});
    // EndOAWidget_Instance_2137022
      </script>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
    background-color: #FFC;
    </style>
    </head>
    <body>
    <form id="form1" name="form1" method="post" action="">
      <p>
        <label for="test">test</label>
        <span id="sprytextfield1">
        <input name="test" type="text" class="datepicker" id="test"/>
        <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Invalid format.</span></span></p>
      <p>
        <label for="test2">test2</label>
        <input name="test2" type="text" id="test2"  class="datepicker" />
      </p>
      <p onclick="<?php echo $_POST['test'] ?>">
        <input type="submit" name="submit" id="submit" value="Submit" />
      </p>
    </form>
    <script type="text/javascript">
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "date", {format:"yyyy-mm-dd", hint:"yyyy-mm-dd"});
    </script>
    </body>
    </html>

    This does work
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet">
    <link href="jquery-ui-1.7.2/css/base/ui.core.css" rel="stylesheet">
    <link href="jquery-ui-1.7.2/css/base/ui.datepicker.css" rel="stylesheet">
    <link href="jquery-ui-1.7.2/css/base/ui.theme.css" rel="stylesheet">
    <link href="jquery-ui-1.7.2/css/base/ui.datepicker.images.css" rel="stylesheet">
    </head>
    <body>
    <form action="" method="post">
    <span id="sprytextfield1">
    <label for="mydate">Date:</label>
    <input id="datepicker" name="mydate" type="text">
    <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Invalid format.</span></span>
    <div id="datepicker" class="ui-glass-gradient ui-80TopTo0Bottom-gradient-header"></div>
    <input name="mysubmit" type="submit">
    </form>
    <script src="SpryAssets/SpryValidationTextField.js"></script>
    <script src="jquery-ui-1.7.2/js/jquery-1.3.2.min.js"></script>
    <script src="jquery-ui-1.7.2/js/jquery-ui-1.7.2.min.js"></script>
    <script>
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "date", {format:"mm/dd/yyyy", validateOn:["change"], useCharacterMasking:true});
    $(function() {
        $('#datepicker').datepicker({ showOtherMonths: false });
    </script>
    </body>
    </html>
    Gramps

  • CS 6; jQyery UI, and Spry

    Greetings.   I have recently installed Dreamweaver CS6 and in the insert panel I see jQuery Mobile, and Spry.   I thought Spry had been replaced with jQuery UI starting version 5.5, but jQuery UI is not anywhere in the insert panel.    Can someone eplain the error in my assumption?
    Thanks in advance.

    jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. It is open source and everyone is invited to create plugins for it. jQuery is also a real pain. If you didn't write the plugin, you're on your own for future compatibility with the jQuery API. If something is written incorrectly or if something doesn't work, you really have no guaranteed place to go for help or technical support. Also, jQuery is more than mobile—it works on desktop computers as well.
    The Spry Framework is an open source Ajax framework developed by Adobe Systems which is used in the construction of Rich Internet applications. It's designed for designers, not developers. Adobe abandoned it and gave it over to Github, where it's a lot like jQuery: supported on an ad-hoc basis by people who are writing the code.
    Adobe dropped jQuery support after adopting it. So I'm not sure which way they are going to jump here.
    Both are valid and both work. But the best way to work with these tools is to learn how to call the code and learn how to call the plugins.
    -Mark

  • Split Spry.Data and Spry.Data.Region from SpryData.js?

    I don't like Spry.Data.Region or anything like Spry.*.Region because it make hard to customize using javascript.
    But Spry.Data with Observer / Notify feature is great one. In fact, using SpryData.js, I can write my own "render html object" easier.
    SrpyData.js is big (127KB) even when compressed, it is still 65KB. That why, needed split Spry.Data and Spry.Data.Region from SpryData.js so who want to use Spry.Data only like me will get smaller trafic.
    I've tried remove all Spry.Data.Region content in SpryData.js. Surprise, some in Spry.Data call to Spry.Data.Region >>> Design have problem.
    Anyone can help splitting them?

    Found this in the archives:
    <div spry:if="{ds_RowCount} == 0" class="trigger" style="display:none"></div>
    Basically a hack to point the tooltip to a hidden div so no errors are thrown.

  • I have some Flash and Spry issues

    Hi everyone!
    I have one question about Flash and Spry Accordion panels. I
    made this site for a school project and got the go ahead and do
    these ladies' website. They love it! They loved the Panels, but I
    don't like what Flash and the panels are doing in FireFox.
    http://hoittsappraisals.com/
    What I'm seeing is the panels sliding under the Flash element
    that is in the first panel, but in IE its fine. What can I do to
    fix it if there is a fix?
    Thank you! And I can't wait till I can try CS3 I've seen the
    Spry features that are built in and am totally jealous that it's
    goin to be super easy to incorporate, when we've been slaving away
    by hand!! haha, anyway, Any comments on the site would be much
    appreciated!
    Thanks
    Noah W

    Hi Noah,
    Your flash object is using a native window ... which mozilla
    (firefox) can't clip from the main canvas window underneath it.
    There's an attribute/arg you can pass to flash that tells it
    to share the same canvas as the browser. I think its called wmode,
    but I'm not a flash person. I've asked folks internaly who are more
    knowledgeable than me in the flash arena, so I'll get back to you
    when they get back to me.
    --== Kin ==--

  • Scriptaculous and Spry

    I tried to add a help balloon widget ( from
    BeauScott.com)
    which is a handy little way to add help info. it uses the
    Scriptaculous framework and some enhancements to it.
    It seems tht Scriptaculous and SPRY dont play well together.
    Any idea's why? or a workaround I can do?
    thanks Jim

    After some further investigation I found that it works just
    fine in Firefox and Netscape but not in IE.
    It gives an "object doesn't support method or property" error
    in IE no idea why it wouldnt do same in forefox.
    I found if I comment out the SpryData.js it doesn't error.
    Not sure if it is the Prototype, Scriptaculous, Prototype
    enhancements from BeauScott.com. I'll do some more investigating
    when I get a chance.
    http://www.bardenhomes.com/pcs/sg/hbtest.asp
    the above page has a working Help Balloon and a link to a
    page with it not working for IE.

  • ADDT Datepicker and spry validation don't work together

    Datepicker and spry validation don't work together
    the problem is in: /includes/wdg/classes/MXWidgets.js
    (necessary to datepicker)
    Does anyone have a solution??
    Thanks

    Hi Gabriele,
    technically speaking, ADDT and the Spry framework have about nothing in common, and you´re going to stumble across many compatibility-related issues when trying to use them together.
    Does anyone have a solution??
    any regular user who´d like to provide a solution to this, would have to be a pretty skilled programmer and would have to know the "technical details" of both ADDT and SPRY very well to be of help -- I don´t think that you´ll find many folks here who are capable to do that.
    However, why not making the date field required in ADDT ?
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Need a little help with Slimbox (Lightbox clone) and Spry data sets

    Hello guys!
    First of all let me say that I'm not a programmer in any way,
    shape or form, and somehow I managed to build me a dynamic
    thumbnail gallery that reads data from an XML file and displays it
    on my webpage using a Spry data set and a slider widget (yay!)
    This is of course only thanks to the many great examples
    provided by the Adobe Spry team, and me being stubborn enough to
    keep at it, even though I don't really understand what I'm doing :D
    But I got to this point where I have basically everything
    working, except that I can't get the Slimbox (Lightbox clone)
    script to work with the Spry-generated thumbnail gallery.
    From what I could understand from other threads on this
    forum, is that I need to add an observer somewhere, only that I'm
    not sure where and how (those threads are pretty old and the
    examples aren't available anymore).
    I'm sure you guys know what I'm talking about, anyway, here's
    what I got so far:
    http://www.riotdesign.com.ar/misc/gallery/test1.html
    I have the thumbnail gallery populated from the external XML
    file, a basic page navigation using the Sliding Panels widget, and
    the Slimbox script which works only on the static test image.
    Okay I guess that's it for now, sorry for the long post and
    of course any help with this will be GREATLY appreciated :)
    Thanks & bye!

    Kev,
    Where exactly does the .evalScripts = true; text need to go?
    Does it go in the href call?
    <a href="ManageNotes.asp" title="Manage Notes" onClick="this.blur();
    Modalbox.show(this.href, {title: 'Manage Notes', width: 575}); return false;">View your notes.</a>
    Thanks for any assistance.
    J Bishop

  • LightBox widgets and Spry

    In a previous post, Adobe Spry Team had announced a Spry
    LightBox widgets in the 1.6 version ... I have download the last
    version today, but I don't see the widget ... will be included in
    the next version (1.7) ?
    Regards

    Hi Michele,
    I don't think we said we were going to release one in 1.6,
    and if I did, I misspoke.
    It's on our list but we haven't started it yet. We have some
    image management widgets in mind and the new gallery demos are
    starting to lean that way, with the ImageLoader.js and such.
    But sorry if we mislead you. It was not intentional.
    Donald Booth
    Adobe Spry Team

  • Spry Conflicts with LightBox and ThickBox?

    i have tried to use both Lightbox2 and Thickbox on a page
    with a Spry dataset and both will not work (they work fine on
    non-Spry pages). It's just a simple gallery-style page. Any ideas
    on how to make them compatible?

    Sorry for the confusion, but I do have it set up correctly on
    my local machine. I only posted the HTML file so you could download
    it. I have all the included files in the right locations here
    (because it works using either SPRY 1.5 or Slimbox when I test it).
    Spry is definitely conflicting with Slimbox. I just made a
    simple test file, got slimbox working and slowly added the Spry
    pieces. It broke when I added the spry:region call in the div:
    <div id="content" spry:region="portfolio_xml">
    I don't understand these people that say they are using Spry
    and Slimbox without issues. Would be nice to see an example.

  • Lightbox and datepicker don't work togethor

    Hi, I have,or had, datepicker working on my website.  Once I added lightbox2 to my site my datepicker stopped working. If I comment out the links to lightbox2 then my date picker workes.  Thanks in advance for any help.
    Here is some code.
    =======================
    <!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>
    <!-- TemplateInfo codeOutsideHTMLIsLocked="true" -->
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <!--set variable and echo value in the title tags-->
    <title class= "header2">Keynote Speakers, Sports Celebrities and Emcee's | EMJ Marketing <?php $title="The Right Keynote Speakers, Emcee's  and Sports Celebrities   for your event" ?> </title>
    <!--<title class="header2">"Welcome"</title>-->
    <!-- TemplateEndEditable -->
    <link href="../NewEMJ.css" rel="stylesheet" type="text/css" /><!--[if lte IE 7]>
    <style>
    .content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */
    ul.nav a { zoom: 1; }  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */
    </style>
    <![endif]-->
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryValidationSelect.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script src="../jquery-ui-1.7.2/js/jquery-1.3.2.min.js" type="text/javascript"></script>
    <script src="../jquery-ui-1.7.2/js/jquery-ui-1.7.2.min.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <link href="../SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <link href="../SpryAssets/SpryValidationSelect.css" rel="stylesheet" type="text/css" />
    <link href="../SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <!-- DatePicker -->
    <link href="../jquery-ui-1.7.2/css/base/ui.core.css" rel="stylesheet" type="text/css" />
    <link href="../jquery-ui-1.7.2/css/base/ui.datepicker.css" rel="stylesheet" type="text/css" />
    <link href="../jquery-ui-1.7.2/css/base/ui.theme.css" rel="stylesheet" type="text/css" />
    <link href="../jquery-ui-1.7.2/css/base/ui.datepicker.images.css" rel="stylesheet" type="text/css" />
    <!--lightbox2 -->
    <script type="text/javascript" src="../lightbox2/prototype.js"></script>
    <script type="text/javascript" src="../lightbox2/scriptaculous.js?load=effects,builder"></script>
    <script type="text/javascript" src="../lightbox2/lightbox.js"></script>
    <link rel="stylesheet" href="../lightbox2/lightbox.css" type="text/css" media="screen" />
    <style type="text/css">
    table {
    width: 896px;
    color: #D6BD38;
    background-repeat: no-repeat;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    body {
    background-color: #000;
    a:visited {
    color: #D6BD38;
    a:link {
    color: #D6BD38;
    </style>
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-24112472-1']);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    <style type="text/css">
    /* BeginOAWidget_Instance_2137022: #datepicker */
      #datepicker .ui-widget {
       font-family: inherit;
      #datepicker .ui-datepicker {
       font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      #datepicker .ui-datepicker-title {
       font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
       font-size: .8em;
       color: #000000;
       font-weight: normal;
       line-height: 1.8em;
      #datepicker .ui-state-default, .ui-widget-content .ui-state-default {
    border-color: #d6bd38;
    background-color: #d6bd38;
    color: #F7DA3D;
      #datepicker .ui-state-default, .ui-state-default a {
    color: #F7DA3D;
      #datepicker .ui-state-highlight, .ui-widget-content .ui-state-highlight {
    border-color:transparent;
    background-color:transparent;
    color:#F7DA3D;
      #datepicker .ui-state-active, .ui-widget-content .ui-state-active {
    border-color: #cccccc;
    background-color: #cccccc;
    color: #F7DA3D;
      #datepicker .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus 
    border-color: #666666;
    background-color: #666666;
    color: #000;
      #datepicker .ui-widget-header 
       border-color: #d6bd38;
       background-color: #000000;
       border-width: 1px;
      /* Text attributes for the Days of Week Text */
      #datepicker .ui-datepicker table th
       font-size: .8em;
       color: #d6bd38;
       font-weight: bold;
    /* EndOAWidget_Instance_2137022 */
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2137022" binding="#datepicker" />
    </oa:widgets>
    -->
    </script>
    </head>
    =================================
    Thanks winrol

    Check this link should work for you
    http://api.jquery.com/jQuery.noConflict/

  • Problem with layout and spry menu in IE

    My navigation bar looks fine in Foxfire and Safari, but is all messed up in IE.
    here is a link to the page:
    http://vacationlandphotography.com/tls/header.html
    here is my code:
    <html>
    <head>
    <title>The Landing School</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <!-- ImageReady Styles (header.psd) -->
    <style type="text/css">
    <!--
    body {
        text-align:center;
        background-color: #000000;
    #wrapper {
        margin: 0 auto;
        width: 1000;
        text-align:left;
    #Table_01 {
        margin: 0 auto;
        left:0px;
        top:0px;
        width:1000px;
        height:133px;
    #header-01 {
        position:relative;
        left:0px;
        top:0px;
        width:1000px;
        height:102px;
    #header-02 {
        position:relative;
        left:0px;
        top:0px;
        width:720px;
        height:30px;
    #header-03 {
        position:relative;
        left:697px;
        top:-31px;
        width:141px;
        height:31px;
    #header-04 {
        position:relative;
        left:838px;
        top:-61px;
        width:29px;
        height:31px;
    #header-05 {
        position:relative;
        left:867px;
        top:-92px;
        width:30px;
        height:31px;
    #header-06 {
        position:relative;
        left:897px;
        top:-123px;
        width:31px;
        height:31px;
    #header-07 {
        position:relative;
        left:928px;
        top:-154px;
        width:27px;
        height:31px;
    #header-08 {
        position:relative;
        left:955px;
        top:-185px;
        width:45px;
        height:31px;
    -->
    </style>
    <!-- End ImageReady Styles -->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    </head>
    <body style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px;">
    <div id="wrapper">
    <!-- ImageReady Slices (header.psd) -->
    <div id="Table_01">
        <div id="header-01">
            <img src="images/header_01.gif" width="1000" height="102" alt="">  </div>
        <div id="header-02">
          <ul id="MenuBar1" class="MenuBarHorizontal">
            <li><a class="MenuBarItemSubmenu" href="#">Wooden Boat Building</a>
                <ul>
                  <li><a href="#">Overview </a></li>
                  <li><a href="#">Career Options</a></li>
                  <li><a href="#">Alumni Profile</a></li>
                  <li><a href="#">Syllabus</a></li>
                  <li><a href="#">Admission</a></li>
              </ul>
            </li>
            <li><a href="#" class="MenuBarItemSubmenu">Composite Boat Building</a>
              <ul>
                <li><a href="#">Overview</a></li>
                <li><a href="#">Career Options</a></li>
                <li><a href="#">Alumni Profile</a></li>
                <li><a href="#">Syllabus</a></li>
                <li><a href="#">Admission</a></li>
              </ul>
            </li>
            <li><a class="MenuBarItemSubmenu MenuBarItemSubmenu" href="#">Yacht Design</a>
              <ul>
                <li><a href="#">Overview</a></li>
                <li><a href="#">Career Options</a></li>
                <li><a href="#">Alumni Profile</a></li>
                <li><a href="#">Syllabus</a></li>
                <li><a href="#">Admission</a></li>
              </ul>
            </li>
            <li><a href="#" class="MenuBarItemSubmenu">Marine Systems</a>
              <ul>
                <li><a href="#">Overview</a></li>
                <li><a href="#">Career Options</a></li>
                <li><a href="#">Alumni Profile</a></li>
                <li><a href="#">Syllabus</a></li>
                <li><a href="#">Admission</a></li>
              </ul>
            </li>
            <li><a href="#" class="MenuBarItemSubmenu">Overview</a>
              <ul>
                <li><a href="#">Mission</a></li>
                <li><a href="#">Location</a></li>
                <li><a href="#">Associate’s Degree</a></li>
                <li><a href="#">Tuition and Financial Aid</a></li>
                <li><a href="#">Admission</a></li>
                <li><a href="#">Faculty</a></li>
              </ul>
            </li>
          </ul>
      </div>
    <div id="header-03">
            <img src="images/header_03.gif" width="141" height="31" alt="">  </div>
    <div id="header-04">
        <a href="https://www.facebook.com/pages/The-Landing-School/81582557331?ref=ts" target="_top"><img src="images/header_04.gif" alt="" width="29" height="31" border="0"></a>    </div>
    <div id="header-05">
            <a href="http://twitter.com/#!/landingschool" target="_top"><img src="images/header_05.gif" alt="" width="30" height="31" border="0"></a>    </div>
    <div id="header-06">
            <a href="http://www.youtube.com/user/TheLandingSchool" target="_top"><img src="images/header_06.gif" alt="" width="31" height="31" border="0"></a>    </div>
    <div id="header-07">
            <a href="http://landingschool.blogspot.com/" target="_top"><img src="images/header_07.gif" alt="" width="27" height="31" border="0"></a>    </div>
    <div id="header-08">
            <img src="images/header_08.gif" width="45" height="31" alt="">
        </div>
    </div>
    <!-- End ImageReady Slices -->
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    </html>
    here is my CSS:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: none;
        width: 700;
        font-family: Arial;
        color: #FFFFFF;
        border: thin none #000000;
        height: auto;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
        background-color: #FFFFFF;
        font-family: Arial, Helvetica, sans-serif;
        color: #000000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 11px;
        text-align: center;
        cursor: crosshair;
        width: 138px;
        float: left;
        height: 29px;
        background-color: #FFFFFF;
        border: 1px solid #000000;
        font-family: Arial;
        color: #FFFFFF;
        word-spacing: -0.1em;
        letter-spacing: normal;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        font: Arial;
        z-index: 1020;
        cursor: default;
        width: 8.2em;
        position: relative;
        left: -500em;
        background-color: #999999;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        width: 8.2em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin: -5% 0 0 125%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border: 0px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        font: Arial;
        background-color: #999;
        padding: 0.5em 0.75em;
        color: #333;
        text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-color: #003366;
        color: #FFFFFF;
        border: 0px;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        background-color: #003366;
        color: #FFFFFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-image: none;
        background-repeat: no-repeat;
        background-position: 95% 50%;
        background-color: #FFFFFF;
        color: #000000;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarDownHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
        background: #FFF;
    thank you!
    Tote Road

    Your first difficulty is outlined here in the W3C Validation tool: http://validator.w3.org/check?uri=http%3A%2F%2Fvacationlandphotography.com%2Ftls%2Fheader. html&charset=%28detect+automatically%29&doctype=Inline&group=0
    Without a doctype declaration, the browsers don't know what to do with your code. Some apparently guess well. Internet Explorer, not so much.
    After you've fixed your page up by copying this
    <!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" />
    in place of this:
    <html>
    <head>
    either things will be improved or there will be something else cropping up. I opt for the former, myself!
    Beth

  • Problem with tooltips and spry data using startLoadInterval

    I am trying to use tooltips with a dynamic table using the spry data example at the bottom of the page:
    http://labs.adobe.com/technologies/spry/articles/tooltip_overview/index.html
    I have it working except that it appears to have a memory leak as firefox's memory usage continues to grow.
    I did notice there is a 'new' inside the onPostUpdate:function that is being called on every table update.
    So after looking at the tooltip code I modified the function to:
    <script type="text/javascript">
    var tt1;
    var observer = {onPostUpdate:function(){if(tt1 == null){tt1 = new Spry.Widget.Tooltip('tooltip','.trigger');}else{tt1.destroy(); tt1.destroy();if(tt1.checkDestroyed()) alert("destroyed");else alert("not destroyed");delete tt1; tt1 = new Spry.Widget.Tooltip('tooltip','.trigger');}}}
    Spry.Data.Region.addObserver('mainRegion', observer);
    </script>
    The tt1.checkDestroyed() always returns false and my memory usage continues to grow.
    Any help?

    Thanks for the reply.  I found a way to get it to work by changing my
    observer function to the following:
    else{tt1.destroy();
    tt1.init('.trigger', 'tooltip',
    {});tt1.attachBehaviors();Spry.Widget.Tooltip.loadQueue.push(tt1);}}
    Probably not very clean but it doesn’t grow memory and works correctly.
    I just put it back to the old way as in the example with a
    startLoadInterval(1500) :
    And I am over 500MB after ~ 30 minutes where as the top code above ran with
    a startLoadInterval(1500); overnight and is about ~120MB.
    I am using a double repeatchildren loop to build a table with tooltips for
    each cell which may affect it.
    Bottom line is I have a way to make it work so I am moving forward.  If you
    still want to see it I might be able to get it up on the internet and give
    you a link.
    Thanks,
    Greg Wirth

  • Using Multiple Datasets and Spry in DW CS3

    Hi there, I am currently trying to get an XML file pushed
    into a HTML page by using Spry in Dreamweaver CS3.
    However it uses three datasets. The schema is like this:
    funds-and-headings
    ----> properties+
    ------------> region
    ------------> reference
    ------------> known-as
    ------------> funds+
    ---------------------> type
    ---------------------> heads+
    -----------------------------> description
    (where there is a + this means a heading)
    but I am struggling to pull in the data.
    If I highlight 'properties' I can pull in the first 3 records
    but funds gives an 'unspecified' error message.
    I just want to know how I can then pull in the other fields
    all into one line and return all the results from the XML.
    Any hlep most welcome and sorry if I missed anything out that
    would help.

    Thought I'd drop a url so that my issue is more clear. :)
    This is in Alpha, but a url would be:
    http://center4spine.com.s11267.gridserver.com/how_we_help/spinal_decompression/
    . You'll see the categories on the left; clicking a title changes
    the content on the right. The first category's content is displayed
    initially. I need to be able to link directly to the FAQ. How do I
    get that page to show up with the FAQ loading first via a
    hyperlink? I hope that's more clear!

Maybe you are looking for

  • Music player in nokia n70

    have no music in music player when i try and save some all it says is not enough memory to complete this operation can any-one help

  • Fixed Field Movements with SAP New GL

    Good morning, I have added 2 new fields into FAGLFLEXA/T, these fields are standard into table BSEG and I want them to be active into the leading ledger. I tried to mapp these fields using "Fixed Field Movements mapping" (transaction GCI4, table T800

  • I am having problems applying the Photoshop 13.1 update

    This thread has been created for users facing difficulties applying the Photoshop 13.1 update.  Please begin by reviewing your installation logs to attempt to locate the point of failure.  You can find details on how to locate and interpret your inst

  • HELP: Possible to nest %=expression% within javascript code?

    Hi, I'm working on an application where I need to use dynamic JSP variables in javascript, as shown below onclick="jsFunc(this.form, '<=myClass.getSpecialString()%>');">(Te code is originally within a button tag) This will not work, any ideas why? If

  • "Other" Taking up Space!!!

    I know it's most likely vital to my iPod's operation, but the "other" category, under capacity when I plug my iPod into iTunes is about 550 MB. It doesn't seem like a lot compared to my 30GB max, but since my iPod's almost full, every MB counts. Is t