我有架构表单的问题,可能你可以帮助我,这是我的表单,我需要从一个选项卡步骤到另一个选项卡。
有办法做到这一点吗?
我有一个底部,我从标签中获取了id,但我无法跳转到其他标签。
"form": [
{
"type": "fieldset",
"title": "Ficha Base",
"items": [
{
"type": "tabs",
"style": "padding-top: 5px;",
"tabs": [
{
"title": "Datos Personales",
"id": "1",
"items": [
{
"type": "section",
"htmlClass": "row",
"items": [
{
"type": "section",
"htmlClass": "col-md-6 col-xs-12",
"items": [
{
"type": "button",
"style": "btn btn-primary",
"title": "Enviar",
"onClick": "siguientePestana('1')"
}
]
}
]
}
]
},
{
"title": "Datos Académicos Enseñanza Superior",
"id": "2",
"items": [
{
"type": "section",
"htmlClass": "row",
"items": [
{
"type": "section",
"htmlClass": "row",
"items": [
{
"type": "section",
"htmlClass": "col-md-12",
"items": [
{
"type": "button",
"style": "btn btn-primary",
"title": "Enviar1",
"onClick": "siguientePestana('2')",
"condition": "model.ocultarCampo"
},
{
"type": "help",
"helpvalue": "<div class=\"alert alert-info\">Asegurece de entrar en con el perfil y fecha correcta para actualizar el formulario</div>",
"condition": "!model.ocultarCampo"
}
]
}
]
}
]
}
]
}
]
}
]
}
]