function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
onlinenandaonlinenanda 

how to access controller variable from visual force page's java script

how to  access controller variable from visual force page's java script
Ron HessRon Hess

You can do this by using the $Component feature of Visualforce to generate document ID's. 

 

So first you bind the method or property to a visualforce expression, then you peek or poke that value in the DOM to access the information that came from the controller.

 

Here is an example, the code is < script on a Visualforce page, and it accesses a method / property called "kml" or getKml() in the controller.

 

Note the outputText is happening right inside the script block :smileysurprised:

 

 

<script> google.load("earth", "1");
google.setOnLoadCallback(init);
var ge = null;

function init() {
google.earth.createInstance('{!$Component.map3d}', initCallback, function (object) { } );
}

function initCallback(object) {
ge = object;
ge.getWindow().setVisibility(true);

var p = ge.parseKml( "<apex:outputText value="{!kml}" escape="false" />" );
ge.getFeatures().appendChild(p);

var la = computeFitLookAt(ge, p, 1.4 );
if ( la != null ) {
ge.getView().setAbstractView(la);
}

ge.getNavigationControl().setVisibility(ge.VISIBILITY_SHOW);
}

 

 

 

SuvraSuvra

Hi,

 

Could you please give one more simpler example of doing this..

 

I have one variable in javascript. Need to assign the value of the Javascript variable to one class variable.

How to do this?? Please suggest..

 

Thanks in advance,

Suvra