Folks,
I ran into something I could have sworn I saw work before (and maybe the difference is that it works in request handlers but not webnode actions). This is for the case of your form having multiple items with the same name (i.e. objID) and retrieving them in your request as request.objID_list.
In my prototype I have
{'objID', IntegerType, "Object ID", FALSE, Undefined, TRUE} - the last param to force the creation of objID_list in my request. If I had three object ID fields, say, 2000, 10101, and 10102, I would expect that request.objID = {2000} and request.objID_list = {2000, 10101, 10102}. Instead, I'm getting the list as strings, i.e. {'2000', '10101', '10102'}.
Is this a documented bug or is there a way of getting all my elements properly cast to integer?
-Hugh Ferguson