jsharmony-tutorials
Version:
jsHarmony Tutorials
34 lines • 1.86 kB
JSON
{
"layout": "form-m",
"table": "cust_addr",
"actions": "BIUD",
"roles": {"C_B":"B","C_X":"*"},
"caption": ["","Address","Addresses"],
"fields": [
{ "name": "cust_id", "type": "bigint", "actions": "I", "foreignkey": 1},
{ "name": "cust_addr_id", "type": "bigint", "key": 1,"control":"hidden"},
{ "name": "cust_addr_country","type": "varchar","length": 8,"actions": "BIU",
"control": "dropdown", "lov": { "code": "country", "schema":"jsharmony" },
"validate": [ "Required" ],
"default": "USA","caption": "Country","captionstyle": "width:70px;","eol": 1 },
{ "name": "cust_addr_line1","type": "varchar","length": 50,"actions": "BIU",
"control": "textbox_M","validate": [ "MaxLength:50" ],
"caption": "Address","captionstyle": "width:70px;","eol": 1 },
{ "name": "cust_addr_line2","type": "varchar","length": 50,"actions": "BIU",
"control": "textbox_M","validate": [ "MaxLength:50" ],
"caption": " ","captionstyle": "width:70px;","eol": 1 },
{ "name": "cust_addr_city","type": "varchar","length": 50,"actions": "BIU",
"control": "textbox_M","validate": [ "MaxLength:50", "Required" ],
"caption": "City","captionstyle": "width:70px;","eol": 1 },
{ "name": "cust_addr_state","type": "varchar","length": 8,"actions": "BIU",
"control": "dropdown_S","lov": { "code2": "country_state", "schema":"jsharmony", "parent": "cust_addr_country" },
"validate": [ "Required" ],
"caption": "State","captionstyle": "width:70px;" },
{ "name": "cust_addr_zip","type": "varchar","length": 50,"actions": "BIU",
"control": "textbox_S","controlstyle": "width:72px;","validate": [ "MaxLength:20" ],
"caption": "Zip" }
],
"dberrors": [
[ "xxxxxUNQ_CA", "Client can only have one record of each Address Type." ]
]
}