Widgets within widgets

I am working on a site that currently is very complicated to
navigate due to the vast number of pages. I would like to bring it
up to date with spry and widgets. I currently am using the tabbed
panel and inside that I am using an HTML panel to load content.
What I would like to do is find an easier way and cleaner to
implement a whole bunch on widgets within widgets? Also I would
like to know how to use widgets and effects from from one page that
is loaded into the HTML panel, for example I have a table with an
accordian widget, that page gets loaded into the main page using a
HTML panel. Thanks

First question, this might help out, take a look at this
sample. tabbled and html using update content;
http://labs.adobe.com/technologies/spry/samples/utils/updateContent_TabbedPanels.html

Similar Messages

  • Widget within widget

    Hi,
    Is it possible to include a widget within another widget ?
    iAd does let you import existing widget into the Assets list, but I cannot find a way to add them to a page.
    Can someone help ?
    Thanks
    GL

    No, but you can copy the pages from one widget project into your working project, giving you the equivalent functionality.

  • Widget within widget error

    I made a template that uses one pop-up widget as a parameter of another pop-up widget. When I change between snapshots, the first frame is messed up and all the other frames perform as expected.
    I submitted feedback in Motion.
    Has anyone had problems with widgets as parameters of other widgets?

    Hi,
    You may have already done this but have you used the debug window in the Yahoo Widgets?
    CTRL+SHIFT then right click the yahoo widget icon in the system tray and go down to Debug mode. Run your widget again and look in the debug window. The area you need to find is
    utils.DataLoader
    and see what appears after the entry
    open( POST http://127.0.0.1:7531/SapMiddleTier/RESTJSON/ewcs/service/rfct?serviceProvider
    You might see something obvious there.
    Nath

  • Help with Spry Rating Widget within a Spry Repeating Region

    My link  http://www.youthinkyougotitbad.com
    This is a long question, but it seems to me if answered somewhere it could help alot of people in the spry community creating comment boards as it uses three important spry widgets: rating, repeating, and tabbed panels. I am trying to use spry rating widget within a spry repeating region within a spry tabbed panel with xml. I was trying to go with the pulse light script (http://forums.adobe.com/message/3831721#3831721) but Gramps told me about the spry rating widget. But I have ran into a couple more problems. First, I couldnt find that much information on the forums or online about how to do the php page with the spry rating widget. None of these have any information on how to do it:
    http://labs.adobe.com/technologies/spry/articles/rating_overview/index .html
    http://labs.adobe.com/technologies/spry/articles/data_api/apis/rating. html
    http://labs.adobe.com/technologies/spry/samples/rating/RatingSample.ht ml
    And it seems that the official examples are so poor (or I am just ignorant, which def could be a possiblity) it shows
    to set the initial rating value from the server, but uses a static value of 4
    http://labs.adobe.com/technologies/spry/samples/rating/RatingSample.html
    <span id="initialValue_dynamic" class="ratingContainer">
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>      
             <input id="spryrating1_val" type="text" name="spryrating1" value="4" readonly="readonly" />
             <span class="ratingRatedMsg sample">Thanks for your rating!</span>
    </span>
    <script>
    var initialValue_dynamic = new Spry.Widget.Rating("initialValue_dynamic", {ratingValueElement:'spryrating1_val'});
    </script>
    I finally found a site that has the php and mysql setup.
    http://www.pixelplant.ro/en/articles/article-detail/article/adobe-widgets-for-download.htm l
    But its not perfect. It has the same problem that I ran into with Pulse light, that you had to use php echo within the spry repeating region to set the initial value from the server:
    <span id="spryrating1" class="ratingContainer">
             <span class="ratingButton"></span>
                <input type="text" id="ratingValue" name="dynamic_rate" value="<?php echo $row['average']?>"/>
            </span>
            <script type="text/javascript"
                var rating1 = new Spry.Widget.Rating("spryrating1", {ratingValueElement:'ratingValue', afterRating:'serverValue', saveUrl: 'save.php?id=spryrating1&val=@@ratingValue@@'});
            </script>
    So instead, I tried with three of my panels (www.youthinkyougotitbad.com) to get the average rating from xml by using the following queries:
    Recent
    Returns the blurts in most recent order along with average rating
    SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt Group By Id_blurt ORDER BY Blurt.`Date` DESC
    Wet Eyed
    Returns the blurts in highest ratings order along with the average rating
    SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt, DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt AND ratings.rating_value > 0.1 Group By Id_blurt ORDER BY average_r Desc
    Dry Eyed
    Returns the blurts in lowest rating order along with the average rating
    SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt, DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt AND ratings.rating_value > 0.1 Group By Id_blurt ORDER BY average_r
    These all return the correct xml in the correct order.And they return the average rating of each blurt which I can send to my page with xml.
    My first question is that I dont know how to configure the query on my fourth panel Empathized & Advised the same way because it already has a Group By for the Comment Id.
    SELECT `Comment`.id_Blurt, COUNT(*) as frequency, Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt, DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date FROM Blurt, `Comment` WHERE Blurt.Id_blurt = `Comment`.id_Blurt GROUP BY `Comment`.id_Blurt ORDER BY COUNT(*) DESC";
    Not sure if you guys need more information to understand that all, if so just ask.
    So after I get my average value through xml to the first three panels, I set my spry repeating region up like this:
    (Blurt panel)
    <div spry:region="pv1" spry:repeatchildren="pv1">           
               <div class="blurtbox">
                <!--  most recent blurt tab-->
                <h3> "{pv1::Blurt}"</h3>
                <p> Blurted from {pv1::Location} at {pv1::Date}</p>
                <p>Empathize or Advise about {pv1::Name}'s Blurt #<a href="detailblurt.php?blurtid={pv1::Id_blurt}"> {pv1::Id_blurt}</a></a></p>
               <span id="{pv1::Id_blurt}" class="ratingContainer">
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingRatedMsg">Thank You! Your tears have been tallied.</span>
                <input type="text" id="ratingValue" name="dynamic_rate" value="{pv1::average_r}"/>
            </span>
            <script type="text/javascript">
                // overview of available options and their values:
                // http://labs.adobe.com/technologies/spry/articles/rating_overview/index.html
                var rating1 = new Spry.Widget.Rating("{pv1::Id_blurt}", {ratingValueElement:'ratingValue', afterRating:'serverValue', saveUrl: 'save.php?id={pv1::Id_blurt}&val=@@ratingValue@@'});
            </script>
                 <br/>
               </div>
              </div>
    Ok, it registers the right vote in the database with the right blurt id each time. But I am having two problems so far:
    One, even though {pv1::average_r} returns the correct average through xml, it doesn't show the initial rating value for each of the repeating blurts. It seems to show the first one correct, and then just repeat that same value to the other ones that follow. I just dont understand since it can get the correct server value right after you vote (afterRating:'serverValue), that I can't manipulate spryrating.js in some way that I could just replace 'ratingValue' in ratingValueElement:'ratingValue' with something to give me the initial server value.
    Two: Is even more mysterious to me, if you play around with voting on the site, sometimes you are unable to vote on different blurts. Its weird. It seems like that the javascript is completely off just on those blurts. And sometimes its a whole row, sometimes none. But so far its never a problem on the first tabbed panel (Recent), only on the other three. As far as I know, the coding is exactly the same in each tab's repeating region except for the different xml input.
    And, now on the live server, sometimes the pics of tears used to voting dont show up until you click.
    Any help on those three questions (how to query the fourth panel, how to show the initial server value, and the glitches with voting) would be greatly appreciated!! I looked pretty hard on adobe forums and other sites, and didnt see much on how to really use the spry rating widget with php and xml.
    Thanks!!

    Update:
    Ok, the first query on the Recent tab doesnt work for me because it wont show unless its already voted, and since these are supposed to be new blurts, that kind of breaks the whole site:
    "SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt Group By Id_blurt ORDER BY Blurt.`Date` DESC";
    So I replaced it with what I originally had.
    "SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date FROM Blurt ORDER BY Blurt.`Date` DESC";
    But this doesn't provide me with the initial average rating:(

  • Widgets nested within widgets?

    Is it possible to nest a sliding panel widget within a tabbed panels widget?
    I am trying to ste up an image galleries page where each gallery is a tab and within each tab the gallery images are sliding panels. I have the basic framework built but the sliding panels widget won't move to the next sliding panel. I have attached the html file that I currnetlt have.
    Thanx in advance!

    The server queued the files, a online url is always better, because we can see all the files you use, not just your structure.

  • Menu Widget within Template Question

    I've placed a simple Spry Horizontal Menu bar widget within a div called "header." This menu bar has four main list items, and each list item has four sub-items. I have another div called "mainContent." I save this page as a template. I make a sample page using that template, and the page works as expected. So far, so good.
    Now, I go into the template file, into the menu bar widget, and I add a fifth sub-item to one of the main list items, using the properties panel. I save the file, and DW asks if I want to update the page I've created based upon this template. I say yes, and it appears to make the update.
    Now, however, when I test the page in the browser (FF, Safari, Opera, doesn't matter), the newly-added menu item does not appear. I've tried clearing the browser cache, closing and reopening the browser -- nada.
    Am I missing something, or is a Spry widget not able to be used (as in, modified and updated) within a template?
    Any help is gratefully appreciated.

    Unfortunately you cannot add drop shadows to text in Muse.
    You could create the text in Photoshop and import it in, using the "Place Photoshop button" under the file menu. (you would create the, normal, hover, active states in Photoshop layers)

  • SPRO Define My Messages Widgets Define Widget Component Usage / Custom MyIncidents*

    Hello everybody,
    I am trying to add a custom component usage into
    Tx: SPRO > Define My Messages Widgets > Define Widget > Component Usage
    like this
    Is there an howto somewhere available for this that I can use it in the configuration of the start page widgets "my own messages / incidents":
    Kind regards
    Update:
    In the meanwhile I found that BSP component AIC_HOME is including componentusages named like the standard component usages given in the customizing table under "Define Widget". So I guess I have to enhance the component by my own componentusage with a similar functionality.
    I don't know if anyone will ever respond of any of my posts one day but here is
    Update 2:
    I am stuck now at that Component Usage. When I try to delegate OP SINGLESELECTION to DYN_NAV and visa versa it does not show me an entry to select from.
    Update 3:
    Well, I first had to add the view within Runtime-Rep. editor > ViewSets > Ov.Page <add< like the standard view of the "MyMessage..."-kind. Now I have all possible selections. Was this the final solution? .... tbc ...
    Update 4:
    At least in the UI configuration tool i can save now permanently based on one component usage:
    BUT the filter which should come along with the component usage does not work.
    Last update due to success and problem solution:
    Finally there is a need for enhancing the AIC_HOME Component-Controller @
    WD_USAGE_INITIALIZE
    Just modify the code like this:
      CASE iv_usage->usage_name.
        WHEN 'ZMyMessageWidgetITTicket'.
          cl_ai_crm_mymsg=>set_active_switches( iv_usage ).
          cl_ai_crm_mymsg=>set_defaults( iv_usage ).  " Reported By My Organization
        WHEN 'MyMessagesReportedByMyOrg'.
          cl_ai_crm_mymsg=>set_active_switches( iv_usage ).
          cl_ai_crm_mymsg=>set_defaults( iv_usage ).  " Reported By My Organization
    Now your custom component and all stuff around that should work with all the filters and extra drop down buttons, etc..
    Nice to see that I started with a big question mark around the component usage (unfortunately described as "Define Widget") and on my way to the finishing line I found out that I had to make myself a hole new assignment block.
    Hint:
    If you stumble over this error:
    Exception-Klasse
    CX_BSP_WD_INCORRECT_IMPLEMENT
    Fehlername
    Programm
    CL_BSP_WD_OVW_VIEWSET=========CP
    Include
    CL_BSP_WD_OVW_VIEWSET=========CM00A
    ABAP-Klasse
    CL_BSP_WD_OVW_VIEWSET
    Methode
    BIND_LAZY
    Zeile
    27
    Then you have forgotten to edit  BSPWDV_EHSET_ASG via sm30. There you connect your enhancement-set (which you use to enhance AIC_HOME) to the client.

    Solved by myself..
    Used the set_changed_by_client method of the IF_WD_CONTROLLER.

  • How to overlay the Dialog.js(libs/cq/ui/widgets/source/widgets/Dialog.js)

    Hello Team,
    My scenario is to store the vanity url in lower case. once user entered /content/mycompany/us/en/MCDonalds I would store it as /content/mycompany/us/en/mcdonalds, Next time on request of /content/mycompany/us/en/Mcdonalds, I would convert the incoming vanity to lower case and check with the entries in the cq5 and then accordingly either throw the message in the vtypes that vanity url already exist or allow the vanity url to go thru. I have acheived that with the following pseduo code Approach1. But I am not sure how to overlay the  Dialog.js(libs/cq/ui/widgets/source/widgets/Dialog.js).
    Approach1:
    Changing the code in the Dialog.js(libs/cq/ui/widgets/source/widgets/Dialog.js)
         * Submits the dialog.
         * @param {CQ.Ext.Button} button The button that has been hit
         * @param {Function} success The function to call if the dialog submission was successful.
         *                           Overwrites {@link #success}.
         * @param {Function} failure The function to call if the dialog submission has failed.
         *                           Overwrites {@link #failure}.
        ok: function(button, success, failure) {
    if (this.form.isValid()) {
    //get the form values
    //convert the sling:vanityPath to lowercase
    //set the form values
    Now My question is how to overlay the (libs/cq/ui/widgets/source/widgets/Dialog.js). I tried putting the Dialog.js stored as MyDialog.js in my page component clientlib and changed the registration of the dialog to CQ.Ext.reg("customDialog", CQ.Dialog1) and given the xtype of the above dialog as customDialog. (Here already I overlayed the dialog containing all the tabs i,e basic,advanced. livecopy etc and tab_basic panel of the vanity url code from libs to do the validation with vtypes).
    The problem is I am able to see the empty dialog but not the tabs displayed, when I use the xtype as customDialog.
    Any suggestions/pointers to solve this problem would be appreciable.
    Best Regards,
    Durga

    Thanks Roland,
      To give you more information. We discovered the source of the multiple instantiations of tabs from the page properties. We have a listener on the dialog.xml for our pages that listens for loadcontent events. In the course of its logic, the javascript for this listener will invoke dialog.loadContent(path) itself. Thus the double calls. Strictly speaking, we could look at ways to avoid the use of the loadContent call. But we also feel that there is something going on with regards to siteCatalyst and double-loading. This might be something you'll want to incorporate in your efforts to reproduce this. For posterity, here's a sample listener definition in our dialog.xml
    <listeners
            jcr:primaryType="nt:unstructured"
            loadcontent="function(dialog, records, opts, success) {CQ.Acme.populateShortURL(dialog, records, opts, success);}"/>
    Hope this helps!

  • Embedding Html code or widgets within Adobe Edge Animate project

    Hi There,
    I have just discovered Edge and i think it is amazing finally the "new" web standards are being put in the designers hands again!!
    My question is this i have designed an online web based application using the amazing features in edge, what i need to do now is for instance add a weather widget or a news feed, how do i get this to work in edge, i have read about using iframes to embed video but this approach doesnt work for me, i would love to use this software for all of our web based projects but i need to know if its possible to embed html
    If anyone out there can point me to some literature or an example of how this is done i would be so grateful! seriously love this software!
    Thanks in advance!

    Hi again Darrell,,
    Thanks for the reply, At the moment if i could get hello world to show within a div in edge i would jump for joy! . Im starting to wonder if there is something wrong with my procedure, correct me if im wrong here..
    Open edge, create new project, draw out rectangle, convert to symbol, name symbol widgetContainer, open up stage properties and set overflow to auto, open up code editor and under composition ready event add   "sym.$("widgetContainer").load('html/helloworld.html');" Is this the right process?
    What i need to do i either pull an iframe of an existing webpage onto the div whitin my project or get a jquery standalone project to display within the div either will work for me as long as i have the ability to update the information seamlessly, the exact widget im using is called WeatherSlider Premium jQuery Weather Widget.  To be honest i would love to just pull an iframe of the site i would like displayed in the div that would be perfect..
    Thank you again for taking the time to listen and reply to this, Adobe community for the win! I was mortified when flash got pushed out the market so i am really happy that we are back in the game with awesome tools again So excited to be learning again
    Thank you again hope my rambling has made sense

  • Using validation widgets within a data region

    My problem stems from the fact that when I place Spry Validation Widgets in a form within a Spry Data Region, the validation widgets do not work. When I remove the data region, all is well.
    Please help!
    This is a sample 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" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var dsMembers = new Spry.Data.XMLDataSet("data/members_xml.php", "export/row", {useCache: false});
    //-->
    </script>
    </head>
    <body>
    <div spry:region="dsMembers">
      <form id="editForm" name="editForm" action="">
        <table>
          <tr id="email">
            <td>E-mail:</td>
            <td>
              <input name="email_mem" type="text" id="email_mem" value="{username}" />
              <span class="textfieldRequiredMsg">The value is required.</span>
              <span class="textfieldInvalidFormatMsg">Invalid format.</span>
            </td>
          </tr>
          <tr id="password">
            <td>Password:</td>
            <td>
              <input name="password_mem" type="password" id="password_mem" value="{password}" />
              <span class="textfieldRequiredMsg">The value is required.</span>
              <span class="textfieldMinCharsMsg">The minimum number of characters not met.</span>
              <span class="textfieldMaxCharsMsg">The maximum number of characters exceeded.</span>
            </td>
          </tr>
          <tr id="site">
            <td>Website:</td>
            <td>
              <input name="website_mem" type="text" id="website_mem" value="{buswebsite}" />
              <span class="textfieldRequiredMsg">The value is required.</span>
              <span class="textfieldInvalidFormatMsg">Invalid format.</span>
            </td>
          </tr>
          <tr id="date">
            <td>Date:</td>
            <td><input name="registrationdate_mem" type="text" id="registrationdate_mem" value="{registrationdate}" />
            <span class="textfieldInvalidFormatMsg">Invalid format.</span> <span class="textfieldRequiredMsg">A value is required.</span></td>
          </tr>
          <tr>
            <td colspan="2">
              <input type="submit" name="Submit" id="Submit" value="Submit" />
              <input name="Reset" type="reset" value="Reset" />
            </td>     
          </tr>
        </table>
      <script type="text/javascript">
        <!--
        var email = new Spry.Widget.ValidationTextField("email", "email", {validateOn:["blur"]});
        var password = new Spry.Widget.ValidationTextField("password", "none", {minChars:6, maxChars:10, validateOn:["blur"]});
        var site = new Spry.Widget.ValidationTextField("site", "url", {validateOn:["blur"]});
        var date = new Spry.Widget.ValidationTextField("date", "date", {validateOn:["blur"], format:"dd/mm/yyyy", useCharacterMasking:true});
        //-->
        </script>
      </form>
    </div>
    </body>
    </html>
    Ben

    Ben,
    You need to add a function observer that will instantiate the form widgets and  add the Form Widget Init observer to the region.
    The modified code is as follows:
    <!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" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var dsMembers = new Spry.Data.XMLDataSet("data/members_xml.php", "export/row", {useCache: false});
    //  Define a function observer that will instantiate the form widgets.
    var widgetInitObserver = function(nType, notifier, data) {
        if(nType == 'onPostUpdate'){
            var email = new Spry.Widget.ValidationTextField("email", "email", {validateOn:["blur"]});
            var password = new Spry.Widget.ValidationTextField("password", "none", {minChars:6, maxChars:10, validateOn:["blur"]});
            var site = new Spry.Widget.ValidationTextField("site", "url", {validateOn:["blur"]});
            var date = new Spry.Widget.ValidationTextField("date", "date", {validateOn:["blur"], format:"dd/mm/yyyy", useCharacterMasking:true});
    //    add the Form Widget Init observer to the region
    Spry.Data.Region.addObserver('formregion', widgetInitObserver);
    //-->
    </script>
    </head>
    <body>
    <form id="editForm" name="editForm" action="">
      <div id="formregion" spry:region="dsMembers">
        <table>
          <tr id="email">
            <td>E-mail:</td>
            <td>
              <input name="email_mem" type="text" id="email_mem" value="{username}" />
              <span class="textfieldRequiredMsg">The value is required.</span>
              <span class="textfieldInvalidFormatMsg">Invalid format.</span>
            </td>
          </tr>
          <tr id="password">
            <td>Password:</td>
            <td>
              <input name="password_mem" type="password" id="password_mem" value="{password}" />
              <span class="textfieldRequiredMsg">The value is required.</span>
              <span class="textfieldMinCharsMsg">The minimum number of characters not met.</span>
              <span class="textfieldMaxCharsMsg">The maximum number of characters exceeded.</span>
            </td>
          </tr>
          <tr id="site">
            <td>Website:</td>
            <td>
              <input name="website_mem" type="text" id="website_mem" value="{buswebsite}" />
              <span class="textfieldRequiredMsg">The value is required.</span>
              <span class="textfieldInvalidFormatMsg">Invalid format.</span>
            </td>
          </tr>
          <tr id="date">
            <td>Date:</td>
            <td><input name="registrationdate_mem" type="text" id="registrationdate_mem" value="{registrationdate}" />
            <span class="textfieldInvalidFormatMsg">Invalid format.</span> <span class="textfieldRequiredMsg">A value is required.</span></td>
          </tr>
          <tr>
            <td colspan="2">
              <input type="submit" name="Submit" id="Submit" value="Submit" />
              <input name="Reset" type="reset" value="Reset" />
            </td>     
          </tr>
        </table>
      </div>
    </form>
    </body>
    </html>
    I hope this helps.
    Ben

  • Call OpenURL from Widget within iBooks/iBook Author?

    I am trying to call widget.openURL("...") from within a dashboard app that I imported into iBooks Author. While this is working fine in the simulator and in the dashboard, it is doing nothing inside the book context. Everything else is working fine within the widget and I checked that the "openURL" code is called - but the method seems not to be available on iBooks. Anything I can do to open an URL from within a widget? (Using the hyperlink feature from within iBooks does not help).
      Thx and greetings.

    None seem to  correctly address this:- Is there code to fully access a website and stay in the widget in the iBook?
    A link - in the  book- on a readers iPad - that opens a web page will open a browser and take the reader away from the book, when the iPad moves to the browser window - tapping the  ebook tab will re-open.
    Moving  from one  web page to another from the web links, will- on the iPad - just open another window.
    To my logic, to stay literally within the widget means having a widget that turns the widget aperture into a web browser.  I have seen this done  within website pages using iFrames I think. Maybe some web coders may have a solution.

  • Can't click drag within widgets in Dashboard

    Not sure what caused it, but suddenly I can't click-drag WITHIN a dashboard widget. For example, if I click and hold the pulldown menu in the Dictionary to change to thesaurus, the pull-down menu won't activate. It only activates if I click and release to bring it up. And I can't select text within a text field. If I click and drag over a word to select it, the whole widget will move.
    Same issue as this unresolved thread-- http://discussions.apple.com/thread.jspa?messageID=11847234&#11847234
    It occurs even if I log out/in as a different user. Sure, there are workarounds, but I'd like to fix this behavior. Anyone got any ideas?

    I'm in the same boat - is there a solution to this?

  • Mobile safari and Iframe within widget

    If a site is fully supported in mobile safari on the ipad, will it be fully supported via as an iframe in the ibook? I thought the two were one in the same.
    I have a situation where I have an html 5 site called within an iframe of a widget and it does not work. Loads the iframe then nothing. The widget loads fine on the desktop and in preview in I book author but on the ipad it does not complain, just does not show up. In mobile safari, it also shows and works just fine. Any ideas?

    Any ideas?
    Is your iBooks app "Online Audio & Video" preference setiing switched on?

  • Html widget within the textfield

    how can i insert a html widget ( in this case a soundcloud audioplayer) within the textfield, so that if i write a new post, the audioplayer moves along down with the text that i have written? does it make sense.

    But when i move the text down the Soundcloud player does´nt move along
    html snipet widget doesn't move along with the text box because you can't insert html snipet widget inside text box or other object, it just float on top of the text box.
    however, you can move html snippet with javascript clonePosition method (it's part of Prototype.js)...
    by insert a text box inside a text box as a placeholder then clonePosition clones the inside text box's position for html snippet. have a look (scroll down):
    http://temp.cyclosaurus.com/revolving/TextWrapHTMLSnippet/ClonePosition.html
    and here is without clonePosition:
    http://temp.cyclosaurus.com/revolving/TextWrapHTMLSnippet/NotClonePosition.html
    this method is very precise when you have a long text box (as in my example), because each browser has different way of rendering content and things will be out of wack (especailly with firefox).
    note that my javascript won't move html snippet while in iweb, the result can only be seen in a browser after publishing.

  • Web object widget within a lightbox

    Hi there,
    I am creating a lightbox interaction in Captivate 7 that contains the Web object interaction widget.
    When I preview it by pressing F12, the widget does not appear.
    I have added all the proper advanced action scripting and everything else is working but not the widget.
    Any thoughts on what might be the issue?
    Thanks in advance

    Try uploading to a web server and testing from there.

Maybe you are looking for

  • I've given up on Safari, it's worthless.

    A browser is only as good as the webpages that actually work with it. Safari has great intentions, but what's the point in having this great browser if so many webpages are designed with IE and Firefox in mind? Shoot, as flawed as IE is, at least you

  • Why is the black MacBook more expensive?

    It seems that you could configure a white macbook to have the same exact configuration as the black one, but pay $125 less. Are people really paying $125 just for the black color??

  • Lotus integration In Portal

    Hi. Now my task is to integrate lotus notes into portal. So I have url = "http://lotnot/customer.nsf" And I have User = "Alexander Troshanin" and Password = "0123" When I open page("http://lotnot/customer.nsf") using Intenet Brouser, first I enter Us

  • How to hide Show characters in Wifi Password using Group policy

    Hi, I need to hide the wifi pass key to all the clients. Iam planning to apply group policy to the users. Can anyone help me to sort out this issue. Regards., Srinivas. SRINIVAS

  • Welcome Screen problem

    Hi guys, first i am complitly new in APEX but i am really interested in it, so please do not be too cruel to me ;) . I want to create a "Welcome Screen" which should show the menu on top and only a big picture below. So i created a "Dummy" table with