SmartClient Version: v9.1p_2016-04-15/Pro Development Only (built 2016-04-15)
All browsers
I am currently using isc.LinkItem to create a hyperlink to another page. This link requires an icon on the left side of the text. Following the example on creating a LinkItem with image in Feature Explorer, I added the image and text in the linkTitle property. However, the text does not seem to be center aligned vertically. Is there a way to have the icon and text seem vertically aligned?
Reference: https://www.smartclient.com/docs/9.1...html#linkImage
All browsers
I am currently using isc.LinkItem to create a hyperlink to another page. This link requires an icon on the left side of the text. Following the example on creating a LinkItem with image in Feature Explorer, I added the image and text in the linkTitle property. However, the text does not seem to be center aligned vertically. Is there a way to have the icon and text seem vertically aligned?
Reference: https://www.smartclient.com/docs/9.1...html#linkImage
Code:
isc.DynamicForm.create({
fields: [
{
name: "LinkName",
type: "link",
linkTitle: isc.Canvas.imgHTML('http://www.google.com/favicon.ico') + "http://www.google.com",
value: "http://www.google.com"
}
]
});
Comment