web-dev-qa-db-ja.com

CQ5でデフォルトのチェックボックスをオンにする

編集時にコンポーネントダイアログのデフォルトのチェックボックスをオンにしようとしています。フィールドのプロパティは次のとおりです。

jcr:primaryType: widget
checked: true (boolean) *Documentation says this determines default checked status
type: checkbox (string) *read this as a fix to making checkbox selections stick
xtype: selection (string)
name: ./foo (string)
fieldValue: true (string)
16
justacoder

はい、そうです ドキュメント は少し不安定です。私はいくつかの実験をしました、そしてこのプロパティの組み合わせは私のために働きます:

defaultValue (String) true
fieldLabel (String) Foo Mode
inputValue (String) false
jcr:primaryType (Name) cq:Widget
name (String) ./foomode
type (String) checkbox
xtype (String) selection

DefaultValueプロパティがキーのようです。

ウィジェットではなく、プライマリタイプのcq:Widgetがありますか?

17
David Gorsline

これをブール値として保存するには...

<nodeName
jcr:primaryType="cq:Widget" 
fieldLabel="check this nodename" 
name="./nodeName" 
defaultValue="{Boolean}false" 
type="checkbox"
xtype="selection" />

<nodeNameHint
  jcr:primaryType="cq:Widget"
  ignoreData="{Boolean}true"
  name="./nodeName@TypeHint"
  value="Boolean"
  xtype="hidden"/>
5
michael hewson

チェックボックスをデフォルト値がチェックされた状態に設定し、プロパティを(文字列ではなく)ブールプロパティタイプとしてJCRに保存するには、次のクラシックを使用しますUI設定:

<myCheckbox
    jcr:primaryType="cq:Widget"
    fieldLabel="My Checkbox"
    name="./myCheckbox"
    value="true"
    defaultValue="true"
    checkboxBoolTypeHint="{Boolean}true"
    type="checkbox"
    xtype="selection"/>

または、Granite TouchUIで次の設定を使用します。

<myCheckbox
    jcr:primaryType="nt:unstructured"
    sling:resourceType="granite/ui/components/foundation/form/checkbox"
    text="My Checkbox"
    name="./myCheckbox"
    value="true"
    checked="true"/>
<myCheckboxType
    jcr:primaryType="nt:unstructured"
    sling:resourceType="granite/ui/components/foundation/form/hidden"
    name="./myCheckbox@TypeHint"
    value="Boolean"/>

詳細な記事とデモは http://www.nateyolles.com/blog/2015/11/aem-checkboxes-using-sling-post-servlet にあります。

4
nateyolles