diff --git a/content/docs/ko/help-center/create-forms/custom-field.mdx b/content/docs/ko/help-center/create-forms/custom-field.mdx new file mode 100644 index 0000000..d476bd7 --- /dev/null +++ b/content/docs/ko/help-center/create-forms/custom-field.mdx @@ -0,0 +1,44 @@ +--- +title: 커스텀 필드 만들기 +description: 왈라 MCP를 이용해 커스텀 필드를 만들 수 있습니다. +--- + +import { Step, Steps } from 'fumadocs-ui/components/steps'; + +## 커스텀 필드란? +커스텀 필드는 왈라에서 기본으로 제공하는 필드 타입(객관식, 단답형, 드롭다운 등)만으로는 표현할 수 없는 입력 방식을, 자연어 설명을 통해 새로 만들어 쓰는 필드입니다. +기존 폼 빌더에서는 필드 목록에 없는 방식은 아예 만들 수 없었지만, 커스텀 필드는 이런 한계를 없앱니다. "서명 받는 패드 필드 만들어줘"처럼 원하는 걸 설명하면 그 설명을 바탕으로 실제 동작하는 필드가 만들어집니다. + + + + + ### [왈라 MCP](https://docs.walla.my/ko/docs/help-center/getting-started/installing-walla-mcp) 설치 + [claude.ai](https://claude.ai/) 접속 후 왈라 MCP를 설치합니다. + + 연결 완료 후 Walla Form 커넥터의 도구 목록과 권한 + + + ### Claude에게 명령 내리기 + Claude에게 만들고 싶은 필드에 대해 이야기합니다. + + Claude에게 요청해 생성된 별점 입력기 커스텀 필드 + + + ### 프리뷰 확인 후 승인 + 프리뷰를 확인 후, 수정하고 싶은 부분을 수정합니다. 의도한대로 커스텀 필드가 생성되었다면 빌드를 승인합니다. + + 프리뷰 확인 후 승인하면 팀에 커스텀 필드 타입으로 등록됨 + + + ### 폼에 커스텀 필드 추가 + 편집하기 화면에서 필드를 추가할 때 `커스텀 필드` 탭을 선택하면, 만들어 둔 커스텀 필드를배 목록에서 고를 수 있습니다. + + 폼 편집 화면의 커스텀 필드 탭에서 만든 커스텀 필드 선택 + + + ### 커스텀 필드 사용하기 + 선택한 커스텀 필드가 폼에 추가됩니다. 일반 필드처럼 질문과 설명을 편집하고 게시해 응답을 받을 수 있습니다. + + 폼에 추가된 별점 입력기 커스텀 필드 + + diff --git a/content/docs/ko/help-center/create-forms/meta.json b/content/docs/ko/help-center/create-forms/meta.json index 5c49949..9bfe0bd 100644 --- a/content/docs/ko/help-center/create-forms/meta.json +++ b/content/docs/ko/help-center/create-forms/meta.json @@ -30,6 +30,7 @@ "limiting-option-selections-by-quota", "team-template", "field-template", - "setting-up-logic" + "setting-up-logic", + "custom-field" ] } diff --git a/content/docs/ko/help-center/result-analysis/response-sheet.mdx b/content/docs/ko/help-center/result-analysis/response-sheet.mdx index 6185481..e6ceae4 100644 --- a/content/docs/ko/help-center/result-analysis/response-sheet.mdx +++ b/content/docs/ko/help-center/result-analysis/response-sheet.mdx @@ -36,6 +36,10 @@ description: "‘응답 시트’에서는 수집된 응답 데이터를 표 형 응답 다운로드 +- 파일 업로드 필드의 경우, 해당 열 상단의 다운로드 아이콘을 클릭하면 응답자들이 업로드한 파일을 한 번에 내려받을 수 있습니다. + +파일 업로드 필드 열의 파일 다운로드 버튼 + ## 응답 삭제 - 개별 응답을 선택한 뒤 `삭제`를 누르면 즉시 삭제됩니다. diff --git a/public/images/guides/create-forms/custom-field-add-to-form.png b/public/images/guides/create-forms/custom-field-add-to-form.png new file mode 100644 index 0000000..b52d0d5 Binary files /dev/null and b/public/images/guides/create-forms/custom-field-add-to-form.png differ diff --git a/public/images/guides/create-forms/custom-field-approve.png b/public/images/guides/create-forms/custom-field-approve.png new file mode 100644 index 0000000..e03cb60 Binary files /dev/null and b/public/images/guides/create-forms/custom-field-approve.png differ diff --git a/public/images/guides/create-forms/custom-field-in-form.png b/public/images/guides/create-forms/custom-field-in-form.png new file mode 100644 index 0000000..503bb71 Binary files /dev/null and b/public/images/guides/create-forms/custom-field-in-form.png differ diff --git a/public/images/guides/create-forms/custom-field-star-rating.png b/public/images/guides/create-forms/custom-field-star-rating.png new file mode 100644 index 0000000..2e094b0 Binary files /dev/null and b/public/images/guides/create-forms/custom-field-star-rating.png differ diff --git a/public/images/guides/result-analysis/response-sheet-file-download.png b/public/images/guides/result-analysis/response-sheet-file-download.png new file mode 100644 index 0000000..1958f22 Binary files /dev/null and b/public/images/guides/result-analysis/response-sheet-file-download.png differ