telerik does not respond to customers.
telerik has a score of 0 for customer response.
why is telerik no customer service?
there is a function that the customer does not know when using telerik.
telerik is inconvenient to use.
Please answer the question anna posted on the telerik forum.
anna continues to wait for a reply.
====
RadGrid I want to automatically get the coordinates of Row and Column when the mouse cursor is placed on the Cell of RadGrid.
Attached File : ex.png
telerik:RadGrid (ASP.NET Web)
I want to get the header name of the column clicked by the user with the mouse.
<ClientSettings EnablePostBackOnRowClick="true">
<Selecting AllowRowSelect="true" />
</ClientSettings>
protected void RadGrid1_SelectedIndexChanged(object sender, EventArgs e)
{
var dataItem = gv.SelectedItems[0] as GridDataItem;
if (dataItem != null)
{
var name = dataItem["ColUniqueName"].Text;
}
}
The above source code is not what I want.
Because the user specified ColUniqueName .
I want to automatically get the coordinates of Row and Column&Column HeaderName when the mouse cursor is placed on the Cell of RadGrid.
It is Example Of FarPoint Spread.
private void fpSpread1_CellClick(object sender, FarPoint.Win.Spread.CellClickEventArgs e)
{
string strTag = fpSpread1.Sheets[0].Columns[e.Column].DataField.ToString();
}
In FarPoint Spread, There is automatically get the coordinates of Row and Column&Column Header Name when the mouse cursor is placed on the Cell of FarPoint Spread.