Lookup values with non-column data providers not supported

Hi

I am using the valilist in the following way(see the capture.png).

While attaching this valulist with a field of type combobox then its not showing any error and working fine. But while attaching that valulist with a field of type textfield then its showing the following error “Type ahead field “bp_customer_status” has attached a valuelist (or fallback valuelist) that contains unstored calculation(s). This is not supported” and also not showing the value properly. If I will change the display type of the field to combobox it not showing this error no more and working fine.

Any one can help me on this :(

Thanks,
Satya
(Skype :- mfsi_satyas)

It seems I was now able to solve this.
The task was how to show the proper i18n-value in a table view, where a normal field should be shown (displayType=TEXT_FIELD) and not a combobox.
(Because with a combobox, it worked fine when we put the basic value into the dataprovider and used then the property ‘valuelist’ where we used the pre-defined valuelist for this.)

I defined a non-stored calculated field in the table business_partners with this definition:

function clc_customer_status()
{
return i18n.getI18NMessage(‘bob.vl_bp_customer_status.’ + bp_customer_status);
}

To explain this:
In our i18n-file, the definiton lines for such values look like this, for example:
bob.vl_bp_customer_status.prospect=Prospect

Now I just show this non-stored calculated field in the table view as dataprovider, and do not use the property ‘valuelist’ for the table column field any more.
That seems to work fine now, and Servoy does not complain like this any more:
“Type ahead field “bp_customer_status” has attached a valuelist (or fallback valuelist) that contains unstored calculation(s). This is not supported.”