Merging two items from two separate pages

I’ve wanted to do the following for the last seven years but I don’t even know whattools to use, what direction to go.
Page1 contains an accordion, each panel has different design logos, Page2 also contains an accordion, each panel has different product items. Each of the logos in Page1 is available for each of the products in Page2. If price depends only on the product in Page2 regardless of which design logo that goes with the product. Please see www.thingsarebeautiful.com/Start-Page.htm which uses frames, left windows shows designs and right windows showsproducts. Since Adobe discourages the use of frames. Now I’ve created two pages(Page1 for design and Page2 for product). I would like to have a shopping cartthat would allow the ordering of a product with a particular design.
How do I select a design on Page1 AND a product on Page2 and display the two selected items side by side in Page3? Allow for the ordering of the item with a shopping cart or by email would be great.
If there were 100 designs and if there were 100 products, the permutation would be 10,000. Each time a design is added or each time a product is added, there would be 100 new permutations. If a product has 5 different color, adding a just one new product would create 500 additional permutations. Since the price depends only on the product and not the design, what would be an efficient way to do this?
Tony

Page1 contains an accordion, each panel has different design logos, Page2 also contains an accordion, each panel has different product items. Each of the logos in Page1 is available for each of the products in Page2.
Use SpryAccordion for each of the two pages. U can use either SpryXMLDataSet or SpryHTMLDataSet or even plain HTML to populate the accordion panels
Now I’ve created two pages(Page1 for design and Page2 for product). I would like to have a shopping cartthat would allow the ordering of a product with a particular design.
Have a 'Purchase' button or similar with each product that will add the product to the cart
How do I select a design on Page1 AND a product on Page2 and display the two selected items side by side in Page3? Allow for the ordering of the item with a shopping cart or by email would be great.
A master/detail type scenario can be used here
If there were 100 designs and if there were 100 products, the permutation would be 10,000. Each time a design is added or each time a product is added, there would be 100 new permutations. If a product has 5 different color, adding a just one new product would create 500 additional permutations. Since the price depends only on the product and not the design, what would be an efficient way to do this?
You are best off using a database to store the products. The information from your database can be transformed in XML format ready to be used by the SpryXMLDataSet
Actually, I have answered your questions in a general fashion only to show that it can be done. The questions however are of such a nature that it goes beyond the scope of this forum, even though most of it can be done using the Spry Framework. There are ready made products both commercial and free of charge, the latter that comes to mind is eCommerce while Webassist eCart falls into the first category. Google the subject to find out more.
If you have any specific Spry related problems, please come back here under a new topic.

Similar Messages

  • How can One sender communication channel pick two file from two location

    Hello
    I have a requirement that how can One sender communication channel pick two file from two location.Both the file has same name...How to configure the one receiver communication channel.i dont have any IR,no mapping..Please help me...

    >
    Soumitra Sinha wrote:
    > Hello Vijay
    > I already done the adapter specific message attribute.i am getting the file name properly.but that is nothing to do with my req.i am again clearing my problem:
    > i have two folder   folder a,folder b.Both has the same file credit0002. i have two destination folder i have one sender and one receiver channel.I dont have any IR.How one sender channel can  pick file from two location and how one receiver channel can put in two location.please help me..
    Ok now I get your requirement.
    you cant achieve this -  how one receiver channel can put in two location if you dont have a dynamic configuration defined i.e Adapter specific attributes.
    easy way - involve IR mapping
    else
    have a adapter module to define your dynamic configuration.
    Ref: /people/daniel.graversen/blog/2006/10/05/dynamic-configuration-in-adapter-modules & /people/michal.krawczyk2/blog/2006/10/09/xi-dynamic-configuration-in-adapter-modules--one-step-further
    Set the dynamic directory/file name etc for your receiver adapter.

  • How can i join two libraries from two different users

    how can i join two libraries from two different users in the same computer?

    I should add that you can turn on SHARING where each user can see the other user's library and play stuff out of it. But they can not import those tracks to their own library or put them into their own playlists or burn CDs of the shared library.
    Also note, to do this you need to have the fast switching option enabled with the accounts so both can be running at the same time and both must have iTunes running at the same time.
    Patrick

  • How to compare two rows from two table with different data

    how to compare two rows from two table with different data
    e.g.
    Table 1
    ID   DESC
    1     aaa
    2     bbb
    3     ccc
    Table 2
    ID   DESC
    1     aaa
    2     xxx
    3     ccc
    Result
    2

    Create
    table tab1(ID
    int ,DE char(10))
    Create
    table tab2(ID
    int ,DE char(10))
    Insert
    into tab1 Values
    (1,'aaa')
    Insert
    into tab1  Values
    (2,'bbb')
    Insert
    into tab1 Values(3,'ccc')
    Insert
    into tab1 Values(4,'dfe')
    Insert
    into tab2 Values
    (1,'aaa')
    Insert
    into tab2  Values
    (2,'xx')
    Insert
    into tab2 Values(3,'ccc')
    Insert
    into tab2 Values(6,'wdr')
    SELECT 
    tab1.ID,tab2.ID
    As T2 from tab1
    FULL
    join tab2 on tab1.ID
    = tab2.ID  
    WHERE
    BINARY_CHECKSUM(tab1.ID,tab1.DE)
    <> BINARY_CHECKSUM(tab2.ID,tab2.DE)
    OR tab1.ID
    IS NULL
    OR 
    tab2.ID IS
    NULL
    ID column considered as a primary Key
    Apart from different record,Above query populate missing record in both tables.
    Result Set
    ID ID 
    2  2
    4 NULL
    NULL 6
    ganeshk

  • Insert items from two different Multiple Select Lists into a single table

    I need help. I have a training tracking system that tracks the courses taken by employees.
    I have created two multiple select lists, one is SelectEmployees and the other is SelectCourses. I want to insert
    the selected item from those two multiple select lists into Training_Record table.
    Note, SelectEmployees" is from Employee table and SelectCourses is from Courses table. Those two table has no intersetion.
    Train_Record is the table that joins those two together.
    Please advice and your help is appreciate.

    Thank you for your help.
    I tried your code and changed the table/field name to my actual table/field name and the iitem name to actual item name.
    declare
    cursor c_Employees is
    select PERSONNEL_NEW.EMPLOYEEID from PERSONNEL_NEW where PERSONNEL_NEW.EMPLOYEEID in (:P15_SELECTEDEMP);
    cursor c_Courses is
    select COURSES.COURSE_ID from COURSES where COURSES.COURSE_ID in
    (:P15_SELECTEDCOUR);
    begin
    foreach :=r_employee in c_Employees loop
    foreach :=r_course in c_Courses loop
    insert
    into COPYOFTRAINREC ( EMPLOYEEID, COURSEID )
    values ( r_employee.EMPLOYEEID, r_course.COURSE_ID );
    end loop;
    end loop;
    end;
    I got error message as :
    ORA-06550: line 12, column 25: PLS-00103: Encountered the symbol "C_EMPLOYEES" when expecting one of the following: (
    Error
    OK

  • Merging iPhoto Libraries from two Macs

    Does anyone have a way of physically combining (not just sharing) iPhoto libraries from two macs? I'm hoping there's an easier, smarter way of doing it than just exporting all of the photos from one and importing them into the other and then just doing the reverse. Is there software that does this smarter? Can get rid of duplicates, etc.?

    Merge?
    Do you mean 'sync' libraries
    The general term means when two Libraries (A and B) are compared and files in Library A are copied to Library B, while files in Library B are also copied to Library A so that both Libraries are identical.
    This is bi-directional copying and you cannot do this with automatically with iPhoto. No Syncing software is capable of parsing the iPhoto Library in this manner. One or both of your Libraries will be damaged if you try this.
    The nearest you can get to syncing is to use iPhoto Library Manager to move files/Albums/Events plus assoicated metadata between Libraries. This process cannot be automated.
    The Export/Import route will not get your versions.
    Regards
    TD

  • Showing updated items from two lists ?

    Hi SharePoint Experts,
    I have created two custom lists in top level site, For accomplishing my task, I have used DataView to show all items from the two lists order by modify. Of course, this DataView webpart showing data but which is not in proper way.
    And also show status column from workflow which is actually from different groups.
    Is dashboards  suitable to my task? Is dashboards capable to show data from two list ? also status column from workflow.
    Appreciate if any suggestions..
    Thank you.

    Hi,
    As you are using SharePoint 2013 you can use the Content search web part to display the data from multiple list.
    Please refer to the similar post, which has detailed steps how to use the content search web part.
    http://sharepoint.stackexchange.com/questions/112085/how-to-get-data-from-multiple-table-or-list-in-sharepoint-2013
    If you still persists to use the Dataview web part, please refer to the following article.
    http://sp2013.blogspot.de/2013/11/two-sharepoint-lists-in-dataview-linked.html
    Please don't forget to mark it as answered, if your problem resolved or helpful.

  • How to schedule two jobs from two different work repository at a time?

    Hi All,
    I have a scenario where I want to schedule two jobs at a time from two work repository.
    Explanation:
    Master Repository-A
    Work Rep-B
    Work Rep-C
    Now I need to schedule two scenario one from Work rep B and other from Work Rep-C
    As we know that odiparams batch file contains the connection details and at one time it can hold only one work repository name.
    Odiparams data:
    rem Repository Connection Information
    rem
    set ODI_SECU_DRIVER=oracle.jdbc.driver.OracleDriver
    set ODI_SECU_URL=jdbc:jdbc:oracle:thin:@10.10.10.10:1521:orcl
    set ODI_SECU_USER=odi_snpm
    set ODI_SECU_ENCODED_PASS=aYyHZZCrzk5SjQ9rPOIUHp
    set ODI_SECU_WORK_REP=*ODI_LOCALDEV_WRKREP*
    set ODI_USER=SUPERVISOR
    set ODI_ENCODED_PASS=LELKIELGLJMDLKMGHEHJDBGBGFDGGH
    Scheduler agent will pick this information from the odiparams file and update the schedule.
    So If I want to schedule two job, how it is possible?
    I tried all possible things but didn't get the proper solution?
    Edited by: user10765509 on Jul 21, 2010 4:58 AM

    You can do it in the following way
    1. copy/paste the original odiparams.bat file
    2. give it a name say odiparams_a.bat
    3. specify the work repository A related information in odiparams_a.bat
    4. Make another copy of odiparams.bat file
    5. give it a name say odiparams_b.bat
    6 specify the work repository B related information in odiparams_b.bat
    7. now make 2 copies of agentscheduler.bat give the name as follows
    agentscheduler_a.bat and agentscheduler_b.bat
    8. edit agentscheduler_a.bat and change
    call "%ODI_HOME%\bin\odiparams.bat"
    with
    call "%ODI_HOME%\bin\odiparams_a.bat"
    9. edit agentscheduler_b.bat and change
    call "%ODI_HOME%\bin\odiparams.bat"
    with
    call "%ODI_HOME%\bin\odiparams_b.bat"
    10. now start two scheduler agent by calling agentscheduler_a.bat and agentscheduler_b.bat
    Thanks,
    Sutirtha
    PS : Take a backup of each and every file getting modified

  • How to delete a submenu menu item from a master page?

    I am having trouble deleting a submenu item from a menu on a master page. I'm not sure where or how it was created, but simply selecting it and trying to delete it, is not working...

    Sub-menus are generated by your site structure. Either delete the page or disable it from menus with the contextual menu. If it's not a page, make a temporary change to the site structure and then change it back to force Muse to refresh, it might be a glitch.

  • How do I combine two libraries from two different computers?

    My wife and I have two libraries on two windows computers. She wants to add my songs to her library. I do not wish to add her songs to mine. Can we do this? How is it done?
    All songs on my iPod have been purchased from iTunes. Her library is half purchased from iTunes, using the same iTunes account, and half from CDs that she's loaded.
    OK, rookie question. But we're headed on vacation and I want my iPod back for the trip.
    Thx!

    You can transfer the iTunes songs from your iPod to her computer, just remember two things.
    1) Set your iPod to manual management before connecting to another computer so you don't accidentally erase it. You can change it back to auto-syncing on your own computer when you are finished:
    Using iPod with Multiple computers
    Managing content manually on iPod and iPhone
    2) Authorise your wife's computer to play songs from your iTunes Store account:
    About iTunes Music Store Authorisation and Deauthorisation
    Copying iTunes Store purchases from your iPod or iPhone to a computer

  • Manually comparing Page items from two versions of an application?

    Hi folks,
    I have two separate applications, one being an older version of the other. Is there a way to query the APEX metadata on a per page item basis to check for any small changes between items, or which items exist on one but not the other?

    Thank you so much, it's very close to what I need, and at least something I can work with... one question though, how exactly do the details work? I'm seeing things like:
    P21_GIA_CUSTOMER da=HIDDEN_PROTECTEDV,seq=00930,r=CONTACT INFORMATION,c=Always,d=STATIC_TEXT_WITH_SUBSTITUTIONS,l=GIA Customer12,m=t=Optional Labels=CUST_ID7DBColumn ro=,lov=1NoNo,t=No,s=3020005,a=nowrap6,b=,disp=YesYes11 l=RightLeft,c=PerSesUnrest
    I'm not sure how to interpret that to see the differences.

  • Merging MacMail Emails From Two Mail Folders

    Because I had to use a different system hard drive for a few months I have email messages in two Mail Library folders.  I need to merge these new emails from the temporary hard drive into the original folder.  What would be the best way of doing this without having a huge amount of duplicate emails from both folders if I did a simple import?  I have over a hundred mail folders so I don't want to do this manually.
    Thanks!

    if both computers are running leopard you can export messages as follows. put the messages you want to export into a separate mailbox and choose mailbox menu->archive mailbox. move the archive to the other computer and in Mail go to File menu->import mailboxes.

  • Apex Application inserting into two tables from two regions in a page

    Hey Guys,
    Fairly new to apex like two days. So please bare with me. I am using apex 4.0.2.00.07.
    I have a page with two regions. The first region has only one row and I have no problems accessing it and inserting those values into the table this is what I used to access one column from that one row APEX_APPLICATION.G_F03(1)
    The second region is an interactive report, to which I have managed to add a checkbox and a textbox.
    1)So if a checkbox has been checked off the row should be inserted
    2) if the textbox has been entered it should replaceone of the values.
    My question is how to access the second region? I started a loop based on the rows in the collection but that is as far as I got.
    FOR idx IN 1..l_collectionTable_name
    loop
    end loop
    Any help would be greatly appreciated?
    Thank you
    Edited by: Aj05 on Aug 2, 2012 2:10 PM

    Hi Phil I used the following code
    <cfquery name="qArrivalDates" datasource="rayannesql">
    SET NOCOUNT ON
    INSERT INTO booking (book_made, book_checkin_date,
    book_checkout_date, book_adults, book_children)
    VALUES('#FORM.book_made#','#FORM.book_checkin_date#','#FORM.book_checkout_date#','#FORM.bo ok_adults#','#FORM.book_children#')
    SELECT SCOPE_IDENTITY() AS theNewId;
    SET NOCOUNT OFF
    </cfquery>
    <cfquery name="qArrivalDates" datasource="rayannesql">
    INSERT INTO Customer( firstname, lastname, address, address2,
    city, state, postalcode, country, phone, mobile, email, notes)
    Values (#qArrivalDates.theNewId# '#FORM.firstname#',
    '#FORM.lastname#', '#FORM.address#', '#FORM.address2#',
    '#FORM.city#', '#FORM.state#', '#FORM.postalcode#',
    '#FORM.country#', '#FORM.phone#', '#FORM.mobile#', '#FORM.email#',
    '#FORM.notes#' )
    </cfquery>
    When I tried to complete the form, I got the following error
    Macromedia][SequeLink JDBC Driver][ODBC
    Socket][Microsoft][SQL Native Client][SQL Server]Incorrect syntax
    near 'Fred'.
    The error occurred in
    C:\Inetpub\wwwroot\rayanne\customerinsertsql.cfm: line 16
    14 : <cfquery name="qArrivalDates"
    datasource="rayannesql">
    15 : INSERT INTO Customer( firstname, lastname, address,
    address2, city, state, postalcode, country, phone, mobile, email,
    notes)
    16 : Values (#qArrivalDates.theNewId# '#FORM.firstname#',
    '#FORM.lastname#', '#FORM.address#', '#FORM.address2#',
    '#FORM.city#', '#FORM.state#', '#FORM.postalcode#',
    '#FORM.country#', '#FORM.phone#', '#FORM.mobile#', '#FORM.email#',
    '#FORM.notes#' )
    17 : </cfquery>

  • Two items data in one page of smartform

    hi friends,
    there are two smartforms i need to display in single page , so here i have two internal tables item data , in one internal table 8 line items and other 12 line items , so these data I need to display in single page using smartforms can u plz sujjest me, points will awarded ,
    with regards,
    prasad

    hi prasad,
    can you please elaborate on your problem.
    do you mean you have 2 header data n corresponding line items or do you have 2 internal tbale data or something else.
    PLease elaborate so that we can help.

  • Merging OSB changes from two projects

    Good day,
    We have two (or possibly more) projects working on OSB. There are some assets that will be modified by more than one project but due to scope and timelines, this work cannot happen on one version.
    Is there a recommended way to merge changes from one branch of OSB assets to another branch of OSB assets? I know that under the hood it is just XML but treating the XML files as mergable assets without a tool like the Eclipse VCS support to help guide it seems like a recipe for problems.
    How do others handle this issue?
    Thanks,
    Sean

    Hi Sean,
    There is really no tool to guide us to merge two versions of the osb code. As you mentioned, given that osb code is represented as an xml file, you can try to do a comparison between them and merge them manually, but if the changes done in the different branches are significantly different I would refrain from doing so.
    #1 The best way is to let one team take the pain of redoing their changes on top of the other team's version.
    #2 One stop-gap solution is to build the logic in two different local proxies (by each team) and then have a wrapper proxy that can invoke appropriate proxy based on some logic. But if the functionality built by both the teams is similar, then the above option #1 will be the best way to maintain the code.
    Let us know in case of further issues/clarifications.
    Thanks,
    Patrick

Maybe you are looking for

  • How i disable android / windows phone files access in windows 7 system

    hi, I had created GPO for USB device disable. HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR Value type REG_DWORD Value data 0x4 (4) This will work for USB storage device not for Windows phone or android phone. Please guide me is there

  • Can't save anymore

    Hello from Brazil! Here goes my problem....I am working on a presentation with Rome. When I get near the 15th screen I can't get it to save my progress. When I select the option to save, the program crashes, then if I try to close its window it keeps

  • Fixing a background in position

    I'm sure this is a simple answer, but would appreciate some help. I have designed a website where the background is a photograph, and the content of the website in a container in the middle of the screen. At the moment the container floats across the

  • Unable to update from Prime Infrastructure 1.2 (1.2.0.103)

    Hello, I would like to update my Prime Infrastructure installation to the latest 2.0. According to this document I'm trying to install the update pi_1.2.1.12_update.tar.gz but I always get this error: PRIME-0000-01/admin# copy ftp://172.16.14.102/pi_

  • Web Provisioned feature in SharePoint not deactivating web feature

    I am trying to remove certain feature from a web when it is created. But it is not working at all. when i debug i see this feature definitions are null. am i doing something wrong in the code public override void WebProvisioned(SPWebEventProperties p