Discussions
Field change function on custom column fields getting ignored
I am having a strange problem with scripts on the Expense Report form. There are a couple of custom column fields on which I need to code a field change function. E.g.
if (name == 'custcolproj_customer')
{
alert("TEST");
..........
}
but the code is just ignored and I don't even get the TEST alert. I also noticed one other strange thing - all my custom field names have a prefix of "exp" when I view the anchor tag for the custom field (view source).
I even tried "if (name == 'expcustcolproj_customer')..." but that doesn't work either!
Has anyone else had this problem?