Hi,
I need to show two value (one is image and another is text) in Grid column. How can do it?
/Fakhrul
Hello,
UltraWebGrid support HTML .You can use the TemplatedColumn tag and set some link to image and text afther that image.
You can take a look sample code below.
<igtbl:TemplatedColumn>
<CellTemplate>
<img src="http://forums.infragistics.com/Themes/leanandgreen/images/user_IsOnline.gif" /> some text
</CellTemplate>
</igtbl:TemplatedColumn>
Hopes this helps.
Thanks for your reply. I tried it previously, but it doest work. Image path and text both will come from a datasource.
My Code is Bellow: which show some error
<img src= <%# DataBinder.Eval(Container,"DataItem.S_U_Img")%> /> <%# DataBinder.Eval(Container,"DataItem.Description")%>
regards,
Fakhrul