Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    DynamicForm and image FormItemType

    I want to add field to DynamicForm with type as "image".
    I need, that it rendered as icon, as in ListGrid with image field.
    But it rendered as TextItem.
    I set it field as readOnly, how in documentation.
    isc.DynamicForm.create({ items: [{ name: "icon_id", width: 30, showTitle: false, type: "image", canEdit: false, canFocus: false, canSelectText: false }]); How can I do this? Thanks

    #2
    Other than the syntax error (missing closing curly brace), your code behaves as we expect, and does not produce a TextItem.

    Comment

    Working...
    X