单个Podio应用程序的多个Web表单

时间:2016-10-26 11:07:52

标签: podio

有没有办法在Podio中为单个应用程序添加多个Web表单(选择了不同的字段)。

示例

Form1中:

enter image description here

表格2:

enter image description here

2 个答案:

答案 0 :(得分:2)

您可以为同一个应用创建多个网络表单,但只能从Podio API创建,而不能从Podio UI创建。 以下是从API创建最简单的webform的示例:

  webform_config = { 'settings' => { 'captcha' => true,
                                     'text' => {'heading' => 'heading',
                                                'description' => 'description',
                                                'submit' => 'submit',
                                                'success' => 'thank you!'},
                                     'theme' => 'flat'},
                     'domains' => [],
                     'fields' => [{'field_id' => <field external id>}],
                     'attachments' => true}
  form = Podio::Form.create(<app id>, webform_config)

答案 1 :(得分:0)

我们遇到了同样的问题,并为此解决了内部问题。在许多Podio合作伙伴要求我们打开它之后,我们从中进行了Podio扩展。

随意,并尝试在https://momentumtools.io/podio-forms上尝试我们的动态podio表单扩展。

除了每个应用程序多个表格外,我们还支持条件字段,可编辑项,数据验证,向导等:)。

希望你喜欢它:)!