How do I find the assembly and namespaces for widgets?
I need to add widgets to some user controls and I'm having a difficult
time finding the assembly and namespaces. For example, I know the
SiteMap is located in assembly Telerik.Sitefinity and namespace
Telerik.Sitefinity.Web.UI.NavigationControls. But I cannot find where
the SubscribeForm is.
Looking at it in Settings > Toolboxes, I see the path points to
Telerik.Sitefinity.Modules.Newsletters.Web.UI.Public.SubscribeForm but
when I try to register the control it won't compile.
Is there an documentation?
Thanks
I'm not sure if there is documentation on where all of these widgets are. The Sitefinity API reference in the SDK does map out every class in the product, including all the web controls, so that might be helpful.
but your best bet is probably to use JustDecompile a free tool from Telerik. you can open up the Telerik.Sitefinity dll and use the handy search feature to find the control you're seeking. from there you can see the namespace that contains it to reference on your control.
this is how I do it! hope this is helpful!
Thanks SelAromDotNet