Involve more than one HTML data set.

Hello,
I am building a website and using spry data sets for it. I need to have opportunity to involve more than one data set. In this sample found exactly what I need - http://livedocs.adobe.com/en_US/Spry/SDG/help.html?content=WSFC985AA5-C5E9-4266-ACE0-62299 A0E0B70.html but in my case I am using HTML data set not the XML. In all browsers except IE all seems to work fine, but I get an Spry debugger error - Spry.Data.HTMLDataSet: 'garden2' is not a valid element ID. 'garden2' is a id for table that I am using as HTML data source. It seems that dreamweaver ain't too supporting this thing with HTML as in that sample, because when i try to open this Data set in bindings panel I get an error -  Invalid URL schema. My idea is that , one HTML data set contains the name list of the products categories and unique url for each product name , and this unique url shows path for other HTML data set for each product, which contains product list for each category. Link to the part of my website where I am trying to do this stuff http://www.varpa.eu/garden.html?row=0  .
So how can I get rid of the Spry debugger error and make it work in IE ?
Thank you,
Richard.

I found  why page wasn't working on IE,I had not just closed one <tr> tag in HTML data set file. But spry debugger error still occurs in Opera , Safari , Chrome and Dreamweaver live view and I can't still open the second second data set in bindings panel.To hide this <div> with spry debugger error, I just attached style to ir visibility : hidden; . But it's still very weird though that adobe isn't supporting this option for HTML data set, but supports only for XML , isn't it ?
Richard.

Similar Messages

  • Is there any way to set more than one list validation setting?

    Can I set more than one list validation setting without using any coding? It seems strange that you can only have ONE per list (and I don't want just a single column validation).

    Hi,
    You can use the logical operators to realize multiple columns validation like
    =AND(Birthday>DATE(2001,7,1),Location="New York").
    For more details, please refert to:
    http://msdn.microsoft.com/en-us/library/bb862071.aspx
    Regards,
    Seven

  • How to update more than one Bank data in LSMW using recording

    Hi friends,
    please let me know how can we upload more than one bank data for vendore master in LSMW, and i am Using Recording and i have to use that.
    thanks a lot.
    Regards,
    veeru.

    Hi
    I have used the direct input but, there are address fields missing in the direct input like, SORT2, MOB_NUMBER, SMTP_ADDR. these fields.
    when i see the documentation for direct input, it says for additional address you need to use another BAPI. but here the problem is we are using internal numbering for vendor, so how to link the created vendor and the address uploaded to correct vendor.
    thanks a lot,.

  • Creating Pages in PeopleSoft with more than one HTML Form

    Hi,
    We've a requirement to create a page in PIA with more than one HTML form.
    As per PBooks - "The page being developed cannot be built using PeopleSoft Application Designer.
    An example of this is a page that requires more than one HTML form.
    PeopleSoft Pure Internet Architecture places the entire page inside of a single form tag, so no other HTML form tags can be added.
    In this case the requirements of the page can't be met by pages created in PeopleSoft Application Designer, so use IScripts instead."
    If someone can share his/her experience, It Would be of great help to me.
    -Thanks!!

    Take a look at my IScript postings. Let me know if you still have questions after reading these blog posts.

  • Building a method with more than one result data

    Hi, everyone:
    I'm a little shy to ask this question, however, it's been hanging in my mind for so long, so I think I'd rather make a confession on it. You may laugh at me if you want, I'm ready for that, but I more look forward to that someone can really give me the light, or even the link, or some hint....
    For your ease of reading, I give the question first, and my whole story behind:
    When I need a method which can provide more than one result( in other words, multiple outputs), how can I do it in Java? As I know, either you pass and object, or the result of the function is an object will do , for the object contains the datas you want, but that means your needs for those data have to be defined in object format in advance, won't that be inconvinient? Or Java has a better solution for that?
    //And here's the whole story....
    I began my career as a programmer by starting with LabVIEW, it's a graphical programming language made by National Instrument, and it's powerful on DAQ, and industrial field. One of the most important issues on design is to devide your system into multiple functions( in its own term: subVI), I think it's just like applying structured analysis method.
    When we dealing with functions in LabVIEW, a programmer can define his own function with mulitiple inputs and outputs, for example, I can design a function called SumAndDevide, which accepts two input ( two variables to be summed and devided) and gives two results( result of summing and that of deviding).
    The methodology has its power, at least it provide the functional decomposition, and you can compose a suitable solution in certain circumstance even they are not the smallest unit function. And testing is easy. It affects me so large that I look the trail of it when I come to other programming languages. In COBOL( well, that is a VERY old COBOL version ), I was scared to find there is no protection to the inner data on the performed sections, while making a outside subroutine to be called is cubersome and really a hard work. When I came to Delphi, I knew that using the result of a function cannot satisfy me, for it give only one output, even you can define it as variant, but I think it's vague to realize. So I use the difference of called by value and called by reference to handle the problem, that is: a value parameter for the input, and a variable paramter for the output.
    Well, when I came to Java, I am stunned again, now there is no passing by reference mechanism in Java, otherwise you have to pass it as an object, but that means when you need multiple outputs, the output has to be defined in object form in advance. And that will be very inconvinient!! I tried to find some solutions, but I can't. So is there any way that in Java you can define a method with multiple output? or Java handles the problem in totally different way?
    Any comments will be appreciated!!
    Thanks!!
    aQunx from Taiwan

    You missed the most common OO solution - separation of concerns and implementation hiding.
    If you have a function which returns a string, that is one method of the object that provides the service.
    If you have a function which returns a real, that is a different method of the object.
    If both functions require common code, move that into a private method which is called by both. If the method is costly, cache the result.
    eg an aerodynamics properties class, which could be done as a multivalued return of (lift, drag), refactored to independent lift() and drag() methods, which delegate to an interpolate() method, which caches the interpolated value and uses mach, pressureHeight and _alpha to determine whether it should recalculate:  /**
       * Calculates the aerodynamic drag force at a given mach, alpha and pressure height.
      public double drag (final double aMach, final double aPressureHeight, final double aAlpha) {
        interpolate(aMach, aPressureHeight, aAlpha);
        return _drag;
       * Calculates the aerodynamic lift force at a given mach, alpha and pressure height.
      public double lift (final double aMach, final double aPressureHeight, final double aAlpha) {
        interpolate(aMach, aPressureHeight, aAlpha);
        return _lift;
      private void interpolate (final double aMach, final double aPressureHeight, final double aAlpha) {
        if (aMach != _mach) {
          setMach(aMach);
          _pressureHeight = Double.NaN;
        if (aPressureHeight != _pressureHeight) {
          setPressureHeight(aPressureHeight);
          _alpha = Double.NaN;
        if (aAlpha != _alpha) {
          setAlpha(aAlpha);
    ... actual interpolation happens in the private setXXX methods.

  • More than one step BC sets approval for PO's

    Good day All.
    I would like to know the bc set for more than one step of approvals for the Purchased Order. We know the without tha approval and one step approval for PO.
    /SAPSRM/C_PO_600_000_SP04     Purchase Order Without Approval
    /SAPSRM/C_PO_600_001_SP04     Purchase Order with One-Level Manager Approval
    You speedy response would be appreciated.
    Regards
    Makoro Manyathela

    Hi,
    You can configure many approval steps based on your business requirements.
    The BCSets /SAPSRM/C_PO_600_001_SP04 is just a sample configuration.
    Please go to IMG.
    SRM -> SRM Server -> Cross-Application basic Settings -> Business Workflow -> Process-Controlled Workflow -> Business Process Configuration -> Define Process Levels.
    Regards,
    Masa

  • Facebook: May More Than One Album Be Set-Up As an Export Destination?

    In the Export to Facebook feature in the Library, is it possible to set up more than one album?
    I have one album set-up, and that works fine; but my attempts to set up another album have been unsuccessful.    I often want to send photos to a different album than the one I have set up.          Currently, I have to send the photo to the one album, then go into facebook and move it from there. 

    I replied to you other post here
    http://forums.adobe.com/message/5886292#588629

  • Will print more than one copy when set for one copy,

    prints whole page including the folder list on the left and the adverts on the rtght which overlap  the email text,
    also print multiple copies even when set for one copy

    Hi there @HoundDog4 
    Welcome to the community
    I will certainly do my best to help you with the printing issues you're facing! However, I am going to ask that you please let me know some more helpful information to help me research the problem for you.
    Please respond to me with the following. If there are any steps here that you have not tried, please try them before responding and include the result:
    What printer(s) are installed on the computer?
    How is the printer connected (USB/ wireless/ wired/ Bluetooth)?
    What is the Operating System of the computer?
    Have you tested hardware functionality (made copies from the printers front panel)?
    Have you tried printing from different programs?
    Have you tried uninstalling and reinstalling the software?
    If you're running Windows, run the Print and Scan Doctor and include the results.
    Did you make any recent changes to your set up (physical move, upgrade, downgrade, new software installed, new router, etc)?
    Is the printer plugged directly into the wall outlet (avoiding power bars and surge protectors)?
    Have you completed all Windows/Mac OS Updates?
    Have you tried using a different USB/Ethernet cable?
    Thank you!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Can't get more than one Ultrabeat sound setting in one project. If I have a drum track with an Ultrabeat "downtempo kit" and I make another drum track with "hip hop kit" in the same project, the settings of the other track transform to "hip hop" setting.

    So here's my situation.  I'm using Logic Pro 9.  I'm trying to use multiple drum tracks each with different Ultrabeat settings.  So let's say I have drum track with a loop from Ultrabeat that has the "downtempo kit 2" setting on it.  If I make another drum track and create a different loop in Ultrabeat with a different setting, let's say "hip hop kit" for example, and put that loop onto the new track, then the previous loop that I had in the first drum track will still be the same loop but the sound kit settings change to that of "hip hop kit."  So I can have different loops, but they all have to be "hip hop kit" settings or "downtempo kit 2" settings.  I am unable to multiple kit settings.  Is there a box I need to check to turn some automation off or something, because this is pretty inconvinient?  Why do I have to have only one Ultrabeat sound/kit setting per Logic project?

    Sounds like maybe you're using the same channel strip on multiple tracks? Make sure you're creating a new software instrument channel strip for each independent instance of Ultrabeat you want to have. If you use the same CS, then all tracks that use it will have to have the same kit.

  • Configuring more than one LDAP as data source

    Hi Portal Gurus,
    We have requiremnt to configure  MS ADS LDAP-> DEEP HIERARCHY  & Sun one LDAP->FLAT HIERRARCHY as PORTAL Datra Source.we have already configured MS ADS LDAP.
    for  merging these 2 LDAPS as a data source can anybody having experiece ...
    we  tried to configure with the below server  parameters for  2nd lDAP merging as per  below reference
    Configuration of More Than One LDAP Data Source"http://help.sap.com/saphelp_nw04/helpdata/en/4e/4d0d40c04af72ee10000000a1550b0/frameset.htm".But
    we could not suceeded.
    Server parameters:
    Server:  xxxx:23xx
    LDAP Search root:  dv=hub, o=vds
    Connection ID:  cn=Directory Manager
    password: xxxxx
    we dont have user path or group path for the above 2nd LDAP.
    anybody can help in this ..
    Regards
    Tag

    Tag,
    It sounds like this issue might be releated to the fact that your second LDAP connection is to SUN One.   Maybe one of these links will help
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/aa/8f10f1e2bae346bef2853aa0f88f4c/frameset.htm
    or
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/43/4c3725aeaf30b4e10000000a11466f/frameset.htm
    Regards,
    Keith
    Message was edited by: Keith Crossett

  • How to pass more than one value to the procedure

    How can I pass more than one letting date to this procedure. If it is only one letting date, I do not have a problem but when it is more than one letting date at the same time then I am stuck. please help
    example I would like to pass this three letting dates : '01/17/2010', '01/27/2010','05/22/2010'
    CEATE OR REPLACE PROCEDURE TPLCP.PLANHOLDERSLIST
    P_LettingDate IN  VARCHAR2,
    p_results OUT sys_refcursor
    AS
    BEGIN
        OPEN p_results FOR
    SELECT DISTINCT DECODE (TRIM (MIN (j.route)), NULL, 'N/A',TRIM (MIN (j.route))) rt,l.lcontid conid,
                     SUBSTR (q.cprojnum, 1, 10) pr, SUBSTR (l.letting, 3, 2)|| '-'|| SUBSTR (l.letting, 5, 2)|| '-'|| SUBSTR (l.letting, 1, 2) lt,
                    (q.cdescr) jbtyp, INITCAP (q.clocat1 || q.clocat2) loc
               FROM vendor v,
                    vendaddr r,
                    letprop l,
                    planhold p,
                    proposal q,
                    project j,
                    propproj k,
                    bidlet bd
              WHERE v.vendor = r.vendor
                AND k.contid = q.contid
                AND k.pcn = j.pcn
                AND l.lcontid = k.contid
                AND p.vendor = v.vendor
                AND l.letting = p.letting
                AND TO_CHAR (bd.datelet, 'MM/DD/YYYY') IN P_LettingDate
                AND l.CALL = p.CALL
                AND r.addrnum = p.billto
                AND bd.letting = l.letting
           GROUP BY v.vendor,
                    r.addrnum,
                    v.vnamel,
                    r.aaddr1,
                    p.billto,
                    r.acity,
                    r.astate,
                    q.cdescr,
                    q.clocat1,
                    q.clocat2,
                    bd.letting,
                    r.azipcode,
                    r.vasst1,
                    r.aphone,
                    l.letting,
                    l.lcontid,
                    q.cprojnum;
    END PLANHOLDERSLIST;

    you can create your on array type and then pass that as the parameter. I use the suffix of ttyp to represent a table type.  The name of the column when using the table() syntax is columnvalue.
    I altered my session to set the default date format to match your format. you could have used the to_date function to set the values for the arr type.
    Hope this helps.
    create type msw_ttyp as table of date
    create or replace
    procedure msw_test(p_arr     in msw_ttyp) as
    v     integer;
    begin
    select count(*)
       into v
       from table(p_arr);
    dbms_output.put_line('count: '||v);
    for rec in (select column_value
                   from table(p_arr))
    loop
      dbms_output.put_line(rec.column_value);
    end loop;
    end msw_test;
    alter session set nls_date_format = 'MM/DD/YYYY';
    set serveroutput on size 1000000
    exec msw_test(msw_ttyp('01/17/2010', '01/27/2010','05/22/2010'));
    begin
    msw_test(msw_ttyp(to_date('01/17/2010', 'MM/DD/YYYY'),
                       to_date('01/27/2010', 'MM/DD/YYYY'),
                       to_date('05/22/2010', 'MM/DD/YYYY')));
    end;
    /

  • Can I use more than one itunes account on apple tv?

    I live in a household with more than one iTunes accounts.  Is it possible for Apple Tv to have more than one iTunes account set up?  We have 2 Macs with 2 separate iTunes accounts.

    you can enter information for only one iTunes account on TV.
    however, as long as home sharing is set up properly, you can stream content purchased with up to five Apple ID's to TV.

  • Can we add more than one layout in a panel

    hai everybody,
    i m working in a project in that a panel(with gridbaglayout) does not allow borderlayout to set in the same panel..............
    if we set so then components that is placed as in borderlayout is invisible
    Help me out
    Thanx in advance
    shanthy

    You cannot have more than one layout manager set on a container. This wouldn't make sense!
    I'm guessing that what you're trying to do is have a panel with a BorderLayout with another panel with GridBagLayout in its centre.
    Hope this helps.

  • Maping more than one document to calendar week

    how to map more than one document date into a calender week?

    Hi,
    The possbilities are
    1.Create a customer exit variable with processing type as replacement path with the help of abapers
    Assigning points is the way of saying thanks in SDN
    Regards ,
    Subash Balakrishnan

  • If-function for more than one cell

    Hello friends,
    I am looking for an if-function that asks for more than one cell. EG:
    =If(A2=True;50;0) were A2 is a marker field. In my table A3, A4 and A5 are markerfields as well. How do I add those cells to my my function. Saying: Is any of A2-A5 true, than say 50 else say 0.
    As a second question:
    Is there a function that says: If A2 is true give me 50, if A3 is true gimme 40 ... all in one function!?
    Thanks a lot for helping me !!
    Jimmy

    The answer to both is yes you can perform these using functions that exist in Numbers:
    1) You can use check boxes for the marker cells then use cells in the next column to translate from check boxes to a numeric value:
    e.g. B2 = if(A2=TRUE, 1, 0)
    then sum the cells in B2 - B5 and compare to 0.  if the sum is greater than zero then one of the check boxes is checked:
    2) The question with this request is what if more than one marker is set (again I am assuming you are using check boxes)
    I am assuming the A2 take precedence (that is if the checkbox for A2 is checked that the result will be 50 EVEN if A3 is checked)
    A1 = IF(A2=TRUE, 50, IF(A3=TRUE, 40, 0))

Maybe you are looking for