Quick question
how can i find a dropDowncolumn via javascript ?
I've tried the following
var row = masterTableView.get_editItems()[0];
var dropDown = masterTableView.get_editItems()[0].findControl('nameofMyDropDownColumn');
but when debugging dropDown is always null
Notes:
grid is in edit mode
Is there a different method i should be using ?