Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

in ExtJS, is there anyway to create a hidden field with a 'store', meaning that when I load the page, the hidden field will make a request to the server based on a url and store the value within itself. Similar to what src does for image or what store can do got grid.

share|improve this question

1 Answer

up vote 3 down vote accepted

Easiest way to achieve that is to invoke custom ajax request. Example:

var hiddenField = [...];

Ext.Ajax.request({
    url: 'foo.php',
    success: function(response, opts){
        hiddenField.setValue(response.responseText);
    },
    failure: function(response, opts) {
        alert('Error');
    },
    params: { foo: 'bar' }
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.