asp.net - Infragistics Ultralistview MouseHover Retrieve User Information -


i using infragistics ultralistview display data in list contains 3 columns , 4-5 rows(that upto 'n' rows depending upon data added). when hover on row 2 seconds, want other information row should displayed in panel control. how that?

let me know if else required side.

i've done sort of thing combo using mouseenterelement event control , processing display of information manually.

for project specifically, reference data valuelistitem. when event triggered, fires ultrawintooltip dropdown element.

for project, might want attribute data tag property of each ultralistviewitem, , capture mouseenterelement. try (vb):

dim lst ultralistview = ctype(sender, ultralistview)  if e.element.getcontext().gettype() gettype(ultralistviewitem)     '-- item in question     dim li ultralistviewitem = ctype(e.element.getcontext(), ultralistviewitem)     '-- transpose own data here     dim dr datarow = ctype(li.tag, datarow)     '-- use timer delay showing of tip, or set text here end if 

afterwards, clean using mouseleaveelement, doing along lines of:

if e.element.getcontext().gettype() gettype(valuelistitem)     '-- rid of text end if 

Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -