Hello,
I have a form users are filling out. They need to choose their database server, and then database name. But I don't want to show all database names all the time, and I want to show the database names that belong to the database server. I got the data source(xml) working dynamically, but I can't get it right in the Canvas.
Any ideas?
Thanks!
I have a form users are filling out. They need to choose their database server, and then database name. But I don't want to show all database names all the time, and I want to show the database names that belong to the database server. I got the data source(xml) working dynamically, but I can't get it right in the Canvas.
Code:
ListGridField server = new ListGridField("server"); server.setOptionDataSource(serverDataSource); ListGridField name= new ListGridField("name"); name.setOptionDataSource(nameDataSource(--value of server--);
Thanks!
Comment