Girija, thanks for your response. As i've wrote these classes are from C++ component so cannot be expanded to observable class (so i cannot use Binding.as).
I had a problem with items in ListView where i need update property of any item (these items are from C++ component). As a workaround i've added an event which is called from C++ :
function updateUI(item){
var pos = DataSource.currentList.indexOf(item);
if( pos >= 0)
DataSource.currentList.setAt( pos, item); // this will throw rebind as i needed
}