I am trying to create a Silverlight class library which needs to call a few Javascript methods. I have put these methods in a single .js file and have added it to the project. But when I try to call any of the methods in the js file, I get a FailedtoInvoke error. I understand that this problem can be solved by adding a reference of the JS file in the head section of ASPX or HTML page. But I am developing a class library and so that is not possible. Does someone know how to tackle this issue? I am using Silverlight 4 and Visual Studio 2010.
Embedding a JS file in Silverlight Class Library
782 Views Asked by Harish At
2
There are 2 best solutions below
Related Questions in JAVASCRIPT
- Using Puppeteer to scrape a public API only when the data changes
- inline SVG text (js)
- An array of images and a for loop display the buttons. How to assign each button to open its own block by name?
- Storing the preferred font-size in localStorage
- Simple movie API request not showing up in the console log
- Authenticate Flask rest API
- Deploying sveltekit app with gunjs on vercel throws cannot find module './lib/text-encoding'
- How to request administrator rights?
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- In Datatables, start value resets to 0, when column sorting
- How do I link two models in mongoose?
- parameter values only being sent to certain columns in google sheet?
- Run main several times of wasm in browser
- Variable inside a Variable, not updating
Related Questions in SILVERLIGHT
- ServiceReferences.ClientConfig use basicHttpsBinding or similar
- How to draw and show map in in ArcGIS C# Silverlight Application
- ESRI.ArcGIS.Client.Symbols.SimpleFillSymbol invoke system crash on Unhandled Error in Silverlight Application
- OpenSilver 'Tapped' event not triggered on phone
- Debugging Silverlight with Microsoft Edge
- Where to download Silverlight Developer Runtime nowadays?
- Where can I download RiaServices.msi nowadays?
- How to build old Silverlight project in Azure DevOps?
- reading of barcodes are badly interpreted in silverlight app with edge
- StringFormat doesnt change number in Silverlight <telerik:GridViewDataColumn>
- Migrate Silverlight check for ElevatedPermission to ASP.NET MVC
- How do I install Silverlight now that it has been discontinued?
- OpenSilver and Dispatcher.CheckAccess
- Port Silverlight Storyboard to WPF
- Silverlight bing maps component are no longer working
Related Questions in SILVERLIGHT-4.0
- How can I pass content to a parent template from a child template in Silverstripe
- create a PDF document in Silverlight
- Silverlight 4 SDK
- How can I set a TextBox text programmatically in XAML (Silverlight)
- Silverlight 4 Application run in silverlight 5 in visual-studio-2015
- Access Local Files from IIS "silverligh"
- Binding Observable collection list to dynamically created ComboBox in Silverlight
- Silverlight - ComboBox and other fields in toolkit:DataForm are not available in the .xaml.cs
- Consume same WCF service from angular 2 and Silverlight application
- Richtextbox values showing in single line
- SilveLight 4, System Reflection.TargetInvocationException: (Async_ExceptionOccurred)
- Port Wince 7 Xaml Based application to win32 platform
- DataGrid HeaderStyle overriding Header
- Silverlight with RIA services on IIS 10.0 results in 404 error
- load dynamically dll from file path at runtime in silverlight
Related Questions in CLASS-LIBRARY
- Load Class library dll in powershell
- Mah apps resource not found in a wpf class library
- How do I add a class library here in Microsoft Visual Studio Code?
- .NET Framework 4.5.2-based Console application compatibility problems with .NET 6-based Class Library project
- How to create a class library (c#) in visual studio code using .net 4.7 version
- How can I log to a specific file path with log4j2 in a library?
- How to send data between Class Library and Winforms (both are different projects)
- Error adding a WinUI 3 class library reference to a WinUI 3 blank app
- Error on BlazorWebView and Class Library with Winform
- Source Generators for class library project in c#
- Class library is not found while building the ASP.NET Core 7 Web API with Github Actions
- Blazor WebAssembly stuck on Loading... when configuring dependency injection for a class library
- Blazor a Class Library reference in the WebAssembly client is failing to connect .NET 6
- Shared class library - MAUI and ASP.NET Core
- NU1102 Unable to find package Communications.Interface with version (>= 6.0.0)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Add the .js file to your library probject as it sounds you have done, make sure it Build Action is "Resource".
You can retrieve this content with
Application.GetResourceStream:-Note the structure of the Uri, the assembly name of your class library is needed followed by the literal ";component". This tells Silverlight to look for a resource inside your dll that will be included in a final application's Xap.
Now you need to turn the content of the info's
Streamproperty into a string:-Finally you can inject that javascript into the current page with:-
Thats it, any global functions defined in the js may now be invoked with
HtmlPage.Window.Invoke.