Finishing the Select Panel!

addam davis
2 min readApr 19, 2022

--

Objective: populate the select panel data!

Now that we have set up our call back system, we can now finish the functionality of this app. We are going to populate the select panel with the information from the downloaded case file.

First things first, we can set up the on enable method.

This method is called when the object this class is attached to is enabled and active.

Now, what do we want to do when this object is set to active? We want to populate the information text with the name of the active case.

Now when we find a case the select panel will populate with the name associated to that case.

Previously we set up the accept button to load the overview panel. If you haven’t done so, do it now with an onclick event.

There we have it. We can now create cases and store their information on the AWS S3 server and download that case information at a later time. At this point feel free to make this app your own, and I’ll see you in the next tutorial!

--

--