* More work on menu system and form handling. Lots of work to do!

This commit is contained in:
Bryan Ashby
2015-03-30 21:29:06 -06:00
parent d6ffa2b26e
commit 3274908586
7 changed files with 54 additions and 11 deletions

Binary file not shown.

View File

@@ -21,7 +21,7 @@
VerticalMenu: { id: 0, submitId: 1, value: { '1': 1 } }
Another concept:
"menu" : "@helper.js/logoff" -> calls helper.js::logoff(...)
*/
@@ -44,7 +44,31 @@
},
"login" : {
"art" : "login",
"module" : "login"
"module" : "login",
"form" : [
{
"mciReq" : [ "ET1", "ET2", "BN3", "BN4" ],
"mci" :{
"ET1" : {
"focus" : true
},
"BN3" : {
"submit" : true,
"text" : "Login"
},
"BN4" : {
"submit" : true,
"text" : "Cancel"
}
},
"submit" : [
{
"value" : { "3" : null },
"menu" : "pickles"
}
]
}
]
},
"logoff" : {
"art" : "logoff",