-
Hi all, i try to add a hash to a dynamic dropdown, but for some reason this is not working, the dropdown receives <Script Error> hash created from ssh.exec!(parameter).strip
other hash on working method if i set the hash not as var the dynamic dropdown get´s filled propperly method get_lvs
the error i receive with this Method (evm.log) Error Log:
any help or suggestions appreciated thx |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
fixed it
myhash = create_hash(output.to_s) begin |
Beta Was this translation helpful? Give feedback.
fixed it
myhash = create_hash(output.to_s)
begin
unless myhash.nil?
list_values = {
'visible' => radio_selected,
'required' => false,
'data_type' => "string",
'values' => myhash,
'default_value' => nil,
'read_only' => false
}
list_values.each do |key, value|
$evm.object[key] = value
end
end
end