List that is dependent on a checkbox to be put in a row

Is there a way to make a list that is dependent on a checkbox to be put in a row?
For example:
apples
oranges
peaches
If each of these had a checkbox after them what I want to happen is if I click peaches I get in a separate row just the word peaches.
If I click apples and peaches I get:
Apples
Peaches
and on and on.
What I want to happen is when an item is selected a separate list is made with information about the item like a price or a quantity.
Thanks in advance

You may search for the keyword "VLOOKUP" in existing threads.
This function was used in numerous examples doing what you ask for.
Yvan KOENIG (VALLAURIS, France) vendredi 13 novembre 2009 08:35:49

Similar Messages

  • Select list that is dependent on another select list with ajax

    I have a select list that contains it (ajax)
    onchange = "get_select_list_ajax (this, 'P2012_REQUERENTE', 'COMBO_REQUERENTE_ITEM', 'COMBO_REQUERENTE_AJAX');" class = "largura200"
    So I have a select list below, which is conditional, according to the value returned from the select list P2012_Cliente.
    DECLARE
    v_tipo VARCHAR2 (50);
    BEGIN
    SELECT DISTINCT (id_cliente_tipo) INTO v_tipo FROM vw_cliente
    WHERE customer_id =: P2012_CLIENTE;
    IF (v_tipo = pkg_cfg.c_tp_cliente_interno) THEN
    RETURN true;
    ELSE
    RETURN false;
    END IF;
    EXCEPTION WHEN OTHERS THEN
    NULL;
    END;
    But is not working .. Why? He is not detecting the return of the select list that is Ajax?

    How can I send the return of a select list (ajax) on a text item?
    html_form_attributes of sel. list -> onchange = "get_select_list_ajax (this, 'P2012_REQUERENTE', 'COMBO_REQUERENTE_ITEM', 'COMBO_REQUERENTE_AJAX');" class = "largura200"

  • Help with formula that is dependent on checkboxes

    Hello -
    I can't figure out this one for the life of me... In column A there is a list of tasks, column B has check boxes for each task. Column C has the starting day number of each activity, and column D has the duration of each activity.
    I'd like to check each box for the activities that I'd like to do, enter the duration of the checked tasks, and have the table figure which task starts on which day. ie: - if tasks A, D, & E are checked, then it shows that task A starts on day 1, runs for 2 days, task D starts on day 3 & lasts for 5 days, & task E starts on day 8, and lasts for 4 days.
    Should this be an IF formula? I'm not sure how to make everything dependent of the check box status. Here's a link to the table, if that helps
    http://www.sendspace.com/file/rckrn2
    Thanks
    Jeremy

    Hi Jeremy.
    For starters, I'm less than favourably impressed with your choice to place the file on a site whose first choice, when clicked starts to download a Windows executable file.
    A better choice, and a more 'standard' one here would be to place a screen shot of the result you hope to achieve in your post.
    I've done a little reorganization of your table, adding one column to those described above to avoid having a calculated column between two entry columns.
    Tasks are listed in column A, checkboxes in column B. The estimated duration of each task is listed in column C.
    Columns D and E are calculation columns.
    The value from C is transferred to E if the checkbox is checked in that row.
    Column D determines the starting day  for each checked task, with the assumptions that the tasks will be done in the order they are listed, that each must be finished before starting the next, and that the new task starts on the day the previous one is finished.
    Formulas:
    D2 and filled down to D10: =IF(B,1+SUM($E$1:E1),"")
    E2 and filled down to E10: =IF(B,C,"")
    Row 11 is a Footer row. The formula in E11 is =SUM(E)
    You might find the arrangement below a more logical order for the columns. Note that a different selection of tasks has been made, and the calculations automatically adjusted:
    Revised formulas for this order:
    D2: =IF(C,1+SUM($E$1:E1),"")
    E2: =IF(C,B,"")
    Regards,
    Barry
    PS: Details, and further examples, for each of the functions used are available in the iWork Formulas and Functions User Guide. The guid may be downloaded via the help menu in numbers.
    B

  • How can I have multiple-selection list box "select at least one checkbox" option active only when the section it's in is visible?

    Hi, I'm using SP13 and InfoPath2013.
    I created a custom form and published it to SP13 document library.  This form has many MSLB.  Depending on the checkboxes selected in the 1st MSLB, the other MSLB will either hide or show.  Each MSLB is in its own section.  The requirement
    is to have each MSLB to have at least one checkbox selected.  Well, the problem is that when that MSLB isnot checked in the 1st MSLB it is not visible and shouldn't require any checkbox to be selected.  However, the form can't get submitted instead
    an error dialog would pop up and ask user to make a selection for MSLB that is not even displayed.  Is there any way to fix this besides unchecking all MSLB to be not required at least one selection?  Thank you.

    Eric, 
    I follow your reply post here and still doesn't work.  I also noticed your screen shot of selecting a field is not the same as what I see in InfoPath 2013.  
    Here is what I did, 
    1.Check At least one selection required for
    these Multiple-selection List Boxes
    as you want .
    2.Create a Formatting  rule for the 2nd
    Multiple-selection List Box.
    3.Add a  Condition as below:
    4.  I get a validation error if I don't
    select at least one checkbox in the hidden MSLB control when submitting.
    I think I'm following all the steps correctly
    but please let me know if I'm not.

  • How can I get the checked item from a list that is generated automatically?

    I am still pretty new a CF and could really use some help. I am trying to get each item that is checked from a page that generates the list automatically from a query and get the associated textbox text with it. For example:
                        <!--- Start Get Data Hierarchy List--->
                                  <cfquery datasource="MyDatasource" name="qry_GetData">
                                            SELECT C.taxonomy_id, C.lvl, C.taxonomy_name, C.taxonomy_tree, C.taxonomy_guid, C.taxonomy_standard_name
                                            FROM dbo.taxonomy AS P
                                            JOIN dbo.taxonomy AS C
                                                      ON P.taxonomy_id = 21
                                                      AND C.hid.IsDescendantOf(P.hid) = 1
                                                      AND C.lvl = 3
                                  </cfquery>
                        <!--- Start Get Data Hierarchy List--->
    <cfloop query="qry_GetData">
    <input type="checkbox" name="cbox_PE_SelTax#taxonomy_id#" value="#taxonomy_name#"><font size="4" color="3399FF"> #taxonomy_name#</font>
    <br />
         - Details of experience with #taxonomy_name#:<input name="tbox_PE_SelTax#taxonomy_id#" id="tbox_PE_SelTax#taxonomy_id#" size="50%">
    <br />
    <br />
    </cfloop>

    Dave,
    Thank you for your help so far. I must not be asking the right question. Here is the whole breakdown. I am writing this page to collect the users information, Name, Title, Company, and technologies they are familiar with. I then want that information emailed to me upon submission. The point I am running into a problem (even with your last post) is how to write the action part of it that will email the checked items to me. I cannot figure out if I need to use CFLOOP (if so, how) or what the best method is. I am a very visual lerner and can understand how code works easily, but I have not found any examples for my situation. Again, I really appriciate all of your help thus far.
    Thank you!

  • Create a drop down list that populates based on the selection form another drop down list.

    I need to set up a drop down list that is popualated (i.e. displays a certain list of selctions in the drop down list) based on the choise the form user selects in an adjacent List
    For example
    There are two drop down list field sitting side by side in the form
    1. Select State          2. Select Course
    What I want to do is have a list of states in the first drop down list (1.Select State) and depending on which state the form user selects , the second drop down list (2.Select Course) will populate with a selction of courses available in that selected state only (i.e. it will on;y show course available in QLD if QLD is selcted).
    Is this hard to do?

    Hi,
    I would recommend some posts from Stefan Cameron's blog:
    http://forms.stefcameron.com/2006/09/18/connecting-a-form-to-a-database/
    http://forms.stefcameron.com/2006/09/29/selecting-specific-database-records/
    http://forms.stefcameron.com/2006/12/18/databases-inserting-updating-and-deleting-records/
    http://forms.stefcameron.com/2006/12/07/better-form-design-with-xfa-25/
    Hope that helps,
    Niall

  • Static list from table depending on user type

    All i have a table where i define users and their roles, and i want to setup a static list that would display something like the following, but i want to filter depending on the users role
    so if the user is lets say part of dev then i want them to see
    So my table contains
    pending,completed,work, accepeted, approved
    pending,completed,work
    And if they are part of business then to see
    accepeted, approved, pending.
    And in my select list i am doing the following select * from mytable.

    Hi Ben,
    to my knowledge it's not possible to change or restrict a static list on the fly.
    Why don't you create a table for your static values? Than you are able to restrict the select list. And you even get a useful description when you use your table somewhere else and want to know in which status it is.
    Patrick
    Check out my APEX-blog: http://inside-apex.blogspot.com

  • Dropdown list that changes an image object

    I am hoping someone is willing to assist me by means of providing an example of how to create a drop down list that will change an image object.  For example:  if the drop down list contains the values apple, bannana, grapes.   When apple is selected I'd like an image near the dropdown to change to one of an apple.  When grapes is selected, grapes image is shown instead of apple image.  I can do this on a web page, or in an asp form, with c++ or even with vbscript or just vb, but I have never done it in LiveCycle.  Please help.
    Thank you in advance!

    Hi,
    The rawValue of an Image object is a base64 encoded string, so if encode your image using something like http://www.motobit.com/util/base64-decoder-encoder.asp then you can just set the rawValue depending on the selection made, something like this in the change event of the drop down list;
    switch (xfa.event.newText)
    case "Apple":
      Image1.rawValue = "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 V/L3DpdBmWj1bj5NuzZHmZD7***6p08XR69cbZ7RsGS7az97Bhbj4nZGM6hSHLLdumRSuN0rONemYKYkiMx1OIGmLG 9nhKqBLTbc90O7B5rpHJhkwI9vGso79qu/KYysPjUrhTqnDr3rSVyfBKkXgeyj8vABufrkSZrls+VG1pVR/XSCp6eb LWpGakti6edtdvnLm4VPRNpzeP6s136A9yEpG8k0NKaK3RKtDULc4nVLS005r1iyOmmwE/0dHVTDTmrC308azLMZWn J8nCU6oM51THb0rZ1rogaPP8lYcX8MHE0ptLtWdvnee6N0/I9plY3CpB3x4bdVM7TfvaSdwV2zRApKu05DbTxlitst xgTK6MMjRVK64JuDal0IpPQRqtzI7O9YW80KsmV2eVlZNk4WmVxTMU/iJFGKW8bkxBMBny6AdJ3/xpvwUAAPa8tqeW b6ityYsuId+lozmgYnYjwdyQPAdCK0uhlUF00gtOiuQlSxErSQCVSASllddGTbTWU5OpbW3ZUEYuKiPnxcRzYvyqym Q92WYnZW1lCrzOSMaQrsXZfUsAfF0O/WBmhgOfoYueCnbBpGK3TnaPJLVC0EsSGaaoeiRyidgkkmaxNA4lFUKFkm3R so1OW+i4hU47KpOR6DBVmVReV622RG1mqclHnqfJ/215Ub8Zuu4HctNbdFlpyoKgS4LtpShdI3aQhEIlXSBYBJJIVE pFITkhNUrRiEoVWlp0akTH1kvjtcUrTVQaEZCrCW+vRb4lX4/veV1fd1ecLha81lp0TjdLkkxKYrRkfxN7xOCTUojS Kiqlo5MqMvPoUenL7UFqtnK+2Ip/Xf4fbaUnkBRFdMsAAAAASUVORK5CYII=";
      break;
    case "Grapes":
      Image1.rawValue = "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"
      break; 
    Regards
    Bruce

  • Get the values of the list that exist in bean

    Hello to all the programmers ,
    I have a list that i initialize in the action (it's can be also servlet in pure j2ee) , the list is exist in the bean and then i used that list in the jsp page getting it from the bean.
    I pass over the list by logic iterate and show each object of the list , till this point it's work fine.
    Each of the object in the list has an attribute that used for the radio for selection , the problem is how do i get the selection of the user from the jsp.
    My code is here :
    The action from (Bean) :
    public class userBean extends ActionForm {
         private String firstName = null;
         private String lastName = null;
         private List theList = null;
         public String getFirstName() {
              return firstName;
         public void setFirstName(String firstName) {
              this.firstName = firstName;
         public String getLastName() {
              return lastName;
         public void setLastName(String lastName) {
              this.lastName = lastName;
         public List getTheList() {
              return theList;
         public void setTheList(List theList) {
              this.theList = theList;
    }The Object that the list contain :
    public class userDetails {
        private String firstName = null;
         private String lastName = null;
         private int selection = 0;
         public userDetails(String firstName, String lastName, int selection) {
              super();
              this.firstName = firstName;
              this.lastName = lastName;
              this.selection = selection;
         public String getFirstName() {
              return firstName;
         public void setFirstName(String firstName) {
              this.firstName = firstName;
         public String getLastName() {
              return lastName;
         public void setLastName(String lastName) {
              this.lastName = lastName;
         public int getSelection() {
              return selection;
         public void setSelection(int selection) {
              this.selection = selection;
    }The action that contain the list for the jsp :
    public class userAction extends Action{
         @Override
         public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws Exception {
              ArrayList listNames = new ArrayList ();
              listNames.add(new userDetails("Joe","Pashi",0));
              listNames.add(new userDetails("Moshe","Yaniv",0));
              listNames.add(new userDetails("Bill","Clinton",0));
              listNames.add(new userDetails("Bill","Gatez",0));
              listNames.add(new userDetails("John","Kendi",0));
              ((userBean)form).setTheList(listNames);
              ActionForward forward = mapping.findForward("userDetails");
              return forward;
    }The jsp page the present the list of the objects :
    <%@ taglib uri="/WEB-INF/struts-bean" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-logic" prefix="logic" %>
    <%@ taglib uri="/WEB-INF/struts-nested" prefix="nested" %>
    <%@ taglib uri="/WEB-INF/struts-tiles" prefix="tiles" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
    <html:html>
    <html:base/>
    <body>
       <html:form action="/userAction.do">
                 <html:text property="firstName"></html:text>
                 <html:text property="lastName"></html:text><br/>
                 <html:submit value="Click Here"></html:submit>
                 <br/>
                 <logic:iterate id="userDetails" name="userBean" property="theList" >
                    <html:radio name="userDetails" property="selection" value="1"></html:radio>
                    <bean:write name="userDetails" property="firstName" />
                    <html:hidden property="firstName" value="${userDetails.firstName}"/>
                    <bean:write name="userDetails" property="lastName"/>
                    <br/>
                 </logic:iterate>
       </html:form>
    </body>
    </html:html>so the big question is how do i get the selection of the user from the bean.
    Thanks in advance

    Hi ,
    thanks for asking me.
    I will explain that again i have a list of names that i set by the action and then pass it to the jsp.
    In the jsp page i show the list of the names and near each name there is a radio button , i want the user select any name from the list to get it from the bean , How do i do that ?
    thanks

  • How do I remove an app from the update list that is under someone else's apple id?

    How do I remove an app from the update list that is under someone else's apple id? So this way the update always fails because it asks for someone else's password. I don't have the app on my mac, it only appears in the update list. It's just annoying, because the update keeps appearing, and the reminder keeps reminding me that I should install a new update.

    You installed a hacked app, originally from the Mac App Store. It contains the receipt for a different app, downloaded using an account that you don't control. You need to identify and remove the hacked app.
    Important: The app you need to remove is not necessarily the one named in the App Store alert. For example, the App Store may prompt you to update "Angry Birds" or "Twitter," but the hacked app may be something else entirely. Don't make any assumptions about which app you're looking for. To find it, you must carry out a systematic search with Spotlight.
    1. Triple-click anywhere in the line of text below on this page to select it:
    kMDItemAppStoreHasReceipt=1
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    2. In the Finder, press command-F to open a search window, or select
    File ▹ Find
    from the menu bar. In the search window, select
    Search: This Mac
    from the row of tokens below the toolbar. Below that is a popup menu of search criteria, initially showing Kind. From that menu, select
    Other...
    A sheet will drop down. In that sheet, select
    Raw Query
    as the criterion, then click OK or press return.
    Now there will be a text box to the right of the menu of search criteria. That's where you enter the raw search query. Click in that box and paste the text you copied earlier by pressing command-V.
    4. The search window will now show all the App Store products that are installed. Compare those search results with the list of your purchases from the App Store. To see the complete list, you may need to unhide hidden purchases. If any apps were download from the App Store using other Apple ID accounts that you control, sign in to the store under each of those ID's and check the purchases.
    At least one of the apps in the Spotlight search results is not among your purchases in the App Store. Move each such item to the Trash, after quitting it if it's running. You may be prompted for your administrator password. Empty the Trash.
    Quit and relaunch the App Store. Test.
    If you find these instructions confusing, ask for an alternative method.

  • How to delete the list that comes up in Open Recent

    I apologize because I know this has been answered before, but I cannot find the answer after quite a bit of searching in the forum. I'd like to delete the list that comes up when I choose File/Open Recent and I can't remember how to do that. Could someone please tell me? Thanks.

    *Click the (empty) input field on the web page to open the drop down list
    *Highlight an entry in the drop down list
    *Press the Delete key (on Mac: Shift+Delete) to remove it.
    *http://kb.mozillazine.org/Deleting_autocomplete_entries
    *http://kb.mozillazine.org/Password_Manager

  • How can i remove items from list that have been deleted when i click on them it keeps showing empty

    how can i remove items from the list that have been deleted when i click on them it keeps showing folder empty

    Actually, Reader SHOULD keep showing documents that no longer exist, I disagree. It's no big deal, and people will quickly realise why they can't open the file. They open more files, the old ones move off.
    The REASON why it should not check is that checking whether a file exists can take a long time when things aren't good. For instance if a file server goes down, or a memory card is unplugged. That in turn would mean delays opening the File menu, and I've seen some software that can sit there for several minutes. That would really give people something of which to complain...

  • How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?

    How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?
    I currently run OS X 10.10.1
    Now i have been trying to work on this for a while now and what i want to do should be simple but its apparently not.
    Here is an example of what i want to happen.
    I will have 2 tabs: Contact | Sales
    Now Contacts will have the list of names and various information about a customer, While Sales will have one drop-down box for each Cell Row that will show the names of the person in tab contacts
    for what i am wanting to do i cant use the data format pop-up menu because the list is edited everyday several times a day.
    Now how do i do this, Excel can do this so how can numbers do it?

    Hi Shegra,
    Paste this into a applescript editor window and run it from there. In the script you may need to adjust the four properties to agree with your spreadsheet. Let me know if you have any questions.
    quinn
    Script starts:
    -- This script converts column A in one table into an alphabetized list of popups. It copies the last cell in that column. Then reverts the column to text. It then refreshes popups in column A of a data table starting with a user defined row.
    property DataEntrySheet : "Sheet 1" --name of sheet with popups to be refreshed
    property DataEntryTable : "Sales" --name of table with popups to be refreshed
    set copyRange to {}
    property PopValueSheet : "Sheet 1" --name of sheet with popup values table
    property PopValueTable : "Contacts" --name of table with popup values
    set PopStartRow to {}
    tell application "Numbers"
      set d to front document
      set ps to d's sheet PopValueSheet
      set pt to ps's table PopValueTable
      set s to d's sheet DataEntrySheet
      set t to s's table DataEntryTable
      set tf to t's filtered --this records filter setting on data Entry Table
      display dialog "Start from row #..." default answer "" with icon 1 -- with icon file "Path:to:my.icon.icns" --a Week # row
      set PopStartRow to {text returned of result}
      tell pt --convert list to alphabetized popups
      set ptRows to count rows
      set copyRange to ("A2:" & name of cell ptRows of column "A")
      set selection range to range copyRange
      set selection range's format to text
      sort by column 1 direction ascending
      set selection range's format to pop up menu
      -- popupsmade
      set selection range to cell ptRows of column 1 of pt
      set v to value of cell ptRows of pt
      end tell
      activate application "Numbers"
      tell application "System Events" to keystroke "c" using command down
      tell pt
      set selection range to range copyRange
      set selection range's format to text
      end tell
      tell t
      set filtered to false
      set tRows to count rows
      set pasteRange to ((name of cell PopStartRow of column "A") & ":" & (name of cell tRows of column "A"))
      set selection range to range pasteRange
      tell application "System Events" to keystroke "v" using command down
      set filtered to tf
      end tell
    end tell

  • SharePoint 2013 users only see custom list and document lists that they uniquely created

    In my first SharePoint 2013 project, I want to create a view where users can only see their own files that they generated. I think I know how to create this view when the list is associated with the 'Documents; folder. However I have created several custom
    lists where I can only see these items when I am on the navigation pane to the right and the unique custom lists are listed under 'recent'.
    Let me know if you can answer any of the following questions:
    1. When on the main SharePoint website, can lists be displayed in other locations than what I just listed? If so, where would I see these other lists?
    2. I would like to include the custom lists that are located in the 'recent' navigation pane as a view that only I can use. This would be based upon userid. If this is possible,  how would you combine the lists lists in the same view? If this is not possible,
    how would you set a view just for the lists listed under the 'recent' section?
    3. The content approval solution under versioning settings of a library to restrict the documents to only ones that the user created (and also Approver rights).  Then if they create a new view they still won't see the documents that were not created by
    them. What about custom lists that are not in the documents area but are in the 'recent' area? Would this restrict users to see only items that they created?
    4. Item level Permissions in advance settings solve this problem for the list in the document area and the custom list in the recent area? If so, how would you setup these values?

    As it turns out the, setting Item-Level Permissions in a library is fully supported with PowerShell!
    The PowerShell commands for changing this are very simple:
    $web = Get-SPWeb http://YourSite/
    $list = $web.Lists[“Your Document Library Name”]
    $list.ReadSecurity = 2
    $list.Update()
    $web.Dispose()
    Note the 3rd line which is where you determine the value for this setting using the following values:
    1 = “Read all items”
    2 = “Read items that were created by the user”
    If you wish to modify the values for Create and Edit access instead, replace .ReadSecurity with .WriteSecurity with
    the following values:
    1 = “Create and edit All items”
    2 = “Create items and edit items that were created by the user”
    4 = “None”
    For example:
    $web = Get-SPWeb http://YourSite/
    $list = $web.Lists[“Your Document Library Name”]
    $list.WriteSecurity = 2
    $list.Update()
    $web.Dispose()
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • How do I delete a card out of my contact list that was dropped in by Facebook (I assume).  It won't let me delete it in -edit -delete card.  It has Facebook logo on the card. I have the contact in my contact list that entered.  This one appeared.

    How do I delete a card from my contact list that was added (I assume) by Facebook? I already have the contact in my contact list.  This card contains all Facebook information for this contact. When I click on Edit, the Facebook logo is by each entry.  It will not allow me to delete it by going to "edit" - "delete card".  Help.

    I tried deleting the name in the list and it won't let me - doesn't highlight.  Same under the Edit tab - it won't hilight.  This card is not like the other cards where you can do that.  I believe the contact has a Facebook acct. and I do to.  I didn't - to my knowledge - add this card from there.  I don't know if that is possible.  Bugs me that  Facebook has control over my Contact List or so it seems.  I will see if Facebook can give me any clues.  Thank you.

Maybe you are looking for

  • CM21/cm25 sorting of user defined field in table area

    Hallo, I implemeted the field MARC-MATGR in the table area of the CM21 with user exit CYPP0005 and now I'm trying to use the user exit CYPP0002 for sorting in order of this field like explained in oss note 605217. I implemented the coding like shown

  • Plotting data in diadem via LV

    Is it possible to plot data in diadem by specifying the x and y axes values from LV at runtime? I am looking for a solution something like: 1. Load data into Diadem(give the command from LV). 2. Load layout into diadem(give the command from LV). 3. S

  • My skype doesn' t work

    I just can't make or responde to any call.  When i press answer with video somethink stops the comunication.  The message I get is this: "problem with the recording device". What can I do?

  • Comparing  NVL strings in IF statement

    ORA-06550: line 22, column 12: PLS-00412: list of values not allowed as argument to this function or procedure ORA-06550: line 22, column 1: PL/SQL: Statement ignored if     nvl((lower(v_address),'null') not like (lower(:ADDRESS)))

  • Create a custom components.

    Hi everyone, it's me again. I'm trying to develop a kind of personal messenger. What I would like to do now, it's to develop a Combobox allowing me to choose a smiley, a smiley picker. I tried with a Renderer for a ComboBox but it does't work. Can an