Is it possible to create a menu structure within iWeb with a so called tree layout? iWeb only provides automatically a horizontal layout

Is it possible to create a menu structure within iWeb with a so called tree layout? iWeb only provides automatically a horizontal layout

Not in iWeb itself.
You have to create these menus yourself. Start here :
     A List Apart: Articles: Suckerfish Dropdowns
Also, see podcast episode 9 of
     CSS Tricks and Tips
and then add them to a webpage with the HTML Snippet.
Or add the menu to the webpage with a JavaScript.
Here's a sample page :
     http://www.wyodor.net/mfi/roodhout/
     http://www.wyodor.net/mfi/spelling/
     http://www.wyodor.net/mfi/Maaskant/Some_Menus.html
The how-to-do page are here and here.
More sample pages on my Made for iPad with iWeb pages.
     http://www.wyodor.net/mfi/
You may have to learn HTML, CSS, JavaScript, AJAX, DOM and how iWeb creates its pages.

Similar Messages

  • Creating dynamic menu structure

    Hi Pals,
    I am using Jsp and database is MYSQL.
    I want to creat a menu structure dynamically.I have tabs in my main manu home,menu1,menu2,menu3.
    when i click on add new menu ,i need a page asks for menu name,and drop down listing all menu structure asking for which parent menu i want to add this menu.After submission the menu shold be added.Same should happen to to sub level menus also.
    for eg
    Home Menu1 Menu2 Menu3
    ..Menu11 ..Menu21
    ..Menu12 ..Menu22
    ...Menu221
    I will have a link Add new menu.when i click on that a new page should be like
    Menu name text box
    Parent menu listbox ..consists all the menu structure
    when i give a Menu name and select a particular menu from list box that menu should add under that parent menu.Suppose the user clicks on Menu221 and gave menu name as "support" then the menu structure
    shold b like this..
    Home Menu1 Menu2 Menu3
    ..Menu11 ..Menu21
    ..Menu12 ..Menu22
    ...Menu221
    ...Support
    Please advise me the database structure
    Thanks in advance
    Regards
    ...Rama

    If you want to display list for ADMIN's you can set it like this:
    rendered="#{jhsUserRoles['ADMIN']}"

  • Is it possible to create a playlist and share it with another itunes user?

    Is it possible to create a playlist and share it with another itunes user?

    try this out
    Select distinct   
    v_R_System.Netbios_Name0 AS [Computer Name],  
    v_GS_COMPUTER_SYSTEM.UserName0 AS [User Name]
     from v_R_System
    left join v_GS_COMPUTER_SYSTEM on (v_GS_COMPUTER_SYSTEM.ResourceID = v_R_System.ResourceID) 
    inner join v_fullcollectionmembership as b on (b.ResourceID = v_R_System.ResourceID) 
    left join v_GS_SYSTEM_CONSOLE_USAGE_MAXGROUP ON v_GS_SYSTEM_CONSOLE_USAGE_MAXGROUP.ResourceID = v_R_System.ResourceID
            inner join v_GS_SYSTEM e on e.resourceid = b.resourceid
     Where
    b.CollectionID = @collectionid
    Blog: http://theinfraguys.com
    Follow me at Facebook
    The Infra Guys Facebook Page
    Please remember to click Mark as Answer on the answer if it helps you in anyway

  • Is it possible to create in R/3 the invoices with status u0091parkedu0092?

    Hi ppl.
    We are working in EBP with extended classic scenario.
    We want to create invoices in EBP, but we want to create all invoice documents via EDI with status ‘parked’ in R/3.
    We read note 501524 (EDI: Generally parking incoming invoices). The note describes all that we want to do, but the problem is that the Function exit ‘EXIT_SAPLMRMH_014’ does not work for ‘BBPIV’ message type and the ‘IDOC_INPUT_BBP_IV’ function module.
    Is it possible to create in R/3 the invoices with status ‘parked’ for all incoming invoices created in EBP?
    Thanks and regards.

    Raul,
            Did you find a solution for this.
    We want to do the same here.
    thanks
    Sanjay

  • How to create a Menu structure in WDA( File, Edit, Help etc..)

    Hi,
    How can we create Menu structure on a Web page developed in WDA. So for example, on my application I need a Menu structure on top of it with following details:
    File   Edit  Header Help
    When user select all these heading, a drop down list with different option will come in each section.  So basically I want to impement a functionaly similar like Menu of a Web opae, where Menu structure is defined by me.
    Which element can be used for this purpose?
    Regards
    PG

    Hi PG
    Using MENU UI element you can acieve this...
    Create MENU ui element, in that INSERT MENU, in that INSERT MENU OPTION.
    CHECK THIS FOR HELP.
    http://help.sap.com/saphelp_nw70ehp2/helpdata/en/37/978b411fb4b05fe10000000a1550b0/content.htm
    Cheers,
    Kris.
    Edited by: kissnas on Mar 8, 2011 11:50 AM

  • Can I create a new structure within CIN?

    I can't create following structure using LabVIEW
    typedef struct _I2C_TRANS {
    BYTE byTransType;
    BYTE bySlvDevAddr;
    WORD wMemoryAddr;
    WORD wCount;
    BYTE Data[256];
    } I2C_TRANS, *PI2C_TRANS;
    I need this structure to a DLL-call.
    I tried put all elements to a cluster, but CIN creates two separate structures (see attached) and it doesn't work. I want to know how to create one structure for a DLL call LONG _stdcall DAPI_WriteI2c(HANDLE hDevInstance, I2C_TRANS * TransI2C);
    If there are any solutions for this, please let me know.
    Thanks in advance
    Martti Haro
    Attachments:
    structure.c ‏1 KB

    "Gabriela Tillmann" wrote in message
    news:[email protected]..
    > Hi
    > I'm afraid you'll get not by without writing a little C-wrapper to
    > convert the data types.
    That's not entirely true. It is possible but a little bit tricky.
    typedef struct _I2C_TRANS {
    BYTE byTransType;
    BYTE bySlvDevAddr;
    WORD wMemoryAddr;
    WORD wCount;
    BYTE Data[256];
    } I2C_TRANS, *PI2C_TRANS;
    The byte array inside the structure is fixed size and therefore each
    compiler
    will just embed this into the structure creating really a memory block of
    1 + 1 + 2 + 2 + 256 = 262 bytes.
    LabVIEW uses internally byte packing except on PA-RISC and Sparc systems
    so that you need to make sure that the DLL you want to call uses also that
    or if
    it doesn't adjust for this too on the diagram level.
    Assuming that the underlying DLL uses byte packing too, you can create a
    cluster
    in LabVIEW containing the first four parameters, wire it through the Byte
    Swap
    function and typecast it to a U8 array, append an 256 element U8 array and
    configere the Call Library Node to pass this as a pointer to an U8 array. If
    you
    need to extract data after the call to the DLL you need to typecast it back
    and/or
    extract the data array accordingly. Remember that typecasting on Windows has
    the effect of byte and word swapping data that is why the Byte Swap function
    is
    necessary.
    In general it is very often possible to call DLL functions directly even if
    they take
    compund data types but it is a little hassle. If it is about calling a few
    function the
    hassle may be worth your time as starting up a C development system and
    creating
    a DLL project certainly has some overhead. For more involved API calls it is
    usually always better to create your own wrap
    per DLL, making the parameters
    and function calls more LabVIEW friendly.

  • Is it possible to create outbound delivery for sales order with FM: GN_DEL*

    Hi all,
    Is it possible to create an outbound delivery for a sales order using the FM: GN_DELIVERY_CREATE. I am choosing this over a BAPI as I also needed to fill the bill of lading and inco terms.
    Thanks

    Hi Gurus, is there any function module / Bapi that updates the BOL in a outbound delivery  header created for a sales order

  • Is it possible to create a folder structure while using archivelink?

    We work with Archivelink and use SAPERION software/server for storing documents. We created a business object Advertisement. In a custom made application, users can open the GOS on Advertisement and now they have the possibility to select an extension out of a big list of document types like AVI, BMP etc. They doubleclick on a type and then they drag and drop a file from their desktop into the screen and then the file will be saved on saperion server.
    As the lists of document classes linked to the business object is quit big (about 15), we would like to add a folder structure. Now it looks like
    Advertisement
    BMP
    TXT
    AVI
    etc.
    and we would like to have
    Advertisement
    Folder Texts
    TXT
    PDF
    Folder Pictures
    JPG
    TIF
    Is this possible and if yes, how can this be achieved?

    Hi Angelique,
    sorry to tell you, but this is the wrong forum to ask application questions...
    KR Lars

  • Is it possible to create this Grid structure ?

    XX1
    Pr1
    Vr1
    Pr2
    Vr21
    Vr22
    Pr3
    Vr3
    Pr4
    Vr4
    XX2
    Pr5
    Vr5
    `
    Vr6
    PS - I don't mean to the group function.
    I really don't know if it's some Grid feature (the merging rows) or mabe the problem is in my ArrayCollection data ,
    I was trying to do something like that (or regular grid with 3 columns, and 2 the right columns grouped together) but it's displayed in 2 different rows.
    private var arr:ArrayCollection = new ArrayCollection([
    {aa:"1",bb:{bb1:"11",bb2:"111"}},
    {aa:"1",bb:{bb1:"22",bb2:"222"}}]);
    Thanks in advance.

    Does anyone have Idea how it can be implemented in regular grid or advance grid component ?
    Actually it seems very basic and regular grid, but the Item render, block my other grid functionalities and therefore I can't use it.
    please help ..
    every new direction or piece of information are welcome,
    Thanks in advance.

  • Is it possible to create an "interactive table" within acrobat?

    I am trying to create and shorten an existing large document, and one option that would be very helpful is to have a drop down table selection.  To elaborate:
    have a selection button that would allow user to select a specific option, then this option would bring up or allow a selectable table - the tables would be multi-entry tables which users of the document can enter in data within the table fields - can this be done?
    One other option could be the selection button does not have to "pull" up the specific table or be directly linked, but as long as the users can make a selection in one field, then select a specific table...this would work.  So to simplify this, can multiple tables be inserted into a drop down menu?

    thanks again - I really think that layout will really work and I can make the initial top level drop down specific to the equipment and the tables or text fields below that will really work.
    now what would be the best avenue to add additional entry fields into each?  can I just do a "select object" and copy / paste this below the existing?
    here is example of the tables:
    EQUIPMENT VERSION 1 TEST 1
    PARAMETER
    VALUE
    BASE PRESSURE
    START PRESSURE
    END PRESSURE
    SYSTEM VOLUME
    ACCEPTANCE THRESHOLD
    EQUIPMENT VERSION 2 TEST 3
    TIME
    PRESSURE
    COMMENT
    TIME
    PRESSURE
    COMMENT
    0
    1
    2
    3
    4
    5
    6
    The remaininig cells will allow user to enter in basic data taken from tests they are performing on the equipment, but the tables (created here in the discussion) will look very similar to these two tables....and they will slighly vary with some of the cell assignments between one type of equipment to the next ) which again I want to create a "drop down" selection at the header of the page that will select the specific equipment.
    and thanks again for the helpful info  -

  • Is it possible to create a MDI like applicatio​n with labview?

    I would like to create a main VI and all the sub vi's that have visible front pannels to be within the main vi. As a result when the user minimize a sub vi his frame will go inside the main vi and not in the windows task bar (only the main vi will be able to go there. Is that possible ?

    This question has been asked many times here. You can search this news gourp to find out.
    Or you can do a search on www.info-labview.org.
    George Zou
    http://gtoolbox.yeah.net
    George Zou
    http://webspace.webring.com/people/og/gtoolbox

  • Want to create a menu/list that expands with additional links when you rollover it

    The hardest part about using the "help menu" is figuring out
    what to search for.... I want to create a button on my website that
    expands to additional options/links when you roll over it.... An
    example would be on this Adobe website.... There is a bar across
    the top that says solutions, products, etc. When you roll over it,
    the link expands to additional options.... If someone can tell me
    what to search on in the help menu, I can take it from there....
    Thanks,
    Nancy

    Haaga wrote:
    > The hardest part about using the "help menu" is figuring
    out what to
    > search for.... I want to create a button on my website
    that expands
    > to additional options/links when you roll over it.... An
    example
    > would be on this Adobe website.... There is a bar across
    the top
    > that says solutions, products, etc. When you roll over
    it, the link
    > expands to additional options.... If someone can tell me
    what to
    > search on in the help menu, I can take it from there....
    http://www.google.com/search?hl=en&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=css-based+drop+ down&spell=1
    Thierry
    Articles and Tutorials:
    http://www.TJKDesign.com/go/?0
    The perfect FAQ page:
    http://www.TJKDesign.com/go/?9
    CSS-P Templates:
    http://www.TJKDesign.com/go/?1
    CSS Tab Menu:
    http://www.TJKDesign.com/go/?3

  • Is it possible to create a new account to use with an existing iPhone?

    My iTunes account was hacked and I want to create a new account. I have an iPhone 3G, and I want to start using my new iTunes account with it. Is it possible do this without losing all of the stuff on my iPhone and having to re-purchase all of the apps that I've bought?
    Thanks for any help.
    Sunil

    You can create a brand new iTunes account and sync to it. However, all of your apps will have to be manually deleted on the old account and newly downloaded to the new account.
    You don't have to do this, until there is an upgrade notification. I don't know what to tell you about those apps that you paid for. I think you might be out of luck with that. But, as another writer said, check with Apple. They may be able to help.
    Good luck.

  • Is it possible to create a PDF/A1a compliant file with SOAP API ?

    I saw that I can create two kind of PDF/A1b (CMJN and RVB), but nothing about PDF/A1a.
    Unfortunately, I see the same limitation in the administration pages of the LiveCycle server.
    -              Here is my code (using SOAP api) :
          Document inDoc = new Document(new FileInputStream(wordFile));
          String adobePDFSettings = ?????;
          String securitySettings = "";
          String fileTypeSettings = "";
          // Convert the Word document to a PDF document
          CreatePDFResult result = pdfGenClient.createPDF2(inDoc,
                                                    "dummy.doc",
                                                    fileTypeSettings,
                                                    adobePDFSettings,
                                                    securitySettings,
                                                    null,
                                                    null);
    -              I tried before using the OutputClient, but I had this exception :
                    com.adobe.livecycle.output.exception.OutputException:
                                    com.adobe.idp.DocumentError: com.adobe.idp.DocumentError: 403:
                                                    Authentication with DSC invocation permissions required.
    Any help, any idea will be greatly appreciated.
    Best regards,

    Hi CeeCee725,
    There is no longer a way in the Acrobat/Reader interface to do this.  Several conflicting methods were available via Adobe Acrobat, Adobe Reader, and multiple web browsers.  Each could conflict with the other including the settings for Acrobat and Reader installed on the same computer.  So, Adobe decided that the best way to handle this operation was through the web browser plug-in interface. 
    Best,
    Sara

  • Is it possible to create different font styles within the same text field?

    The form I am creating is getting really complex because when different fields require different font treatments (bold, italic, different font size, different font) I have to create a seperate text box and get it to align with the others. This wouldn't be an issue in most cases but this form is really detailed and has many text boxes. Before I stuggle too much longer on it, I thought I would check and see if there is a way to make them all in the same text field. If not, perhaps I am trying to use Acrobat for something it is not meant for. Any recommendations on other programs I could use? Thanks

    Thank you try76. I'm not sure if I did it correctly. As soon as I tick the Rich Text Formatting box it automatically changes the appearance of the text in the field (Helvetica Light to something like Helvetica Heavy) I can't seem to get the font back to Helvetica light or change the font size while the Rich Text Formatting box is ticked.

Maybe you are looking for

  • Photoshop CC wont let me save image with layers as a png or jpg

    I am a beginner and just got Ps last night. I have edited a photo and only put one effect on it, stroke. When i try and save the file as a png or jpg, or really anything other than a psd it tells me that it cannot save the layers the i used in that f

  • TSODBC Error with TOP function

    Hello all. I'm have a prospect with Crystal 2008 in one big custmer here in Brazil. Here make the download of the trial version of Crystal 2008 and he are making several test with the tool. He are trying to get data from Kiwi system (Supplie Chan) wi

  • Circular Joins in OBIA

    Hello Gurus, I have created a logical model where I am using conformed dimensions for reporting on multiple facts withing that Business Model. So lets say I have two dimensions Dim - Work Order and Dim - Company and I have two facts Fact - GL and Fac

  • Linkstation showing up as IPod!

    Hi, I have all my music stored on a Buffalo Linkstation NAS, and for some reason this shows up as my ipod when I plug the Ipod in! The info on itunes 7 correctly shows my ipods serial number, but the name 'share' comes up (that is what the linkstatio

  • Safari 4.0.3 can no longer open secure web page...

    Our business uses the following on-line platform login page which we've used for years... https://trading.insigniafutures.com/ Since updating to Safari 4.0.3, we can no longer access this page. When we try, we get a blank white screen and then Safari