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

47 lines
1.1 KiB
JavaScript
Raw Normal View History

2011-07-29 18:48:43 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
2011-05-16 10:49:48 +00:00
/*@
Ox.PlaceInput <f:Ox.FormElementGroup> PlaceInput Object
() -> <f> PlaceInput Object
(options) -> <f> PlaceInput Object
(options, self) -> <f> PlaceInput Object
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;
};