UI - How to make Columns in a Drop Down List Selection?

I am altering a code from Peter Kahrel "Beginning Script UI". I am trying to make a searchable drop down list that will have 4 columns. So far, the search works and I have headings in the search, but I cannot seem to make the columns for the actual data. I believe I need to change the type_ahead since the array is looking at this data. I'm stuck in the water. Can someone tell me what I need to do to get the list to show up as columns? How do I turn the picked = type_ahead data into four columns? Code and Screenshot below:
picked = type_ahead (["bat", "bear", "beaver", "bee", "cat", "cats_and_dogs",
"dog", "maggot", "moose", "moth", "mouse"]);
function type_ahead (array)
var w = new Window ("dialog", "Quick select");
var entry = w.add ("edittext", [0, 0, 800, 22]);
entry.active = true;
var list = w.add ("listbox",  [0, 0,800, 500], "",
{numberOfColumns: 4, showHeaders: true,
columnTitles: ["Non-Approved Word", "Approved Alternative", "Approved Use", "Non-Approved Use"], columnWidths: [200,200,200,200]});
list.selection = 0;
entry.onChanging = function ()
var temp = this.text;
list.removeAll ();
for (var i = 0; i < array.length; i++)
if (array[i].toLowerCase().indexOf (temp) == 0)
list.add ("item", array[i]);
if (list.items.length > 0)
list.selection = 0;
entry.onChange = function () {w.close (1)}
if (w.show () != 2)
return list.selection.text;
else
w.close ();

Hi Peter,
This is one of those developments that push the limits of my knowledge-base and when things do that, I lose sleep until I figure it out. With that said :-) here is where I have ended up.
Basically I made a new array for the table data.  I then use an array lookup to sort the array in the listbox based on the 0 array item. See the code below. Once it is loaded type in "b" and the list will start to sort.
I need to try to get this to work as a pallete instead of a dialog box. Do palletes support this type of functionality?
var newarray = new Array(
new Array('Butterfly ','has wings','can fly'),
new Array('bohemith moth','has wings','cannot fly very good'),
new Array('word 3','replacement word','use case'));
picked = type_ahead (newarray);
function type_ahead (array)
var w = new Window ("dialog", "STE Checker");
var entry = w.add ("edittext", [0, 0, 800, 22]);
entry.active = true;
var list = w.add ("listbox",  [0, 0,800, 500], "",
{numberOfColumns: 3, showHeaders: true,
columnTitles: ["Column 1",  "Column 2", "Column 3" ], columnWidths: [200,200,400]});
list.selection = 0;
entry.onChanging = function ()
var temp = this.text;
list.removeAll ();
for (var i = 0; i < array.length; i++)
if (array[i][0].toLowerCase().indexOf (temp) == 0)
with (list.add ("item", array[i][0]))
subItems[0].text = array[i][1];
subItems[1].text = array[i][2];
if (list.items.length > 0)
list.selection = 0;
entry.onChange = function () {}
if (w.show () != 2)
return list.selection.text;
else
w.close ();

Similar Messages

  • How can I get a drop-down list selection also be selected in another field with the same list but a different name?

    I have a street address and a billing address. A question is posed with a checkbox — "Is the billing address the same as the street address?" If Yes is checked, the street address automatically fills the billing fields. If No is checked, the user must fill in new information. In both the street address and billing addres, the State field is a drop-down list. How can I get the drop-down list selection in the street address State also be selected in drop-down list for the billing address State?

    Has anyone done this?

  • How to make div id properties drop down wider?

    When working with div's you can assign/create a div ID name to them. These are all remembered throught Dreamweaver so you could apply the same div ID to another div having the CSS properties already created quickly applied to this new div.
    My issue is that the Div ID pull down menu in the properties panel is so narrow that it does not display the entire name of previously created divs.  Considering several of them begin with similar names, seeing which one to choose is impossible because I cannot see the full name in the drop down list.  Is there another place to pick from the list of previously created div ID's or better yet a simple way to resize the width of the div ID name in the properties panel....seems like a oversight unless I'm missing something.
    Hope this makes sense and there is a simple solution.
    All the best,
    James Hooey
    http://www.soundprostudios.com

    Switch to code view.
    Type <div id= or <p class=
    DW's code hinting will give you a list of choices.  See screenshot.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How to populate data from dynamic drop down list to the text field

    Hi,
    I tried to populate data from dynamic drop down list to city field. I would like to concat data from drop down list.When selecting add button to add the item and select item from drop down list, data should be displayed in the text field. However, Please help. I spent alot of time to make it works I am not successful.
    Please see the link below.
    https://acrobat.com/#d=SCPS0eVi6yz13ENV0cnUdw
    Thanks for your help
    Cindy

    Hi Rosalin,
    Loop the hidden table, get the values and populate drop down in each iteration.
    DropDownList1.addItem("Text","Value");
    You can use one more solution for this scenario. If it is a matter of 2,3 dropdowns, put three dropDowns in the form layout and give seperate static data binding to them. At run time make the dropDowns hide/visible as per the requirement.
    Hope this helps.
    Thanks & Regards,
    Sanoosh

  • How to use value in a drop-down list box as "With these Values" parameter?

    Hello, new user.
    I have a drop-down list box on Page 1, upon which the user can choose a study number. The List Box is named "P1_STUDY_NBR".
    Then I have a list, one entry of which goes to my master-detail form, which is Page 6. I would like it to go to the study number that the user choose on Page 1.
    In my target on the create/edit list entry, I put in "Page in this Application", "Page 6", then in Set these items, I put in
    P6_STUDY_NBR
    My question is what to use in With these values, where I want the contents of the P1_STUDY_NBR. I tried:
    &P1_STUDY_NBR
    and that does not work. If I put in one of the study numbers, like 336-00, then it does work, but I want it to pass the study number the user chooses in the list box. How do I refer to the contents of P1_STUDY_NBR?
    -Mary

    Yes, that does work, thanks. I'm now getting the default value I was putting in yesterday rather than an error message, so there must be something loading it, but I'll hunt around for what process might be doing that, or try re-creating the master-detail form again.

  • How to use the concept of drop down list in Xcode

    Please help to make an app that uses a dropdown list inside a tableview cell

    You can use UIPickerView or Safari web page, where could be displayed a drop down list instead.

  • How to add user command to drop down list in output screen for OALV Report

    Hi Experts,
    I have created a report by using OALV.
    in Output screen i have  added drop down for one filed with 2 values.
    when i select  value from the drop down list the  program should trigger and the next field should be update.
    so it is possiable to add a user command for the drop down list in output screen.
    if so please help me .
    Regards,
    Rathan

    HI,
    Check the Demo program BCALV_EDIT_06 with having the DATA_CHANGED event still you can capture the changed data. This event will help you.
    or you can go for this code..
    data: it_f4 type lvc_t_f4,
            wa_f4 type lvc_s_f4.
            wa_f4-FIELDNAME = 'CONNID'.
            wa_f4-REGISTER = 'X'.
            wa_f4-GETBEFORE = 'X'.
            wa_f4-CHNGEAFTER = 'X'.
            append wa_f4 to it_f4.
    "register F4 event
      CALL METHOD g_alv_grid_ref->register_f4_for_fields
        EXPORTING
          it_f4  = it_f4.
    "Once you try to pick the value HANDLE_DATA_CHANGED event will be triggered
    "Definition
         methods:
         handle_data_changed FOR EVENT data_changed OF cl_gui_alv_grid
                                  IMPORTING er_data_changed e_onf4 e_onf4_before e_onf4_after,
    "Implementation
    METHOD handle_data_changed .
        DATA: ls_mod_cells TYPE lvc_s_modi.
        IF e_onf4_before = 'X'.
          MESSAGE 'Data changed before F4' TYPE 'I'.
        ENDIF.
        IF e_onf4 = 'X'.   "if event triggered by F4
          MESSAGE 'Data changed on F4' TYPE 'I'.
        ENDIF.
        IF e_onf4_after = 'X'.
          MESSAGE 'Data changed after F4' TYPE 'I'.
        ENDIF.
       "here you know which cell was modified
        LOOP AT er_data_changed->mt_mod_cells INTO ls_mod_cells.
         "just example test case, here you can implement your code for modified cells
          IF ls_mod_cells-value >=5.
            CALL METHOD er_data_changed->add_protocol_entry
              EXPORTING
                i_msgid     = 'SABAPDOCU'
                i_msgty     = 'E'
                i_msgno     = '888'
                i_msgv1     = 'Only numbers below 5 are possibe'
                i_msgv2     = 'Please correct'
                i_fieldname = ls_mod_cells-fieldname
                i_row_id    = ls_mod_cells-row_id.
            CALL METHOD er_data_changed->modify_cell
              EXPORTING
                i_fieldname = ls_mod_cells-fieldname
                i_row_id    = ls_mod_cells-row_id
                i_value     = space.
          ENDIF.
        ENDLOOP.
      ENDMETHOD.                    "handle_data_changed
    Edited by: sum_it2 on Nov 21, 2011 10:07 AM

  • How can I add categories to drop-down lists or check-boxes?

    hello can I use sub categories or group items by labels when using drop-down lists or check-boxes?

    You can't include sub-menus in a drop-down. What is possible, though, is to populate another drop-down based on the selection made in the first one, or use a pop-up menu. Both things require a script, though.

  • How can I put JTree into drop-down List of JCombobox

    I want to create a drop-down list which shows a list of nodes. When the user clicks on a node, it should open to show the leafs. Clicking on a leaf should close the ComboboxPopup and show its value. Creating a renderer only represent my tree, but I can't trap the events.
    Here is my simplified code.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.JTree;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.border.*;
    import java.util.*;
    public class ComboBoxTreeDemo  extends JPanel
         static JFrame frame;
         ComboBoxRenderer renderer;
         JTree tree;
         public ComboBoxTreeDemo()
              setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
              DefaultMutableTreeNode root =  new DefaultMutableTreeNode("top");
              DefaultMutableTreeNode sub1 =  new DefaultMutableTreeNode("sub1");
              DefaultMutableTreeNode sub2 =  new DefaultMutableTreeNode("sub2");
              root.add(sub1);
              root.add(sub2);
              tree = new JTree(root);
              String[] string = {"1" };
              JComboBox jcb = new JComboBox(string);
              renderer = new ComboBoxRenderer(this);
              jcb.setPreferredSize(new Dimension(100,22));
              jcb.setEditable(true);
              jcb.setRenderer(renderer);
              JPanel jpa = new JPanel();
              jpa.setLayout(new BoxLayout(jpa, BoxLayout.PAGE_AXIS));
              jpa.setAlignmentX(Component.LEFT_ALIGNMENT);
              jpa.add(jcb);
              add(jpa);
              setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
         private static void createAndShowGUI()
              JFrame.setDefaultLookAndFeelDecorated(true);
              JFrame frame = new JFrame("ComboBoxTreeDemo");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JComponent newContentPane = new ComboBoxTreeDemo();
              newContentPane.setOpaque(true);
              frame.setContentPane(newContentPane);
              frame.pack();
              frame.setVisible(true);
          class ComboBoxRenderer extends JPanel implements ListCellRenderer
              ComboBoxTreeDemo cbt;
              public ComboBoxRenderer(ComboBoxTreeDemo cbt)
                   this.cbt = cbt;
                   setLayout(new BorderLayout());
                   add(cbt.tree);
              public Component getListCellRendererComponent(JList list,Object value,int index, boolean isSelected,boolean cellHasFocus)
                   return this;
         public static void main(String[] args)
              javax.swing.SwingUtilities.invokeLater(new Runnable()
                   public void run()
                        createAndShowGUI();
    }

    Thank you for the excellent reference Peddi. I had played with the OAMessageChoiceBean component yesterday, but I was able to tell from your instructions that "Picklist Display Attribute" and "Picklist Value Attribute" really are not for binding to the database EO. That was the key piece of information that had me confused.
    In addition to adding the messageChoice component to the page, I needed to write some code to synchronize the picklist value with the corresponding code value, which I placed in am OAFormValueBean (hidden form field) which I could then bind to my application's database EO in the controller, running in the processFormRequest procedure:
    /** Synchronize the catalog code with the selected catalog name */
    protected void syncCatalogValues(OAPageContext pageContext,
    OAWebBean webBean, MyApplicationAMImpl am) {   
    OAMessageChoiceBean mcb =
    (OAMessageChoiceBean) webBean.findChildRecursive("CatalogName");
    OAFormValueBean cc =
    (OAFormValueBean) webBean.findChildRecursive("CatalogCode");
    String catalogDescription = mcb.getText(pageContext);
    if (catalogDescription != null) {
    String catalogCode = am.getCatalogCode(catalogDescription);
    cc.setValue(pageContext, catalogCode);
    Along with a little code to get the catalogCode value from the LOVVO, that's all it took.
    Thanks again. This was a great help.
    Pete

  • Dynamic Drop-down list - selected value can't be cleared ...

    1. check out the following code of a dynamic drop down list using cursor :-
    DECLARE
         -- DROP-DOWN LIST OF ALL DEPARTMENTS
         TEMPNUMBER NUMBER(2) := 2 ;
    -- Because we've to initialize the list
    -- at least with 1 item.
    CURSOR C_DEPT IS
         SELECT DEPT_ID FROM DEPARTMENT;
    BEGIN
         ABORT_QUERY ;
         CLEAR_LIST('DEPTLIST');
         FOR TEMP IN C_DEPT LOOP
         ADD_LIST_ELEMENT( 'DEPTLIST', TEMPNUMBER, TEMP.DEPT_ID, TEMP.DEPT_ID );
         :SRBLOCK.LST := TEMP.DEPTNO;
         -- prev. line set the newly selected value
         TEMPNUMBER := TEMPNUMBER + 1 ;
         END LOOP;     
    END;
    2. problem is as we've to atleast initialize with one list item... that item can't be cleared with CLEAR_LIST.
    3. how can i actually clear that and still use cursor. because i've searched forum for this thing and found all those code not working ... for my project ...
    4. quick help needed ...

    Hi Omar,
    I have solution for you
    To populating or refreshing the lists you can use
    two procedures:
    One of them - generic, which can be used for all types of list
    Another is specific which contain a SQL statement to retrieve the data for
    particular list.
    1. Specific procedure:
    PROCEDURE GET_DEPARTMENT_LIST
    IS
    sql_stat VARCHAR2(32767);
    ret_code NUMBER;
    BEGIN
    -- SQL Statement for Drop-down List
    -- (must have two columns for label and value - both VARCHAR2)
    sql_stat := ' SELECT DEPARTMENT_NAME,TO_CHAR(DEPT_ID)'
    ||' FROM SCHEMA.DEPARTMENT';
    POPULATE_MY_LIST('BLOCK.DEPARTMENT_LIST',sql_stat,ret_code);
    END;
    2. Generic procedure:
    PROCEDURE POPULATE_MY_LIST
    (item_name VARCHAR2,
    sql_stat VARCHAR2,
    out_code OUT NUMBER)
    IS
    rg_id RECORDGROUP;
    rg_name VARCHAR2(100);
    ret_code NUMBER;
    item_id ITEM;
    BEGIN
         item_id := FIND_ITEM(item_name);
         IF ID_NULL(item_id) THEN
              out_code := -1;
              RETURN;
         END IF;
         --Creating Record Group with Unique Name
         rg_name := 'RG_'||SUBSTR(item_name,INSTR(item_name,'.',1)+1,LENGTH(item_name));
         --Checking Record Group Name for existance
         rg_id := FIND_GROUP(rg_name);
         --If Group does exist - delete it
         IF NOT ID_NULL(rg_id) THEN
              DELETE_GROUP(rg_id);
         END IF;
         --Creating Record Group
         rg_id := CREATE_GROUP_FROM_QUERY(rg_name,sql_stat);
    ret_code := POPULATE_GROUP(rg_id);
    IF (ret_code <> 0) THEN
         out_code := ret_code;
         RETURN;
    END IF;
    POPULATE_LIST(item_name,rg_id);
    IF NOT FORM_SUCCESS THEN
         out_code := -2;
         RETURN;
    ELSE
    out_code := 0;     
    END IF;
    DELETE_GROUP(rg_id);
    END;
    Hope it help.
    Dmitry

  • HCM Processes & Forms: Field not updating after Drop Down list selection

    Hello all,
    I am having a problem that I think happens a lot, but I can't solve it through all the examples given here.
    I have a Drop Down List where I change the value. On the CHANGE event, I have:
    xfa.record.CONTROL_PARAM.ISR_EVENT.value = "GET_ORGINFO";
    ContainerFoundation_JS.SendMessageToContainer(event.target, "submit", "", "", "", "");
    I have defined a User Event called GET_ORGINFO. It gets triggered fine. It moves into my generic service that I defined, and it changes the value that I want to change.
    When I look at the PDF, the value is still in it's old value. So, after reading some blogs, which specifically says, if something goes wrong in one service (I have 3: my own, SAP_PA and S_MGRS_POSITIONS), they all fail. I debugged and checked, and, after some changes, nothing goes wrong anymore, nothing that I can see anyway.
    So what I do see, is that there's a call made like this:
      CALL METHOD me->process_data_container
        EXPORTING
          ref_to_data_container = ref_to_relevant_data_container
          operation             = c_do_operations
          message_handler       = dummy_message_handler
          no_auth_check         = no_auth_check
        IMPORTING
          is_ok                 = operation_ok.
    Within this method, my new value is listed (in the table VALUES_OF_FIELDS). After this call is made, so when it exists the method process_data_container, the old values are back in VALUES_OF_FIELDS.
    So, at the last moment INSIDE the method, the values are correct, as soon as it steps out of this method, the old values are back.
    Does anyone have any idea? Am I doing something wrong with regards to the User Events? I am on EnhP 04.
    Gr,
    Jaron Frenk

    Hey Chris,
    Unfortunately, that's not it. I did check the fields I need. Everything is going ok. As in, I get the fields (with their current values) in my own generic operation. I see everything updated the way it should. But then at the end, nothing happens...
    What exactly do you mean by " then make sure your own generic service has it's input/output defined correctly". What input/output do you mean? I assume the generic service itself is okay, since it works with the user event "USER_EVENT_CHECK". And it sure is possible I am forgetting something in the definition of the user event, but I can't figure out what.
    A small addition*
    I just checked by user event. I have 3 fields selected:
    I0001_PERSG
    I0001_PERSG_TXT
    I0001_PERSK
    The generic service should get the PERSG and PERSG_TXT based on the PERSK that is entered. I don't think I need anything more.
    Gr,
    Jaron
    Edited by: J. Frenk on Apr 26, 2010 9:01 AM

  • TextBox does not update when drop down list selection changes

    I have drop down list the user can select a client name from. Once the client is selected and the "view report" button is clicked it the report has a textbox that displays the Client name or it is supposed too.
    The report will display the first client name but any subsequent client name does not display on the first. I am pretty sure that is because I have chosen the "Dataset" where the both the "values' have "first" in front of the field.
    How do I get the textbox to update to match as each client is chosen from the drop down list? I cannot use the report "parameter" I am passing to the stored procedure because the drop down list's parameter is the database name not the client
    name.
    Any help is appreciated.
    Thanks,
    Sue

    Okay, sorry but I am just getting back to my report. I still cannot display the Client Name in a text box at the top of my report. The textbox must be dynamic because my client name can be one of many that is picked from a drop down list box.
    I added a textbox and tried to use the "join" with my Parameter - clientname.
    In the textbox expression I used the following:
    =JOIN(First(Fields!ClientName.Value,
    "GetDatabaseName"),",")
    I got this error message:
    [rsRuntimeErrorInExpression] The Value expression for the textrun Textbox1.Paragraphs[0].TextRuns[0] contains an error: Overload resolution failed because no Public 'Join' can be called with these arguments:
        'Public Shared Function Join(SourceArray As String(), [Delimiter As String =  ]) As String':
            Argument matching parameter 'SourceArray' cannot convert from 'String' to 'String()'.
        'Public Shared Function Join(SourceArray As System.Object(), [Delimiter As String =  ]) As String':
            Argument matching parameter 'SourceArray' cannot convert from 'String' to 'Object()'.
    Preview complete -- 0 errors, 1 warnings
    I also tried setting up a "filter" on the clientname using these instructions
    Right-click the dataset (GetDatabaseName) to open the Dataset Properties.
    Click Filters in the left pane, add a filter like below:
    Expression:[DBName]
    Operator: In(multiple-parameter) or =(signal-parameter)
    Value:[@DBName]
    I get an error message too which I am not even going to display.
    I can set it up and run it as long as I don't want to change the value in the "textbox" to match the value in the drop down list. I am totally frustrated at this point. Why won't it work?
    Simply put - I want the value selected in my drop down list box to match the value in my textbox at the top of my report if drop down list says "Susie" then I want "Susie" in my textbox or if drop down changes to "Bobby" then I want Bobby to show up in my
    textbox when I generate my report.
    Any suggestions of what else I may need to try?
    Thanks for the help.
    Sue
    Sue

  • Drop down list selection problem

    Hi there,
    We're having trouble selecting an item from a drop down list. The list in question fires javascript that resets the list to an index of 0 on the mouseover event (this cannot be changed for testing).
    When the open script is recorded it appears to record correctly, ie. if there 3rd index in the list is selected, .selectOptionByText("Item at at index 3") is generated at the correct location in the script, but apparently, due to the javascript, the index is reset to 0 after the item at index 3 is selected... The drop down is definitely not 'moused over' again during the recording of the test, why would the mouseover event be triggered after another option is selected? And is there a way to prevent this?
    Thanks

    Hi,
    Sorry it is with BI reports.
    Regards
    Krishna

  • How to make buttons work in drop down movieclip in flash???

          I am trying to make an index page with buttons for a photography site.  the entire page is built in flash so far.  My question is that I have created a drop down menu that is a Movieclip with 5 buttons.  I can not seem to assign an external web page to each buttons that are under the movie clip drop down menu.   Is this a possible??   The Movie clip is run by mouse-over the word "studio Gallery" button.  This drops down the 5 gallerbuttons (Portrait, children, wedding, Artistic Babies, etc...).  In Flash 8 Pro I know I can assign an external web page named children on the main page but how do I assign these to the buttons in the drop down once the movieclip is made.  Is this where I need to use folders with extra layers in the folder to make it work??
    In case you can not tell I am new to this and have been teaching my self with "Training from the Source" and also "Visual Quickstart Guide"  so go easy on me  8-)
    Randy

    Ned Murphy,
    Your advise was very helpful as I found the info that was very helpful
    with the google search.   I still have one nagging problem, I get an
    error shown below:
    *Error* Scene=Scene 1, layer=Buttons, frame=1:Line 2: Mouse events are
    permitted only for button instances
         on (rollOver) {
    Other than the difference of onrelease to on (rollOver) I see no reason
    for this error
            The clip works but when the mouse rolls out it does not close
    the dropdown menu I have included the drop down file here also.   I will
    be using this to add the resulting "swf" file to the area on my larger
    fla to get the menues working but I don't want the menu to stay open
    once someone rolls over it if they want to goto an other spot on the page.
    I'm 53 yrs old and can not afford much more Hair pulling I will be bald
    if the little stuff wins....
    Thanks for the help
    Randy
    What you should do is search Google using "AS2 drop down tutorial".  That should produce a few results that you can use to guide you thru the process.
    I cannot tell clearly from your description so far, but it sounds like your movieclip contains the buttons and has a rollover assigned to it.  That rollover will block interaction with the buttons.  So your best bet is to get a hold of a tutorial that will walk you thru the process so that you can get your buttons working the way you want.
    >

  • How to Make a Non-Spry Drop Down Menu Bar?

    In Dreamweaver CS6, I'm building a Fluid Grid website. I'm trying to make a simple menu bar with 2 submenu items and 2 subsubmenu items. I was using Spry but found out that Spry is dead. So what do I use instead?

    First of all, if you are in a hurry, Project VII's Pop Menu Magic 3 is a great choice. Since it's a Dreamweaver plugin, making navigation is a snap. Just click on the PMM icon and start making.
    One does not need CSS3 for a drop-down menu structure—the necessary requirement to talk to a web browser is in CSS2. Also you do not need to load your website with jQuery—though I don't want to come across as "anti-jQuery."
    Here is a link to a complete tutorial on pure CSS drop-down navigation. There are dozens of others.
    The real secret is using position:relative, then position:absolute for the drop-down and hiding it by positioning it off-screen when not in use. This tutorial also uses some CSS3 for tablets and cell phones, though it is not required for desktops.
    You can take this a step further by hiding the entire navigation structure (and then revealing it) for cell phones with this tutorial. This will allow you to construct navigation for your website so that it will work for all devices.
    Please note, no jQuery is necessary in either of these tutorials.
    -Mark

Maybe you are looking for

  • Restore using TSPITR Results  Dead lock error

    This is the step is followed but i am getting deadlock error .please give your valuable suggestion . Product Used:oracle 11g in linux environmnet 1)Before taking backup get SCN number for restore. Command applied: Select current_scn from v$database;

  • Issue with number of lines in Table control for an web transaction in ITS

    Hi, We have acustom web transaction ZC03 where we have used table controls. Recently a kernal patch has been installed and after that the number of lines appearing in table control has got changed. Earlier table control was coming with 5 lines and pr

  • Blobs in scripts

    I have a table which contains a Blob column. Now Normally these don't even take up as much as 1K, however they can potentially take more than 4K. They will alwys be less than 32 K. I want to be able to unload these blobs along with the rest of the da

  • Is there good training/information step-through on using the 3 way color correction in CS6?

    I am looking to see if there is a good source of information about how to use the 3 way color correction in premier Pro CS6?  It's very complex and daunting when I first look at it, and I would like to figure out how to use it effectively for my unde

  • Backed up data dvd-rw will not mount on my desktop?

    a few months ago, i used retrospect to backup files onto five verbatim dvd-rw disks. the backups went fine and after they each were done i checked them to make sure that the backup was successful (which in all cases it was). recently i wanted to upda