User Profile & Activity

Erwin Sanders Member
Page
of 11

Hi Sachin,

I found a way to get the clicked cell type whether it's Filter Row or not. Use GetRowByElement method with a cellElm parameter to get the grid's cell type. Here's the function code that i use.

function WebGrid1_OnCellClick(controlId, tblName, rowIdx, cellIdx, cellElm) {    var obj = ISGetObject(controlId).GetRowByElement(cellElm);

    if (obj.Type == "FilterRow") {
        alert("This is Filter Row");
    } else {
        alert("This is not Filter Row");
    }
}

 

Hope this helps.

 

Hi Dimitris,

I tried to replicate your issue on a sample project but unfortunately the problem didn't occur. What I couldn't figure out was how you managed to show the calendar button on the left side. I attached my sample here for you to try out.

Feel free to evaluate the sample, and if the problem occurs, you could send me your code for me to evaluate. Hope this helps.

All times are GMT -5. The time now is 4:38 PM.
Previous Next