I call the following code:
import com.smartgwt.client.util.SC;
import com.smartgwt.client.util.ValueCallback;
...
SC.askforValue ("123", new ValueCallback()
{
public void execute(String value)
{
if (value != null)
{
}
else
{
}
}
});
And I just receive the exception:
(TypeError):
type: undefined_method
argument: askforValue, [object Object]
Why this might be happening?
Thank you again.
Yorgos
import com.smartgwt.client.util.SC;
import com.smartgwt.client.util.ValueCallback;
...
SC.askforValue ("123", new ValueCallback()
{
public void execute(String value)
{
if (value != null)
{
}
else
{
}
}
});
And I just receive the exception:
(TypeError):
type: undefined_method
argument: askforValue, [object Object]
Why this might be happening?
Thank you again.
Yorgos
Comment