Как перейти к следующей вкладке в форме схемы? - PullRequest
0 голосов
/ 27 апреля 2018

У меня проблема с формой схемы, может быть, вы можете мне помочь, это моя форма, и мне нужно перейти от вкладки к другой.

Есть ли способ сделать это?

У меня есть дно, где я получаю идентификатор из вкладки, но я не могу заставить его перейти на другую вкладку.

"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"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                ]
                            }
                        ]
                    }
                ]
            }
        ]
    }
]
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...