How to create the same size of all Select lists?

I have a form with select list. Each of it has the size of max length of its content.
It is possible to made it all the same?
Regards Kostya

Kostya,
In the HTML Form Element Attributes of your select list put the following:
style="width:195px"
and all the select list items will have the width of 195px.
Denes Kubicek

Similar Messages

  • How to create the same title effects as in this video?

    How do I create the same title effects as in this video?
    By titles I mean the ones that say Exterior Front, Exterior Back, Foyer, etc...
    http://www.youtube.com/watch?v=TEKcasQAuaY
    I don't know how to have the black bar slide in, then have the word slide in, then have both slide out.
    I'm totally new at Premiere.

    It didn't appear that the words were sliding in. Rather, they were being wiped on.
    Information on using the Titler is here.
    Since you're new to Premiere Pro, you should begin at the beginning and work through the basic learning materials for Premiere Pro.

  • How to create the request for change of selection text into other language.

    Hi,
    In my object requirement is that when login through Japanese language,  then on selection screen selection text should appear in Japanese language. For that I have maintained the text in Japanese language the program where we define the selection text there from translation I have maintained the text in Japanese but while maintain the text it didn't ask me for REQUEST, because of that I am not able to transport the changes to next system, so I want know how to create the request for this case.
    Thanks

    Hello Chetan,
    You could goto the selection screen texts by goto-> selection texts,
    Then you could again goto -> Translation
    or
    Other-> Translation(Not sure )
    Then double click on the Program you should be able to see the Texts that need translation, now change something save and come back and try to activate, now it should propose for a new Transport Request.
    Either create a new transaport request or give one that you have given for the program.
    Hope the issue is resolved.

  • How to display the display value of a select list

    I want to display the display value instead of the return value of a select list but don't know how to do it, can someone help me?

    When you created the select list item, you are ask to provide a list of values query which can either be a SQL query or a Static List, which both follows the pattern of
    Dispaly;Return.
    Example:
    SQL query -
    select 'Yes' col1, 'Y' col2
    from dual
    Static -
    STATIC:Yes;Y
    which will display 'Yes' but will actually, return 'Y'.
    how did you set your select list item?
    Thanks,
    Marilyn

  • How to re-size project using flash bulider to be the same size in all screens

    Hi,
    Im develop  a chat project using flash bulider, my question is how i make sure that the porject when open from diffrent screens size no change,
    becouse after i finish th chat project i publish on website later i discover this problem for example when i access project from screen have size 17 or 21
    is work fine but in the same time i access from my notbook that him screen is 14 is not work and seems the project is mixed the webcamera no appear complete also other function dosent appear complete like sharescreen.
    can some help  guide me to find the way that i access the project whatever screen size is work fine and not mixed od disappear functions.
    Thanks,

    What email are you using?
    The easiest way to send pictures is to use Apple's Mail.app that is part of the OS - it DOES NOT require a .Mac account.
    If you are using a purely web-based email account, the File>Export method is the easiest.

  • How to change the logo size on all the pages?

    I have some 125 pages and i need to change the logo size of every page .Is there any method to change with one click that reflects on all the other pages ? Rather than i do it manually open every page and change the logo size? The logo is in the div. I want to use it as html rather than using as css div background image. Any help will be highly appreciated am using DWCS6 on win xp pro.

    If the code is the same on every page, you could use the Find & Replace function within DW...
    1. Make a backup of your site files, just in case
    2. Make the necessary changes to one page to get what you want (make sure you know what the original code for it was/is)
    3. Hit Ctrl + F to open the Find/Replace Dialogue
    4. For "Find In" choose Entire Current Local Site
    5. In "Search" choose Source Code
    6. For "Find" put the line(s) of code that contain your background image on all pages (the original code mentioned in #2 above)
    7. For "Replace" put in the newly changed line(s) of code from step 2.
    8. Hit Replace All
    DW will go through all of the pages, replacing whatever code you put in Find with whatever code you put in Replace.

  • How to add the same attachment to all emails?

    My office's fax system is email-based. I need to add the same disclaimer-containing cover page -- a pdf file -- to all outgoing emails (which are effectively outgoing faxes at my office).
    Any way to have Mail automatically add the same pdf file to every outgoing email?
    Thanks.

    I believe you can just drag the .pdf into a Signature (Mail>Preferences>Signature).
    Works on Mountain Lion.
    Message was edited by: xnav

  • Performance : how to detrmine the package size during a select

    Hi,
    When you do a select using package size, how to determine the value of the package size.
    Thanks for your help
    Marie

    Hi marie,
    1. When you do a select using package size
    Its done when number of records is very high.
    and we don't want to fetch all records,
    IN ONE SHOT.
    2. At that time, we fetch records in BUNCHES / PACKAGES.
    3. Just copy paste to get a taste of it.
    REPORT abc.
    DATA : t001 LIKE TABLE OF t001 WITH HEADER LINE.
    DATA : ctr TYPE i.
    selection screen.
    PARAMETERS : a TYPE c.
    START-OF-SELECTION.
      SELECT * FROM t001
      INTO TABLE t001
      PACKAGE SIZE 5 .
        ctr = ctr + 1.
        WRITE :/ '----
    Loop Pass # ' , ctr.
        LOOP AT t001.
          WRITE :/ t001-bukrs , t001-butxt.
        ENDLOOP.
      ENDSELECT.
    regards,
    amit m.

  • How can I get a container to be the same size as all its children

    In my TitleWindow, I have two children that size themselves
    dynamically.
    No problem, TitleWindow also sizes itself to completely show
    both children.
    Now I have an additional child that I can only position
    correctly if I set TitleWindow's layout parameter to absolute.
    The third child now positions itself correctly on top of the
    first child.
    But now TitleWindow is only as big as the first child and I
    have to scroll to see the second child.
    How can I force TitleWindow to be the size it was when layout
    was set to vertical?
    Doug

    Hi Doug - What exactly are you trying to do? Is the third
    child being added dynamically, and you want it added above the
    first child? If so, you can use the addChildAt() method when adding
    the child to the container. addChildAt() takes an index and the
    child object is added at that index and all other children are
    reshuffled to maintain the ordering. IE:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical">
    <mx:TitleWindow layout="vertical" id="tw">
    <mx:Button id="a" />
    <mx:Button id="b" click="go();"/>
    </mx:TitleWindow>
    <mx:Script>
    <![CDATA[
    private function go():void
    var c:Button = new Button();
    c.label="new";
    tw.addChildAt(c, 0);
    ]]>
    </mx:Script>
    </mx:Application>
    Does that help, or am I misinterpreting what you're trying to
    do?

  • How to create the same tablespaces in test database as in production

    I've used the following commands:
    (from 10gR2)
    expdp DIRECTORY=DATA_PUMP_DIR SCHEMAS=MDLOG EXCLUDE=STATISTICS DUMPFILE=mdlogMETADATA.dmp include=tablespace content=metadata_only
    Then:
    (into 11gR2)
    impdp DIRECTORY=DATA_PUMP_DIR DUMPFILE=mdlogMETADATA.dmp include=TABLESPACE sqlfile=c.sql
    According to the following posts it should work
    how to find username and tablespace name indatapump import
    [http://www.rampant-books.com/art_nanda_datapump.htm|http://www.rampant-books.com/art_nanda_datapump.htm]
    instead I obtain
    ORA-39002: invalid operation
    ORA-39168: Object path TABLESPACE was not found.
    Now I'm searching for incompatible options between expdp (10gr2) and impdp (11gr2).. and if include=TABLESPACE should be replaced with other option...
    meanwhile... is there something that can tell me if I'm making any mistakes?
    Tanks

    Ok.. it works.. but I need to edit all DISK GROUP NAME associated to datafiles.. because they are different...
    Is there any option to REMAP "DISK GROUP NAME" ?
    I'm unsuccessfully trying...
    impdp PARFILE=parameter_file.par
    where parameter_file.par is:
    DIRECTORY=DATA_PUMP_DIR
    DUMPFILE=all_schemas.dmp
    REMAP_DATAFILE="'+DATA_PROD':'+DATA_DEV'"
    INCLUDE=TABLESPACE
    SQLFILE=remap_datafile.sql
    no error is reported.
    The following is one of my tablespace:
    CREATE TABLESPACE "TBL_BILLING" DATAFILE
    '+DATA_PROD/rac1/datafile/tbl_billing.273.661541263' SIZE 1073741824
    AUTOEXTEND ON NEXT 536870912 MAXSIZE 32767M,
    '+DATA_PROD/rac1/datafile/tbl_billing.274.661541267' SIZE 1073741824
    AUTOEXTEND ON NEXT 536870912 MAXSIZE 32767M,
    '+DATA_PROD/rac1/datafile/tbl_billing.275.661541273' SIZE 1073741824
    AUTOEXTEND ON NEXT 536870912 MAXSIZE 32767M,
    '+DATA_PROD/rac1/datafile/tbl_billing.276.661541279' SIZE 1073741824
    AUTOEXTEND ON NEXT 536870912 MAXSIZE 32767M,
    '+DATA_PROD/rac1/datafile/tbl_billing.277.661541287' SIZE 1073741824
    AUTOEXTEND ON NEXT 536870912 MAXSIZE 32767M
    LOGGING ONLINE PERMANENT BLOCKSIZE 8192
    EXTENT MANAGEMENT LOCAL AUTOALLOCATE DEFAULT NOCOMPRESS SEGMENT SPACE MANAGEMENT AUTO;
    I'd like to have something like...
    CREATE TABLESPACE "TBL_BILLING" DATAFILE
    '+DATA_DEV/rac1/datafile/tbl_billing.273.661541263' SIZE 1073741824
    AUTOEXTEND ON NEXT 536870912 MAXSIZE 32767M,
    '+DATA_DEV/rac1/datafile/tbl_billing.274.661541267' SIZE 1073741824
    AUTOEXTEND ON NEXT 536870912 MAXSIZE 32767M,
    '+DATA_DEV/rac1/datafile/tbl_billing.275.661541273' SIZE 1073741824
    AUTOEXTEND ON NEXT 536870912 MAXSIZE 32767M,
    '+DATA_DEV/rac1/datafile/tbl_billing.276.661541279' SIZE 1073741824
    AUTOEXTEND ON NEXT 536870912 MAXSIZE 32767M,
    '+DATA_DEV/rac1/datafile/tbl_billing.277.661541287' SIZE 1073741824
    AUTOEXTEND ON NEXT 536870912 MAXSIZE 32767M
    LOGGING ONLINE PERMANENT BLOCKSIZE 8192
    EXTENT MANAGEMENT LOCAL AUTOALLOCATE DEFAULT NOCOMPRESS SEGMENT SPACE MANAGEMENT AUTO;

  • How to create the same cool 'introduction' menu/screen that Jira has?

    If you login to Jira for JavaFX bugs https://javafx-jira.kenai.com/
    there is a cool 'introduction' menu/screen "What's new with Jira 5.2"
    How was it implemented? I would like to have a similar screen for my application.

    Hi,
    Kindly go through this sample program below:
    DEMO_LIST_FORMAT_INPUT *and
    check this function module:
    FREE_SELECTIONS_DIALOG *.
    Hope it helps
    Regards
    Mansi

  • How to store the return value from a select list in page item ?

    I'm sorry, I'm sure you will all flame me for this (and its long too :-(. I'm still trying to pick this up and havn't had time to read manual and this forum and up against the clock (as usual), but this must be something thats simple to do, otherwise why have 2 cols on LOV (display text and return value.
    normal kind of thing - master /detail, a master table and a detail table, master.id is PK in master, master.name is the name of the master item. detail.id is pk in detail, detail.mid is foreign key to master.id. I have a tabular report that displays a join of cols from master and detail, with 2 cols being links, one is a link on master.name, that passes master.id to page P1 and it displays a row from master. The other col displays detail.name and passes detail.id to page P3, P3 displays a row of the detail table.
    I want to populate a LOV with possible master.name values, but display the name of the current P3_MID value (from detail.mid). Then a user can pick a different master and it needs to update P3_MID so on submit it updates the row.
    I just can't seem to see in the manual how you can specify where the return value on a LOV goes?
    As I said, sorry for long post and not having had time to read docs correctly - someone just point me at the subject matter somewhere, please.

    Sorry, I was trying to be to complex and obviously APEX is just too damn cleaver - I figured out how this works - basically APEX pulls the LOV and then matchs the mid to it to display the correct name - simple and easy - just me making it difficult

  • How do you use your pictures for web, iPad & smartphones? All the same size??

    i realy think back and froth about this question.
    i guess it makes sense - to use all the same size -  because newest Ipads and Iphones are with retina-screens !??
    on the other hand i use background-pictures for the website with a lenght of 1800px (it's 400 kbit) so it may slow down my the mobile version
    but i know , people always scroll and zoom into evrything with an Ipad and  smartphone ... So what to do?  What is your hint ?
    Thank you for your time ;-))
    Nachricht geändert durch Ideenautomat

    For me anyways, I 'always' create my images to the size I need and then bring them into what ever web design tool I am using wether it is Muse, Dreamweaver, Coda or a number of others. It takes a few minutes longer but I always get the results I need and expect.

  • How do I create a column the same size?

    How do I create a column the same size?
    I'm concatenating up to 6 cols into one col. If one of the column has a space it will shrink it (I used varchar2 and char) .
    e.g: col1= '123456', col2= ' ', col3= ' ',col4= ' 123', col5=' 51',....etc
    I want to see them as :colx= '123456', ' ', ' ',' 123',' 51'
    Thanks for your help.

    You are alomost right,:-)
    since OP said :If one of the column has a space it will shrink it (I used varchar2 and char) .
    So you should use replace function not trim function.
    test >  select  replace(' a b c ',' ') from dual
      2  /
    REP
    abc
    test >  select trim(' a b c ') from dual;
    TRIM(
    a b c

  • How do I make icons bigger? All icons are way too small for speedy use. no matter what I do they remain too small. Is there a way of getting them the same size as previous versions?

    All icons, such as refresh page, back, forward, stop and home etc; are just too small for comfortable use. For now I am uninstalling Firefox 4 and going back to 3.x. even the zoom page icons are too small.

    "I had read that GarageBand or the Musical Typing there can sometimes not display properly when the resolution is changed."
    Well, did you checked GB after you changed your resolution?
    Which setting did you change to?
    You & I have the same size iMac screen. My resolution setting is 1280x800. Everything fits perfectly in the windows & on desktop including the menu bar.
    All info in my windows are showing. I did not need to adjust my browser font size settings. I am sure you are aware of the browser font size settings. I use FF & the settings are in Preferences>Content.
    In the Finder window you can enlarge the icons & fonts also.
    Finder>View>Show View Options.

Maybe you are looking for