On Thu, 10 Jun 2004, Thomas, Mark - BLS CTR wrote: If you know what the 'real' value should be, you can add it yourself manually, THEN select it like:
heres an example of having to add a radio button and a text selection because javascript BS is what the form uses to do the same. the form itself has null values like in your case. $agent->form(3); my (%attrib); my $form = $agent->current_form(); $attrib{name} = "searchMode"; $attrib{value} = "propertyid"; $form->push_input("radio", \%attrib); $agent->field("searchMode" , "propertyid"); $attrib{name} = "propertyId"; $attrib{value} = ""; $form->push_input("text", \%attrib); $agent->field("propertyId" , $prop_cd); -- gedanken