Forum Discussion

Sergey's avatar
Sergey
Contributor III
21 days ago

GetDynamicAdaptersForDynamicComponent

Hello,

I can find no documentations about the "GetDynamicAdaptersForDynamicComponent" that is under the dynamic dashboard services.

How to use it ? How to define a dynamic adapter ?

My goal is to create dynamically a label component (which is done), but I would like to add a data adapter to it. Unfortunately, I haven't been succesful in dynamically linking a data adapter to my label :

 

Regards,

2 Replies

  • RobbSalzmann's avatar
    RobbSalzmann
    Valued Contributor II

    It appears be used to get your Adapter object inside another Adapter by its name:

    	string adapterName = "someAdapter";
    	WsDynamicAdapterCollection collection = GetDynamicAdaptersForDynamicComponent(
    			si,
    			api,
    			workspace,
    			maintUnit,
    			dynamicComponentEx,
    			customSubstVarsAlreadyResolved);
    	
    	WsDynamicCompAdptrMemberEx adapter = collection.GetAdapterUsingBasedOnName(adapterName)
    	
    	// do stuff with the adapter...

     

  • Sergey's avatar
    Sergey
    Contributor III

    That being said, I can directly reference any data and put in the text field of my label, hence no need for a data adapter !