adding loading icon
This commit is contained in:
parent
96b29f0c19
commit
b74c5bee15
4 changed files with 103 additions and 18 deletions
|
|
@ -59,6 +59,13 @@
|
|||
borderBottom: "1px solid rgb(160, 160, 160)"
|
||||
})*/;
|
||||
|
||||
var loadingIcon = new Ox.LoadingIcon({
|
||||
size: "medium"
|
||||
})
|
||||
.css({
|
||||
marginLeft: "4px"
|
||||
});
|
||||
|
||||
var mainMenu = new Ox.MainMenu({
|
||||
extras: [
|
||||
new Ox.Input({
|
||||
|
|
@ -107,7 +114,8 @@
|
|||
id: "find",
|
||||
label: ["Find: All", "Find: Title", "Find: Director", "Find: Country", "Find: Cinematographer"],
|
||||
labelWidth: 96
|
||||
}).width(320)
|
||||
}).width(320),
|
||||
loadingIcon
|
||||
],
|
||||
menus: [
|
||||
{
|
||||
|
|
@ -169,6 +177,12 @@
|
|||
],
|
||||
size: "large"
|
||||
});
|
||||
Ox.Event.bind(null, "submit_find", function(data) {
|
||||
loadingIcon.start();
|
||||
setTimeout(function() {
|
||||
loadingIcon.stop();
|
||||
}, 5000);
|
||||
});
|
||||
var bottomPanel = Ox.Bar({size: "small"})
|
||||
.css({
|
||||
zIndex: 2,
|
||||
|
|
@ -455,6 +469,19 @@
|
|||
placeholder: ["City", "State"],
|
||||
selected: 1
|
||||
}).addClass("margin").width(160).appendTo(mainPanel);
|
||||
Ox.Button({
|
||||
selectable: true,
|
||||
size: size,
|
||||
type: "text",
|
||||
value: "Foo"
|
||||
}).addClass("margin").appendTo(mainPanel);
|
||||
Ox.Button({
|
||||
selectable: true,
|
||||
size: size,
|
||||
type: "text",
|
||||
value: "Bar"
|
||||
}).addClass("margin").appendTo(mainPanel);
|
||||
|
||||
//*/
|
||||
function openDialog() {
|
||||
var $dialog = new Ox.Dialog({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue