Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
275
Template column control always appear in UltraWebGrid cell.
posted

Hi,

i am using Infragistics "NetAdvantageWebClient20091" license Version.

Requirment:

i am working on UltraWebGrid and i have create a tempate column and put a DropDownList in cell template.

When i run the application, the DropDownList always appear in the UltraWebGrid Cell and it is not looking good.

Question:

i want that this dropdownlist should be appear only when we move the cursor on cell. on mouse out from cell, dropdownlist should not be visible.

please let me know the solution of this problem. it is very urgent for me.

 

Thanks & Regard's

Sachin Kumar

Parents
No Data
Reply
  • 45049
    Suggested Answer
    posted

    Sachin,

    I understand what you're talking about now.

    When you create a templated column with a cell template, the cells in that column will always display the controls and other content that you put into the cell template.  This means that the controls in the template will "always" appear.  WebGrid has no built-in functionality to alter this behavior.

    You might be able to handle some of the grid's client-side events, such as MouseOver and MouseOut, so that you can hide and unhide controls in a templated column in response to the mouse position.  This likely will not be trivial to implement.

Children