Hi Isomorphic,
yes, please try this in the SmartClient showcase:
Best regards
Blama
yes, please try this in the SmartClient showcase:
Code:
isc.DynamicForm.create({
ID: "form1",
titleOrientation: "top",
canEdit: false,
width: 620,
colWidths: ["*", "*"],
fields: [
{name: "text", title:"Text", type:"text", hint: "A plain text field", wrapHintText: false,
icons: [{
name: "tel",
src: "blank", // if inline icons are not supported by the browser, revert to a blank icon
inline: true,
text: "✆",
baseStyle: "telIcon"
}]},
{name: "link", title:"Link", type:"LinkItem", value:"https://forums.smartclient.com/", applyHeightToTextBox: null,
icons: [{
name: "tel",
src: "blank", // if inline icons are not supported by the browser, revert to a blank icon
inline: true,
text: "✆",
baseStyle: "telIcon"
}]}
]
});
Blama
Comment