Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Combobox Problem : "FetchMissingValues - filterLocally is false yet"

    hi all,
    I have strange problem
    I have filled ComboBoxItem using datasource like that :
    Code:
    ComboBoxItem streetItem = new ComboBoxItem();
    streetItem.setTitle("Street");
    streetItem.setName("street_district_id");
    streetItem.setWidth(150);
    Criteria criteria = new Criteria();
    criteria.setAttribute("city_id", city_id);
    streetItem.setOptionCriteria(criteria);
    streetItem.setOptionOperationId("customStreetsSearch");
    streetItem.setOptionDataSource(streetsDS);
    streetItem.setValueField("street_district_id");
    streetItem.setDisplayField("street_name_geo");
    streetItem.setAutoFetchData(true);
    streetItem.fetchData();
    if i type into combobox for example "not valid street" and move focus to another component i got this exception :
    Code:
    [ERROR] [callcenter] - 20:30:28.703:XRP1:WARN:fetchMissingValues:isc_ComboBoxItem_16:
    FetchMissingValues - filterLocally is false yet optionDataSource fetch included records that do not match our current data value. Ignoring these values.
    after this exception combobox not working normally although normal text. for example "Tbilisi Street" (which exists into datasource).

    after this, I tried to set attribute :
    Code:
    streetItem.setFetchMissingValues(false);
    exception didn't appear but i got another problem : "streetItem.setValue(1126);" (1126 is street ID) doesn't work.

    how I can fix this issue ?


    Regards,
    Paata Lominadze

    #2
    Is this Bug or I missed something ?


    Regards,
    Paata Lominadze.

    Comment


      #3
      Hi, i am facing the same error, did you find a solution for it??
      thanks a lot

      Comment


        #4
        Originally posted by sameeh.harfoush
        Hi, i am facing the same error, did you find a solution for it??
        thanks a lot

        Not yet :(.


        I can't resolve this problem yet.

        Comment

        Working...
        X