Get value instead of index for LOV in ADF

Put a value change listner on LOv and autosubmit=true.
 Inside the value change listner put the below code.

    public void valueChangeDepartments(ValueChangeEvent valueChangeEvent) {
       BindingContext bctx = BindingContext.getCurrent();
              BindingContainer bindings = bctx.getCurrentBindingsEntry();
              JUCtrlListBinding list=(JUCtrlListBinding) bindings.get("TypeBp");
              int index;
              index=Integer.parseInt(valueChangeEvent.getNewValue().toString());
              list.setSelectedIndex(index);
              FacesContext contxt = FacesContext.getCurrentInstance();
              valueChangeEvent.getComponent().processUpdates(contxt);
              String selectedValue=list.getAttributeValue().toString(); 

 System.out.println("Selected index----->"+index);
      System.out.println("Selected value ----->"+selectedValue);
    }


 Don't forget to import the related class.

That's it. Happy Coding :)




Comments

  1. This blog has helped me to solve my problem. Thanks alot Kunal

    ReplyDelete
  2. chúng tar a ngoài, nơi này hình như đã đợi được chín tháng.

    Nhạc Thành cất tiếng nói, lần này Nhạc Thành không ngờ rằng ở Hạo Thiên Tháp lại tốn nhiều thời gian như vậy?

    Thủ ấn trong tay của Nhạc Thành biến hóa, trong nháy mắt Nhạc Thành đã xuất hiện ở trong một gian phòng.

    - Nhạc Thdongtam
    mu private
    tim phong tro
    http://nhatroso.com/
    nhac san cuc manh
    tổng đài tư vấn luật
    http://dichvu.tuvanphapluattructuyen.com/
    văn phòng luật
    tổng đài tư vấn pháp luật
    thành lập công ty
    http://we-cooking.com/
    chém gió
    trung tâm ngoại ngữành, huynh rốt cuộc đã tới, việc lớn không hay rồi, Nhạc Thiên lão tổ đã chờ huynh hai mươi ngày, huynh mau đi một chuyến.

    Ở bên ngoài Yến Hiểu Kỳ và Hàn Nguyệt bọn họ đã sớm chờ đợi Nhạc Thành.

    Nhạc Thành cũng không hỏi, thân ảnh của hắn như chớp biến mất ngay tại chỗ, mà lúc này Nhạc Thiên cũng đã dùng linh hồn truyền âm nói Nhạc Thành tới đại sảnh. Nhạc Thành giải khai cấm

    ReplyDelete

Post a Comment

Popular posts from this blog

Setting up the environment for Angular2 and Hello World Example in Angular2

Showing number of rows or row count on top and bottom of table in ADF.

Build a Simple ReactJS application using react-cli