oxjs/source/Ox.UI/js/Form/PlaceInput.js

45 lines
1 KiB
JavaScript
Raw Normal View History

2011-11-05 16:46:53 +00:00
'use strict';
2011-05-16 10:49:48 +00:00
/*@
2012-05-31 10:32:54 +00:00
Ox.PlaceInput <f> PlaceInput Object
([options[, self]]) -> <o:Ox.FormElementGroup> PlaceInput Object
2011-05-16 10:49:48 +00:00
options <o> Options object
id <s> element id
value <s|United States> default value of place input
self <o> shared private variable
@*/
2011-04-22 22:03:10 +00:00
Ox.PlaceInput = function(options, self) {
var that;
self = Ox.extend(self || {}, {
options: Ox.extend({
2011-04-22 22:03:10 +00:00
id: '',
value: 'United States'
}, options)
});
that = Ox.FormElementGroup({
2011-04-22 22:03:10 +00:00
id: self.options.id,
elements: [
Ox.Input({
2011-04-22 22:03:10 +00:00
id: 'input',
value: self.options.value
}),
Ox.PlacePicker({
2011-04-22 22:03:10 +00:00
id: 'picker',
overlap: 'left',
value: self.options.value
})
],
float: 'right'
}, self)
.bindEvent('change', change);
function change() {
}
return that;
};