Hi,
I added Active choice parameter with multi select check box option where I
got the info from groovy script and it works great.
I want to add one more checkbox with no value but empty textbox (String
parameter) so the user can write something else that is not in the list
that I show.
Is it possible ?
I know I can add new variable
Thanks
import groovy.sql.Sql
def output = []
def sql = Sql.newInstance('jdbc:mysql://dbUrl/schema', 'username',
'password', 'com.mysql.jdbc.Driver')
String sqlString = Select name from table"
sql.eachRow(sqlString){ row ->
output.push(row[0])
}
return output
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/jenkinsci-users/39730b99-ebe1-43d3-8457-d3fc90fbe65b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.