Click here to Skip to main content
Sign Up to vote bad
good
See more: Javascript
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 6 Nov '12 - 0:05


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.
 
//Contents of widget.js
var widget=function(id) {
  //do your ajax thingy with the id
}
 
And then for the adding to your page
 
var activeWidgets=new Array();
 
function addWidget(someid) {
  activeWidgets[activeWidgets.length]=new widget(someeid);
}
 
  Permalink  

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

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 OriginalGriff 273
1 Sergey Alexandrovich Kryukov 179
2 Maciej Los 136
3 Richard MacCutchan 125
4 Tadit Dash 100
0 Sergey Alexandrovich Kryukov 10,264
1 OriginalGriff 7,917
2 CPallini 4,181
3 Rohan Leuva 3,522
4 Maciej Los 3,125


Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 6 Nov 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid