Client ID of a Silverlight Control in A Sharepoint WebPart - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T00:37:12Zhttp://stackoverflow.com/feeds/question/635272http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/635272/client-id-of-a-silverlight-control-in-a-sharepoint-webpart2Client ID of a Silverlight Control in A Sharepoint WebPartAbdullah Ahmed2009-03-11T16:20:50Z2009-03-12T09:35:03Z
<p>Background: I have a Silverlight Control in a sharepoint webpart that exposes some scriptable methods. I use those methods to call a webservice and get an array of menu options. These menu options are then injected into Sharepoint ECB menu which appears on clicking an item in a list. </p>
<p>The problem I am having is being able to get the clientID of the silverlight control in Javascript so then I can use it to call the scriptable method. The page this will be on may have multiple instances of the same silverlight control as well as the controls hierarchy might be different....</p>
<p>Here's the client side JS code I currently have in which the clientID is hardcoded...</p>
<pre><code>function TestQueryMenu() {
var plugin = document.getElementById('ctl02_IntuitionModelBrowserControl');
var contextUri = document.getElementById('TestUri').value;
var key = contextUri;
plugin.Content.ModelBrowser.GetContextMenuOptionsCompleted = MenuItemsReceived;
plugin.Content.ModelBrowser.GetContextMenuOptionsAsync(key, contextUri);
}
</code></pre>
http://stackoverflow.com/questions/635272/client-id-of-a-silverlight-control-in-a-sharepoint-webpart/636825#6368250Answer by Abdullah Ahmed for Client ID of a Silverlight Control in A Sharepoint WebPartAbdullah Ahmed2009-03-11T23:52:29Z2009-03-11T23:52:29Z<p>I ended up injecting the PLugin ID from the codebehind onto the page as a hiddenfield using the following function...</p>
<p>Page.ClientScript.RegisterHiddenField().</p>
<p>I then used javascript to read value of the hiddenfield.</p>
http://stackoverflow.com/questions/635272/client-id-of-a-silverlight-control-in-a-sharepoint-webpart/637880#6378800Answer by Flo for Client ID of a Silverlight Control in A Sharepoint WebPartFlo2009-03-12T09:35:03Z2009-03-12T09:35:03Z<p>Hi,</p>
<p>I think the blog post "<a href="http://silverlight.net/blogs/jesseliberty/archive/2008/12/26/passing-parameters-into-silverlight-applications.aspx" rel="nofollow">Passing Parameters Into Silverlight Applications</a>" form Mr. Jesse "Silverlight" Liberty could help you solving your problem. </p>