Click here to Skip to main content
15,867,568 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,
I got stuck when I need to pass a variable in a widget solution. I have build a solution where in a widget can be clearly added to site. But I need to distinguish this widget from other by adding an ID to it so that it can be checked distinctly by fetching its record corresponding to ID.
Please help me out in this. Thanks in advance.
Posted

1 solution

You should probably look at making you widget an object. So that you can create multiple instances of the widget. In that way you'll include just 1 js file per widget type. But you'll create multiple widgets with it.

JavaScript
//Contents of widget.js
var widget=function(id) {
  //do your ajax thingy with the id
}


And then for the adding to your page
JavaScript
var activeWidgets=new Array();

function addWidget(someid) {
  activeWidgets[activeWidgets.length]=new widget(someeid);
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900