Please help about JSF selectOneRadio tag

if i want to place a selectOneRadio in a 2x5 table, but in different colums, how could i do? i have try follow:
<tr><td>
</f:verbatim>
<h:selectOneRadio value="#{LIC3320.currentSelect}" valueChangeListener="#{LIC3320.proListener}" immediate="true" onchange="submit()">
<f:selectItem itemValue="pro" itemLabel="process No" />
<!-- other code-->
<f:verbatim>
</td><td>
</f:verbatim>
     <h:inputText value="#{LIC3320.processNum}"/>
<f:verbatim>
</td></tr>
<tr><td>
</f:verbatim>
<f:selectItem itemValue="lic" itemLabel="license no"/>
</h:selectOneRadio>
<f:verbatim>
</td><td>
</f:verbatim>
<h:inputText value="#{LIC3320.licenseNum}"/>
<f:verbatim>
</td></tr>
but it doesn't work.
could anyone help
thanks
emmy

thanks, but would anyone provide some example
and one things, which tag library i should include
Message was edited by:
emmy.ma

Similar Messages

  • Please help about the limit request

    how to connect the internet for the mobile set 3110 classic
    because iam tried bye the contact provide service vodafone
    also contained the internet service provided with it service
    but massage comminig me tell me not contact or connection with internet
    please help me

    note:
    i am reading the note book about set and working it but wihtout ability
    what i do to connection with internet service

  • Please help about Report Printer and PS tables-objects . ..

    Hi everybody
    I'm in trouble. I have a requirement in PS módule related with reports created by the Report Printer tool. I don't have any idea about these topics.
    My requirement is to create a report (not with Report Printer) with the structure for projects, with all the structure Project-WBS-Network-Activity and with some values like Budget, Commit, Actual,  Paid, etc.
    The functional consultant only tells me about some reports created with Report Printer wich have the columns required, some report has the Budget, other one has the Commit, etc. For example, one report is the tcode S_ALR_87013532; i don't know if this transaction exists in all the SAP implementations or if it was created only for my company.
    These reports only show two levels (Project-Network) so i i have to investigate:
    1. How to get all the structure levels (project-WBS-network-activity)
    2. How to 'translate' in code some value showed in a report created with Report Printer, i guess these values are created with formules and objects.
    3. How to get the same values showed in these reports, but for the Networks and Activities.
    I do not know anything about PS module and Report Printer and i really don't have any idea about how to make my development.
    4. I think the functional consultant could be able to create the report himself with the Report Printer, but he tells me he does not manage this tool so good and he wants to send SAP mails with the reports, and he say the reports created with Report Printer can not send mails. Is this true ?  and then, would be easier for me to learn Report Printer and create the report myself instead to develop it ?
    Does somebody can help me ?     Any idea ?
    Please help !!     I don't know even how to start with this.
    Thanks in advance ..
    Frank

    Hi Frank,
    here're some links:
    -http://help.sap.com/saphelp_47x200/helpdata/en/ca/01993862b47c67e10000009b38f8cf/frameset.htm
    -http://www.sapgenie.com/abap/tables_ps.htm
    -Re: Project System Costs: budget/actual/commt/rem.plan/assd
    Andreas

  • Someone please help about my bubble pointer

    so when im randomly searching through text online(mostly using firefox), fast or slow, the pointer goes from looking normal, to zooming into a big ugly bold/bubbly fat looking pointer. its bizarre cause at first i really didnt noticed, but as i used mozilla more often, the problem occurred more frequently. honestly, its getting distracting to the point that i've stopped using firefox, and am using safari, which isnt bad, except for im used to firefox, and i like it.
    I've come to another similar discussion posted her on apple discussions, and no helpful solutions, just alot of complaints. PLEASE HELP!!! does anyone evem know what im talking about?

    What do i check? I downloaded Firefox, everything went fine and the settings are normal.

  • Please help about encode password idm !!!!

    Hello All,
    I'm a newbie in IDM and in my work I have to encode password with CBC Algorithm before insert password in database (SQL server 2005).
    So I have already coding CBC Algorithm but I don't know where I put my CBC encoding Algorithm for when users change password on IDM.
    Please help me.
    Thank you for advance.
    waltt

    I'm assuming you're not talking about storing the password that way in the IDM repository but rather a separate database resource.
    I had a similar requirement with a different encryption algorithm and an Oracle database. I made my life a lot easier by having the database resource do the encryption. IDM will insert the password into the resource as plain text and, in my case, a trigger will catch it, call a stored procedure to change it from plain text to encrypted and then insert it. Since IDM never reads passwords from resources anyway the password was fully encrypted as stored in the resource and IDM never knows any better.
    Technically speaking you could have created a rule or custom form to do the password encryption before IDM sends it over the wire but if you've got an encrypted channel to the database then you might take my approach and skip having IDM do it altogether.

  • Please help about HttpConnection

    Hi all,
    I am facing a typical problem about HttpConnection() for BlackBerry.But it is working fine in all other devices except BlackBerry.Bellow is the code:
    public synchronized String getResponse(String sRequest)
    String sReturn = null;
    HttpConnection c = null;
    java.io.InputStream is = null;
    StringBuffer sb = new StringBuffer();
    int ch;
    int rc;
    try {
    sRequest=sRequest.trim();
    c = (HttpConnection) Connector.open(sRequest);
    c.setRequestProperty("User-Agent", System.getProperty("microedition.profiles"));
    c.setRequestProperty("Content-Type", "application/octet-stream");
    rc = c.getResponseCode();
    if (rc != HttpConnection.HTTP_OK) {
    return null;
    is = c.openInputStream();
    while ((ch = is.read()) != -1) {
    sb.append((char)ch);
    is.close();
    c.close();
    sReturn = sb.toString();
    } catch(Exception e) {
    System.out.println("URLCatch : "+sRequest);
    sReturn = null;
    return sReturn ;
    }*"sRequest" is a simple URL String without any WAPGatewayIP & WAPGatewayAPN.*
    Please tell me what is the wrong inside this connection method? Why this is not establishing the connection in BlackBerry? Should i have to change anything in this method for BlackBerry?I tried a lot but colud not solve.
    Please help.
    Thanks in advance

    Hello Susanta_Mandal,
    How you resolve the HttpConnection issue in balckberry handdheld ? i am facing the same probelm.
    I am developing a mobile phone application(J2ME) for a BlackBerry handheld.In this application i use servlets for fetching Data,but when calling the URL it doesn’t work and shows the IOException : Timed Out Error. I am using Vodafone sim card (Mumbai India) and it's GPRS is enabled. and I also crosscheck our application with other handsets like Nokia,Samsung etc. using same simcard and it's working fine.
    I try to connect the URL in two ways.
    1) Connector.open("http://161.117.177.166:8080/temp/chart;deviceside=true”);
    BlackBerry APN setting for Vodafone
    Select Option -- > Advanced Options -> TCP/IP
    APN Setting Enabled Checked
    APN :portalnmms
    Username for APN :Left Blank
    Password for APN :Left Blank
    Result Is :- IOException : Timed Out.
    2) Send APN Parameter along with URL
    Connector.open("http://161.117.177.166:8080/temp/chart;ConnectionTimeout=120000;deviceside=true;WapGatewayIP=010.010.001.100;WapGatewayPort=9401;WapGatewayAPN=portalnmms",Connector.READ_WRITE,true);
    Result Is :- net.rim.device.cldc.io.waphttp.WAPIOException
    Regard's
    Prasanna K

  • Jsp newbie, please help about @include

    I am new to JSP.
    I have two jsp files, say , jsp1 and jsp2.
    JSP2 is perfectly working. I want to display the result of jsp2 with the result of jsp1.
    But I additionally want to supply a value from jsp1 to a variable in jsp2 before calling jsp2.
    The result of jsp2 depends on the value supplied.
    I couldn't figure out how to do this. A simple @include directive like
    <%@ include file="jsp2.jsp" %> doesn't seem to be suitable here.
    What options are available here? Please help.
    Thank you.

    Thank you friends for the suggestion. I have yet to try your suggestions.
    Before that I came across another problem. Would someone help please?
    Why the jsp fails when I include the same JSP page twice in another jsp page?
    Of the following two jsp files, the upper one is OK, but the lower one complains that it cannot compile (org.apache.jasper.JasperException).
    test1.jsp:
    <html><head><title></title></head>
    <body>
    <table>
    <tr><td><%@ include file="single.jsp" %></td></tr>
    </table>
    </body>
    </html>
    test2.jsp:
    <html><head><title></title></head>
    <body>
    <table>
    <tr>
    <td><%@ include file="single.jsp" %></td>
    <td><%@ include file="single.jsp" %></td>
    </tr>
    </table>
    </body>
    </html>
    I want to populate the cells of an HTML table with the results from the same jsp file, by supplying different values to a variable in the jsp file so that its results will be different for each cell. Am I being to foolish here?
    Thanks.

  • Please help about Custom View fo EditorKit

    Thank You for reply
    TextArea in Visual Studio .NET is somehow displayed like that.
    - public class Test{
    |
    | + public Test(){
    | | ....
    | _ }
    |
    | + public int load(){
    | | ......
    | _ }
    |
    and if u press + symbol, method code is displayed.
    thats why i want to customized EditorKit's Views
    Please Help Me....
    Thanks..

    Thank You for reply
    TextArea in Visual Studio .NET is somehow displayed like that.
    - public class Test{
    |
    | + public Test(){
    | | ....
    | _ }
    |
    | + public int load(){
    | | ......
    | _ }
    |
    and if u press + symbol, method code is displayed.
    thats why i want to customized EditorKit's Views
    Please Help Me....
    Thanks..

  • Could anyone please help about print check??

    Dear expert,
    We are testing the print process in  OEM sample company but it did not print out and show that "The print document could not be started?" I have no clue how to solve this problem. The printer can print anything except this check, we are new to SAP and will go live very soon. Please help if you could. Thanks a lot.

    Mickey usually the standard for processing a check in not to use the check for payment area, thats more for manual checks or viewing a check already posted.
    My suggestion is to go to the outgoing payments area and select what you are going to pay using this area, post this..
    then go to the document printing under Banking, change the document type to checks for payment
    select the checks you want to print and enter your starting ck number...
    send this to the printer of choice, wait until all checks print and then confirm
    Hope this helps
    ps also make sure you have the default layout for the check listed in Admin, set up, banks, house banks...scroll to the right and see the defaults to set up.
    Edited by: Joanne Pencola on Sep 28, 2011 1:53 PM

  • Please help about firewire card

    hi i have to buy one audiocard firewire for my PowerBook
    I need to buy it soon before i go in holidays !
    please council to me :
    is better the Presonus Firebox , or the Focusrite Saffire ??
    I use logic pro 7.1
    is much apreciate help !!
    grazie !!!

    This is a uk leading magazine editor reply to me,
    Hi Ken,
    I just reviewed the Saffire unit and it seems very good for the price, particularly the mic preamps, which are based on the Focusrite Green series. If you can't afford RME or one of the other big interfaces, then Saffire seems like a good choice and the included plug-ins are pretty good too other than the guitar amp simulator, which is somewhat rudimentary.
    And i've just place my order after reading all this review...
    Saffire Reviews
    Play - UK Magazine - July 2005
    "Combining the I/O control in SaffireControl with the kind of pre-amp quality you'd expect from Focusrite, and the awesome tracking and monitoring plugs that require zero CPU from your computer, means it's true - you really can simulate a professional recording session in the comforts of your own bedroom, and all for under £350. For me, that's not just a giant step, that's the moon and back!"
    Read the full review
    "The package also offers a flexible software application called 'SaffireControl', which enables you to perform a number of nifty functions."
    "One thing I liked a lot was Focusrite's obvious desire to make Saffire appeal both to seasoned pros and newbies alike. When using these plug-ins, you can toggle between user-friendly templates for vocals, guitars, pianos and other instruments, or open up the plug-in and get into more specific tweaks with conventional controls."
    "Focusrite have even made this simple with a 'float' button that keeps the control surface open at all times."
    "It gets better, as monitor reverb can also be set up to aidthe recording process. Again, this is an adjustable control that allows you to set an amount (dry/wet mix), a room size, the diffusion level and a clever tone control, which filters various. The single dial is capable of producing low-pass, hi-pass and band-pass tone, so finding a useful setting shouldn't be a problem."
    "Using this system, and the handy labels on the outputs themselves, Saffire is capable of producing surround mixes in both 5.1 and 7.1. In fact, you could make almost any system you wanted, including direct feeds for stereo monitors and a sub bass unit for example."
    "There's a lot to like about this box. It sounds great, does what it's supposed to and yet has plenty of tricks up its sleeve. SaffireControl is focusrite's ace in the pack here, and is designed to appeal to both the novice and the experiences user."
    "I suspect Saffire will do very well. Despite looking like a departure from their existing range, Focusrite have actually drawn from their strengths here by combining their M-Box experience with years of proud dynamics processing history, and it's a winning combination."
    Build - 8/10
    Value for Money - 9/10
    Ease of Use - 8/10
    Versatility - 9/10
    Quality of results - 9/10
    "Sounds great and will appeal to complete novices and cynical pros alike."
    Jono Buchanan, Future Music, September 2005
    “Saffire redefines the use of FireWire interfacing, providing a unique DSP input processing system, software mixing and integral VST/Audio Unit effects. Most importantly, however, despite adding considerably more functionality than the Mbox, the Saffire’s retail price still falls under the £350 mark … it’s a lot of interface for a relatively small outlay.”
    “Pleasingly, the unit seems to have been put together with an informed understanding of the demands placed on an audio interface during recording:”
    “By having eight outputs, the Saffire is clearly equipped for surround applications; however, by having four separate stereo outs, Saffire also enables you to configure separate headphone and monitor mixes (something impossible to achieve with basic, two-output audio interfaces).”
    “SaffireControl, however, takes this idea one stage further by using the software to access Saffire’s DSP chip – thereby opening up the potential of processing a signal as it ‘goes to tape’.”
    “The plug-ins themselves soun

  • Please Help with multiple video tag editing

    I have about 650 music videos that I would like to have show up under the music video tab in my ipod and would like to know if there are any apps out there thay will allow me to change all the videos to Music Videos so they all dont show as Movies under iTunes and my iPod without having to right click and get info than change to music video - I think this option not already being included in Itunes for iPod videos is extremely stupid - anyone who can help me out and shed some light on a faster way please feel free to tell me and If there is a way in itunes to do this please let me know as I cant seem to find one
    And all Apple care says is maybe in the future we will look into to implementing this feature or something like it if we see fit and makes sense as we like to make our software as user friendly as possible
    Thanx
    Black Ipod Video 60gb
      Windows XP Pro  

    bump this up
    As I think this is a very good question and it should deff be looked into I mean cmon this is crazy there is no good reason that you should have to edit them 1 by 1
    Black 80gb Gen 5.5 Video as of Today

  • PLease Help- About the Apps

    (I pod touch owner)
    I want to downlowed a app on my i-touch
    but i am always seing apps for iphones, where do you fined apps for the thouch
    I want the free apps (for now)
    I am still a new member of apple nation, I dont really know my way through all this, I have been new for about 4 weks now
    so please explain and help'
    please, I need someone with experince and they know what they are talking about
    please and ty
    reply back

    Most of the applications work on your iTouch. Most applications will list which device they work on under the description. You won't be able to use applications that use the iPhones camera.

  • Please help about my Dev AlphaB

    Hi 
    My DevAlphaB is dead, not response can't start after it shutdoen itself. No led, no logo no response.
    How shold I do, can send to Blackberry to check?
    In Thailand no have Blackberry services center.
    Thank you

    You can try connecting through a different USB port, or a different PC.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Please help about JTable...thanks

    HI everyone!
    Please tell me how to write a ACTIONLISTENER for a JTABLE?
    JTABLE table;
    Object[][] myArray = {  {"Mary", new Integer(5)},
    {"Alison", new Integer(3)},
    {"Angela", new Integer(1)}
    String[] columnNames = {"First Name", "Scores"};
    table = new JTable(myArray, columnNames);
    how do you write a actionlistener for a JTable?
    thanks

    One of the things I'd recommend is reading the tutorial on "How to use Tables" at the Sun website. Unless you have a button or something like that on the container the JTable is in, I don't think you want an ActionListener. One of the things you can do is set up a ListSelectionListener. It allows you to do something when a value changes in the ListSelectionModel. When you select rows in a JTable, a ListSelectionModel is created. Retrieve the ListSelectionModel from your JTable, and add a listener to it, something like:
    JTable runTable = new JTable(yourTableModel);
    runTable.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION); // set mode
    //or use default
    ListSelectionModel rowSM = runTable.getSelectionModel();
    rowSM.addListSelectionListener(new TimeSelectionListener());
    class TimeSelectionListener implements ListSelectionListener {
    public void valueChanged(ListSelectionEvent e) {
    //Ignore extra messages.
    if (e.getValueIsAdjusting()) return;
    ListSelectionModel lsm = (ListSelectionModel)e.getSource();
    if (lsm.isSelectionEmpty()) {
    // ...//no rows are selected
    } else {
    ... // If some rows are selected, do something here!!!
    I hope this helps.

  • Please help  about HSinglelineEntry

    hi all
    I am trying to use org.havi.ui.HSinglelineEntry to implement username and password entry but it does not work. I am using Xletview 0.3.6. any help will be appriciated. please give me snippet of code or any reference.
    Thanks
    Cody

    Hi,
    It seems that the HSinglelineEntry class has a empty implementation. You just can compile your code.
    Arno

Maybe you are looking for

  • Send pages document as pdf attachment without including the whole document in the message

    What I am trying to do is to write a document in pages then send it as a pdf attachment which shows as a mail icon in the mail message.  One then clicks on the icon and the attached file opens.  Seems I can do it if I send it as a word doc but every

  • I didn't receive the e-mail authentication message

    it tells me that the e-mail is sent but on the other hand i don't receive it ~_~

  • Second request for help

    Since I loaded v 5: 1) The system hangs if I open multiple internet tabs. 2) The system intermittently hangs when I try to write a message. 3) It takes forever to close when it hangs - sometimes requiring a hard shut down. 4) Often, when I close Mozi

  • ISE WLC DACL Flex

    ISE 1.2 Patch 2 VWLC 7.4.100.0 Specifically flex connect APs We have successfully built the first self registration MAB'ed Z policy which authorizes all MACs to hit the CWA and a redirect. WIth Flex you must have an IPV4 and a Flex ACL on the control

  • Conversion from sql date

    hi Am not getting the date in the correct format . Even though teh DB returns me 24-Nov-2008 in java am able to getonly as 0008-11-24 cstmt = this.getConnection().prepareCall("{call scheme_header.p_scheme_dates(?)}");                     cstmt.regist