cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X

Random value generation on mashup(RealTime value)

ds-21
1-Newbie

Random value generation on mashup(RealTime value)

First we Know about  infoTable and Datashape.

What is InfoTable ?


An InfoTable is zero indexed, ordered array of javaScript objects which expose  sameproperties. Since an InfoTable is an Array of Objects, it can also be thought of as a table where the array entries are rows and the object properties of each object in the array are the columns.

For example :

var people = [

      {

           “name” : “Ravi”,

           “city” : “Mumbai”

      },

      {

           “name” : “Mohit”,
           “city” : “New Delhi”

      }

];

As you can see InfoTables only contains the same type of object.This is achieved using another ThingWorx specific mechanism called Data Shape

What is Data Shape ?

A DataShape is a specification of the required property names and return types each property of a JavaScript “Object” must have to be added to an InfoTable.

DataShapes also contain other metadata about a property that is useful for formatting and displaying the InfoTable in a tabular format or Grid.

Random value generation:

var params = { dataShapeName: "randomVariable" /* DATASHAPENAME */,

              infoTableName: "alertService1" /* STRING */ };

var result = Resources["InfoTableFunctions"].CreateInfoTableFromDataShape(params);

var row = new Object();

var temp1=Math.floor((Math.random() * 100) + 1);

row.temp=temp1;

result.AddRow(row);

datashape.png

row.temp is already  defined in the datashape.it will updates the value in the datashape,whenever the service executes.

Mashup:

in mashup use gauge to display the random value.

1) select the service(already created random service)

2) drag the data to the gauge

3) In widget, drag the auto refresh set interval as your required.

4)click the refresh configuration, select refresh and drag to the service.

refresh.png

refresh1.png

5) then click the view mashup.

0 REPLIES 0
Top Tags