Is it possible to adjust the size of an inputText to the column size ..?

Is it possible to adjust the size of an inputText that it correspond to the column size in a af:table.
Thanks

I don't need 30% ... i just need that me tree as a mininal width
Here is my page :
<af:panelBorder>
<f:facet name="top">
<af:panelHeader text="#{res['classification.repository.entryList.panelHeader.title']}"/>
</f:facet>
<f:facet name="left">
<af:panelGroup layout="vertical">
<af:panelHeader text="#{res['classification.repository.entryList.list.panelHeader.title']}">
<af:tree value="#{bindings.ClassificationEntryListclassificationEntry.treeModel}"
var="node">
<f:facet name="nodeStamp">
<h:panelGroup>
<af:commandLink text="#{node.classificationEntryCategoryCode} #{node.classificationEntryCode}"
shortDesc="#{res['classification.repository.entryList.tree.commandLink.shortDesc.textPart1']} #{node.classificationEntryStatus} #{res['classification.repository.entryList.tree.commandLink.shortDesc.textPart2']}#{node.classificationEntryCodeFullPath}">
<f:param name="selectedIdentification"
value="#{node.classificationEntryIdentification}"/>
</af:commandLink>
</h:panelGroup>
</f:facet>
</af:tree>
</af:panelHeader>
</af:panelGroup>
</f:facet>
<af:panelGroup layout="vertical">
<af:panelHeader text="#{res['classification.repository.entryList.node.panelHeader.title']}"
binding="#{backingRepositoryEntryList.entryNodePanelHeader}">
<af:showDetailHeader text="#{res['classification.repository.entryList.base.panelHeader.title']}">
<af:panelForm>
<af:inputText value="#{bindings.classificationEntryCategoryCode.inputValue}"
label="#{bindings.classificationEntryCategoryCode.label}"
required="#{bindings.classificationEntryCategoryCode.mandatory}"
columns="#{bindings.classificationEntryCategoryCode.displayWidth}">
<af:validator binding="#{bindings.classificationEntryCategoryCode.validator}"/>
</af:inputText>
<af:inputText value="#{bindings.classificationEntryCode.inputValue}"
label="#{bindings.classificationEntryCode.label}"
required="#{bindings.classificationEntryCode.mandatory}"
columns="#{bindings.classificationEntryCode.displayWidth}">
<af:validator binding="#{bindings.classificationEntryCode.validator}"/>
</af:inputText>
<af:inputText value="#{bindings.classificationEntryCodeFullPath.inputValue}"
label="#{bindings.classificationEntryCodeFullPath.label}"
required="#{bindings.classificationEntryCodeFullPath.mandatory}"
columns="#{bindings.classificationEntryCodeFullPath.displayWidth}">
<af:validator binding="#{bindings.classificationEntryCodeFullPath.validator}"/>
</af:inputText>
<af:inputText value="#{bindings.classificationEntryIdentification.inputValue}"
label="#{bindings.classificationEntryIdentification.label}"
required="#{bindings.classificationEntryIdentification.mandatory}"
columns="#{bindings.classificationEntryIdentification.displayWidth}">
<af:validator binding="#{bindings.classificationEntryIdentification.validator}"/>
</af:inputText>
</af:panelForm>
</af:showDetailHeader>
<af:showDetailHeader text="#{res['classification.repository.entryList.mainTitle.panelHeader.title']}">
<af:table value="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.collectionModel}"
var="row"
rows="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.rangeSize}"
first="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.rangeStart}"
emptyText="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.viewable ? 'No rows yet.' : 'Access Denied.'}"
selectionState="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.collectionModel.selectedRow}"
selectionListener="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.collectionModel.makeCurrent}"
width="100%">
<af:column sortProperty="language" sortable="true"
headerText="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.labels.language}"
width="20%">
<af:inputText value="#{row.language}" simple="true"
required="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.attrDefs.language.mandatory}"
columns="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.attrHints.language.displayWidth}"
inlineStyle="width: 100%"/>
</af:column>
<af:column sortProperty="content" sortable="true"
headerText="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.labels.content}">
<af:inputText value="#{row.content}" simple="true"
required="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.attrDefs.content.mandatory}"
columns="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.attrHints.content.displayWidth}"
inlineStyle="width: 100%"/>
</af:column>
<f:facet name="selection">
<af:tableSelectOne text="Select and">
<af:commandButton text="Submit"/>
</af:tableSelectOne>
</f:facet>
</af:table>
</af:showDetailHeader>
<af:showDetailHeader text="#{res['classification.repository.entryList.complementaryTitle.panelHeader.title']}">
<af:table value="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.collectionModel}"
var="row"
rows="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.rangeSize}"
first="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.rangeStart}"
emptyText="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.viewable ? 'No rows yet.' : 'Access Denied.'}"
selectionState="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.collectionModel.selectedRow}"
selectionListener="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.collectionModel.makeCurrent}"
width="100%">
<af:column sortProperty="content" sortable="true"
headerText="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.labels.content}"
width="20%">
<af:inputText value="#{row.content}" simple="true"
required="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.attrDefs.content.mandatory}"
columns="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.attrHints.content.displayWidth}"
inlineStyle="width: 100%"/>
</af:column>
<af:column sortProperty="language" sortable="true"
headerText="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.labels.language}">
<af:inputText value="#{row.language}" simple="true"
required="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.attrDefs.language.mandatory}"
columns="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.attrHints.language.displayWidth}"
inlineStyle="width: 100%"/>
</af:column>
<f:facet name="selection">
<af:tableSelectOne text="Select and">
<af:commandButton text="Submit"/>
</af:tableSelectOne>
</f:facet>
</af:table>
</af:showDetailHeader>
</af:panelHeader>
</af:panelGroup>
</af:panelBorder>

Similar Messages

  • Can't skin the width of an inputText in a column-filter-cell

    Hi all,
    I have problems skinning the width of an inputText in a column-filter-cell. I am using JDev 11.1.2.0
    My rule looks like following:
    af|column::column-filter-cell af|inputText::content {
      width: 100%;
      color: #DEADBE;
    However, the color gets applied, but not the width.
    Inspecting with IE Developer tools, the rule applied looks like this:
    .af_column_column-filter-cell .af_inputText_content {
    max-width:100%;
    margin-left:0px;
    margin-right:0px;
    color:#DEADBE;
    -ms-box-sizing:border-box;
    padding-left:0px;
    padding-right:0px;
    width:90%
    I added the color attribute only as a test. So my question is, why is the color applied, but not the width?

    Do you see this in other browsers too? or only in IE? Which IE or other browser are you using?
    Timo

  • Is it possible to adjust the size of the columnes when send alv by mail  ?

    is it possible to adjust the size of the columns when send alv by mail  ?
    i send alv ( list ) by mail  , work fine but all the columns are small and in the
    same size , can i adjust it in the mail   ?
    how to do it in regular alv i know it  .
    LS_FCAT-OUTPUTLEN = 29 .

    is it possible to adjust the size of the columns when send alv by mail  ?
    i send alv ( list ) by mail  , work fine but all the columns are small and in the
    same size , can i adjust it in the mail   ?
    how to do it in regular alv i know it  .
    LS_FCAT-OUTPUTLEN = 29 .

  • Is it possible to adjust the photo angle and size in Snapshots theme

    Hi
    I'm new to aperture and am having a few frustrated-hair-pulling issues with the Snapshots theme. I was using iPhoto to create a Photobook of my son's first year and found it to be too limited for what I want to create. I came across Aperture and was wow'ed by the description saying I could rotate and resize photos, add text boxes etc. This was just what I was after so I downloaded the free trial to test it. I like the snapshots theme the best for the idea of it looking more "homemade" but seem to be unable to adjust the photo angle and size from the given templates. Also I find that the border in adding new photos (which I can adjust the size and rotation of) is without the custom shadow effect that the template ones have. Duplicating the template photo only gives one with the shadow effect but also of the same size with the same rotation that I can't do anything with! Rrrrghhhh
    I thought this would be a great way to customize the album I'm making for my little boy, and that it wouldn't be too hard! My mac skills are considerable, but I'm by no means an expert! Is this program too much for a non-pro-creative-housewife with a wish that may be solveable in iPhoto afterall?
    Or am I just missing something? Is there a way to do this or shall I just give up and choose another theme?
    Any recommendations are welcome! Please!!! My scalp is now officially sore!

    Here's the solution I used to solve the same problem. If you're not comfortable editing the source files, this might be more than you want to take on--but I've done it to several files with no ill effects. You can follow the instructions on this page and the referenced original post from (he includes a link on the page). Good luck! He's got some great tips on some of his other pages.
    http://photo.rwboyer.com/2010/03/15/aperture-3-book-theme-trick/
    A warning about editing the Master pages--it only edits them in that book--it doesn't update the theme. So if you go to create another book with those same layouts, you'll have to duplicate the book and replace all the images. An alternative would be to create a "clean" book with no photos in it and then just use that as a starting point each time.

  • Why is the number "1" when setting up the dial fat thickness did not change the font? Is it possible to adjust the font in the thick klavioture typing?

    Why is the number "1" when setting up the dial fat thickness did not change the font? Is it possible to adjust the font in the thick klavioture typing?

    paulcb wrote:
    Using the Bold Text Accessibility option does make the keypad numbers a little bolder.
    Yep - I was only looking at Text Size.
    But still, not sure what the deal is. The "1" is just as readable as any other number on the keyboard regardless.

  • Can I adjust size of the photos on front page of the photo album template?

    When I am working on a Photo Album page, how can I make the "front page" photos larger? I am talking about the photos arranged in rows, not the photos that show in the slide show carousel. Is it a set size in the Photo Album template or is it a consequence of how large a photo I set into the page?
    Also, how is "large" defined? Is it about inches, or is it about resolution?
    — Lorna in Southern California

    I found the large too large and the small too large.
    How large do you want them Lorna?
    .......... Lorna says ................................................
    Michael, where did you go to check to see that the large was indeed too large and the small too large? What method of adjusting the size are you using?
    If you want them really large, why don't you just
    plonk the real photo on the page sized as large as
    you wish, and you can always link it to its own page
    with an even larger version!!
    .......... Lorna says ................................................
    Michael, actually I misstated in my first post. Actually I would not like the photos in the Photo page to be too large, because then no one will be motivated to click onto the See Slideshow button.
    My mind is getting so crammed with input and other people's websites that I now cannot even recall with certainty which pictures I wanted larger. 8-( Oh, this is giving me a cramped-in-the-chest feeling. I had best take a break now and finally eat a legitimate meal.
    — Lorna in Southern California

  • Adjust the screen display dynamically for a given screen size and resolutio

    Hi All,
    Is there a posibility to change the size of a table control dynamically to maximize the screen utilization keeping in mind , the different screen size and resolution. This is to increase the breadth of the table control that there is maximum utilization of screen and which would not produce any horizontal scroll bar in case of small size monitors.Kindly advice.
    Best Regards,
    Ashwini

    There is no such control that you can put into the programming logic to enhance the visual appearance of the table controls or screens. This is taken care of by SAP GUI, which will adjust the display size of the table control according to the screen resolution.

  • Adjusting the size of the "pop up" sub vi in the main vi

    I am trying to reduce the size of the "pop up" sub vi in the main vi. If I push everything upwards, the info downwards is lost. Similarly the side info is lost. How to adjust the size and yet keep all the info. I am using LV6.0. I have attached the file concerned.
    Attachments:
    RTF Test Setup.doc ‏84 KB

    There is obviously a misunderstanding here.
    You have full control over the front panel and you can make all the controls as small or large as you want. In addition, you can also place them wherever you want. It is up to you as the designer to place them how you want. If you want then all to be a few pixels by a few pixels, LabVIEW will allow that. Obviously, a string control that is 3 pixels wide and 2 high is unusable, but you can do it. In addition if you wanted all the controls to over lap that is fine, but again it will most likely be unusable for your user.
    If your question is the mechanics of moving and re-sizing controls, LabVIEW works the same as most products. You need the arrow tool, which you can get from the tools pallette (Windows>> Show Tools Pallette). With that tool you simply click on the control and move it where you want it. To resize it you hover over the borders of the control until you see the little resize squares and then re-size away. This is the same as how you would re-size an object in Word etc.
    If you are simply asking for some examples based on the front panel you attached, we on the forums can move them around and give you examples but we don't know what it is you as the designer or your "customers" want. Therefore anything we do is a shear guess and unlikely to be what you really want. By far the best option is for us to help answer for you the how so that you can create the front panel that you want.
    So can you re-phrase the question or help us understand what it is you want?

  • How is it possible to adjust the background images and the text in Mail?

    How is it possible to adjust the background images and the text in Mail?

    Here's the solution I used to solve the same problem. If you're not comfortable editing the source files, this might be more than you want to take on--but I've done it to several files with no ill effects. You can follow the instructions on this page and the referenced original post from (he includes a link on the page). Good luck! He's got some great tips on some of his other pages.
    http://photo.rwboyer.com/2010/03/15/aperture-3-book-theme-trick/
    A warning about editing the Master pages--it only edits them in that book--it doesn't update the theme. So if you go to create another book with those same layouts, you'll have to duplicate the book and replace all the images. An alternative would be to create a "clean" book with no photos in it and then just use that as a starting point each time.

  • In the metadata settings i can find the file size in pix. is it possible to see the size in inches?

    in the metadata settings i can find the file size in pix. is it possible to see the size in inches?

    Yes, that is one way to do it. But you can also do it by doing some simple math. For instance, let's say the you have an image that is 4000 x 6000 pixels. It doesn't matter whether resolution setting is in the file. The image is still 4000 x 6000 pixels. But you can decide what resolution you are going to export your copy. And you would do that for its intended purpose. If you are going for a high quality print then you would probably want 300 PPI in your export settings. With the example I've given the size print you can get had 300 PPI would be as follows:
    4000 (pixels) / 300 (PPI) = 13.333 Inches
    6000 (pixels) / 300 (PPI) = 20 inches
    So if you were really precise in needing a 300 PPI print you can get one that is 13 x 20".
    If you are preparing for display on the screen, the higher resolution isn't needed. Using the same math:
    4000 / 72 = 55.55 inches
    6000 /  72 = 83.33 inches
    By doing some simple math in your head you can determine the resolution that you need and the size that you need and set up your export accordingly.
    Technically speaking a digital image doesn't have a size other than pixel dimensions. Everything else has to be determined by the resolution that you need for the intended purpose of the final image.

  • How do I adjust the page orientation in Pages?  I want to keep the pages above the section break as portrait, and the ones below I want to change into landscape.  Is this possible?  I can only get it to be one or the other but not both.

    I want to keep the pages above the section break as portrait, and the ones below I want to change into landscape.  Is this possible?  I can only get it to be one or the other but not both.

    The work around is to do two documents, one in portrait format and one in landscape format. When finished export to Pdf. open in Preview by select both files and use Cmd + O or doubleclick. You can now in Previews thumbnail column the pages from one document into the other and then save.
    If you have created only one with i.e. all pages in portrait format but with the content for the landscape pages rotated on the pages, you can rotate the pages in Preview. Two ways to get the same result.

  • I am trying to get a photo printed in canvas, b0 size. The original photo is 5472 x 3648 px, 193x128 cm.  What happens is: if I adjust the photo in Photoshop it keeps the image size but if I import it into Lightroom to adjust it there, the photo is being

    I have checked all the settings when importing..the maximum size Lightroom will keep it is 30x 40cm... Lightroom is doing it to all the photos I import into the program.
    I need to be able to export my image from Lightroom in its original size and stop Lightroom of making it smaller.. Any clue on what should I try?
    Thanks!
    Carol

    Digital files don't have sizes in centimeters or inches, meters or yards. They have only pixels. If LR is not changing the number of pixels, it is not changing the digital image. When the image is printed, the number of pixels packed into every inch has a large effect on the quality of the print. This is the pixels per inch number, or "ppi". For a smooth print paper it is generally accepted that 300 ppi produces optimum quality, but for canvas a lower ppi, as low as 150 even, will do. Unfortunately, your camera puts a tag on the digital file which sets a default ppi of only 72. The reason is very anachronistic and silly and is a hangover from 30 years ago when Apple monitors had a resolution of 72 dpi, a measure long ago abandoned. That tag is misleading because it gives the impression that a very large print can be made from the pixels just as they come from the camera (the smaller the ppi, the larger the print) and some beginners think that is the only size print that can be made. But that not true. It is only a default tag, a suggestion, and it can be disregarded or changed (LR changes it to 240 ppi) and any sized print made. The real, operative, ppi will be the pixel dimensions divided by the print dimensions. Your image with all its pixels (uncropped other than to the 1:1.4 paper ratio) will have an operative 93 ppi on b0 paper which is a bit low. I would suggest using LR's resize function to double it to 7296 pixels on the short side.

  • How to adjust the layout column size in WPC?

    Hi All,
    I want increase/decrease the layout size in Web Page Composer?
    After I dragged and dropped the html file, how to reduce the column width or height?
    Thanks
    Sundar

    Hi
    You can create a new layout with width and height as per your requirements and use the layout in WPC.
    For creating new layouts, check the help link below
    http://help.sap.com/saphelp_nw70/helpdata/EN/45/d2970be57f4ebbe10000000a11466f/content.htm
    Regards,
    Yoga

  • How to adjust the size of image to suit the size of panel?

    i have got a panel which contains a image.but i don't want to use scroll panel if the image's size is bigger than the panel.
    what can i do to change the size of image to suit the size of the panel every time i want to display it?
    thanks

    Reply 3 of this thread should be able to help you:
    http://forum.java.sun.com/thread.jsp?forum=31&thread=286424

  • I need to change the size of the view for easier reading.  Is there a way to make the page view larger without affecting the form?

    Hi Guys, good product beginning however it's not as good as many of the other Adobe product's workspaces.  I cannot change the size of the view during form design work, so it's a visual strain to work in Forms Central.  Is there a way to modify the view (not affecting the width, size or font when presented on website or on paper)?

    In Photoshop CC 2014 (Windows only) it is possible to use a setting of 200% to scale the UI. On some monitors it improves readability and on others it cuts part of the application screen. To give it a try go to:
    Edit >> Preferences >> Experimental Features
    Put a check-mark in the box and click OK
    Then close PS and re-start for the change to take effect.

Maybe you are looking for

  • Running Win 7 on Macbook Pro via Bootcamp - Clock is inacurate

    The only option I can find for Windows 7 CDT Zone is UTC-6. I reset the clock and when I reboot I get incorrect time again. It isn't saving apparently. Right now it is 7:50pm CDT but the clock in the lower right hand says 12:50am next day. Help pleas

  • Cluster and Session EJB replication

              I have a dedicated Weblogic 5.1 box running with SP 6 serving up JSP and Servlets.           The Servlets do look ups for session EJBs, which are hosted on a separate box behind           a firewall. My question is:           If I implement

  • 3.X Data Source Creation in BI-7.0 environment

    Hello All. Kindly suggest how can we create 3.X version datasources in 7.0 environment. Thank You in Advance

  • Problem printing HP photosmart C4580

    Product:  HP Photosmart C4580 All in One Printer Operating System:  Windows 7 x64 The printer will print pages through the printer test options however it will not print anything queued through windows.  I have installed the windows 7 x64 driver set

  • Cannot export one room mailbox but others yes.

    Gonna try to be more specific here... I deleted a user (meetingroom) with an associated mailbox and then restored the user through ADRestore, reconnected the Mailbox but the calendar settings (among other settings) in ECM 2010 give me an error: "Mail