Re: telerikDataControls:RadListView
Re: Binding, Converter
Re: accessing object in code behind
See also: https://forums.xamarin.com/discussion/54042/using-binding-with-value-converters
It seems that the converter should have access to the "object" from the list (recall that a RadListView gets it's data from a list of objects). The proper notation appears to be like:
<Label Text="{Binding Path=., Converter={StaticResource stateConverter}, ConverterParameter='some parameter'}" />
The converter looks like:
public object Convert(object obj, Type targetType, object parameter, CultureInfo culture)
But "obj" is always null. How can I access the object in the converter?
Thanks!