I'm new to this, so this is probably a pretty dumb questions, but here goes....
I have a custom attribute that I want to be able to modify in the behavior class. Whenever I try to get a handle on the attribute (a dropdown list) I get this error: Failed to fetch object : [DM_API_E_BADID]error: "Bad ID given: 0000000000000000".
Here is the code I am executing,and I have verified it is choking on the "getControl".
public class ImportContent extends Component {
public void onInit (ArgumentList arg) {
super.onInit(arg);
DataDropDownList classificationDropDown = (DataDropDownList)getControl("classification",DataDropDownList.class);
}
Can anyone clue me in on what I might be doing wrong?