I am using Version=9.1.20091.2137 of WebCombo which has the same version of UltraWebGrid as its dropdown.
I can't get the UltraWebGrid to fire the event dblClick.
The single click does fire.
I'm not sure if the problem is with the client-side code required to define the handle to the event, or some other reason.
Thanx,
Mike Steiner
HI Tsvetelina,
I didn't see how to define ClientSideEvents for the UltraWebGrid part of the WebCombo?
The UltraWebGrid is part of the WebCombo, not stand alone, and I could only see
<ClientSideEvents> for the Webcombo.
These ClientSIdeEvents do not expose the possibily for defining a handler for the click or the double click. In any case, I need it on the grid part of the combo, not the textbox part.
I have workaround, which is to define double click handler on the whole HTML page in which the WebCombo is a part, and then in the handler function, only deal with the double click when the element double-clicked is the combo's grid:
if
( termGrid.ActiveRow != "" )
Mike
Hello Mike,
Do you handle both CellClickHandler and DblClickHandler? :
<ClientSideEvents DblClickHandler="UltraWebGrid1_DblClickHandler"
CellClickHandler="UltraWebGrid1_CellClickHandler" />
function UltraWebGrid1_DblClickHandler(gridName, cellId){
//Add code to handle your event here.
alert(cellId + ' DblClickHandler');
}
function UltraWebGrid1_CellClickHandler(gridName, cellId, button){
alert (cellId + ' CellClickHandler');
http://forums.infragistics.com/forums/p/20240/73062.aspx#73062