http://www.informit.com/articles/article.aspx?p=1339471&seqNum=4
ComboBox Displays two fields from store using XTemplate
April 11, 2011
var resultTpl = new Ext.XTemplate('div class="x-combo-list-item">{last_name}, {first_name}January 12, 2012
April 11, 2011
var resultTpl = new Ext.XTemplate('div class="x-combo-list-item">{last_name}, {first_name}April 9, 2011
var myObj = {
param1 : 'something',
obj1 : {
a : 'something in obj1'
}
}
Ext.Ajax.request({
url: session_manager_url,
method: 'POST',
params: {
ajax_req: Ext.util.JSON.encode(myObj)
},
success: function(transport){
// do something
},
failure: function(transport){
alert("Error: " - transport.responseText);
}
});
March 1, 2011
March 1, 2011
February 25, 2011
Flex, Video & Audio Leave a comment
Simple Webcam Capture Demo for Flex
http://www.davidortinau.com/blog/simple_webcam_capture_demo_for_flex/
Build Your Own Video Recorder Using Flex
http://nehuln.blogspot.com/2009/12/adobe-flex-video-and-webcam-combo.html
January 19, 2011
The width and height need to be a fixed value rather than percentage if using css overflow-x or overflow-y for scroll bar.
blockquote { width: 50px; height: 50px; overflow-y: scroll }
<blockquote style=”width: 50px; height: 50px; overflow-y: scroll”>some text</blockquote>