ASPxClientListEditItem.imageUrl Property
In This Article
Gets the item’s associated image.
#Declaration
TypeScript
imageUrl: string
#Property Value
Type | Description |
---|---|
string | A string value that represents the path to the image displayed by the item. |
#Example
This example demonstrates how to show the current item image within the ASPxComboBox text. To accomplish this task, handle the client-side ASPxClientComboBox.SelectedIndexChanged event, and change the background image of the control’s main HTML element. Also, you should set the ASPxComboBox.BackgroundImage.ImageUrl on the server side to synchronize the selected image. It is necessary to manually adjust the paddings and control height.
function SetComboBoxImage(s){
var cbstyle = s.mainElement.style;
cbstyle.backgroundImage = 'url('+(s.GetSelectedItem().imageUrl)+')';
cbstyle.backgroundRepeat = "no-repeat";
cbstyle.backgroundPosition = "2px";
}
See Also