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
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
Comment