Dear Telerik team,
we have a RadGridView descendant, that delivers some new properties as shown in code below.
The attached images are to demonstrate the unexplicable behaviour. To generate the hint shown in the statusbar on the bottom of these images we used the following code that already uses our own indexer property:
string hint = HistoryGrid.MouseRow + " / "  +": IsProcedure = " + ((bool)HistoryGrid[HistoryGrid.MouseRow, "IsProcedure"]);internal object this[int rowIndex, string columnName] {    get { return (rowIndex >= 0) ? Rows[rowIndex].Cells[columnName].Value : null; } } protected override void OnMouseMove(MouseEventArgs e) {    base.OnMouseMove(e);    object currentCell = ElementTree.GetElementAtPoint(e.Location);    if (currentCell is GridDataCellElement)    {       var cell = currentCell as GridDataCellElement;       MouseRow = cell.RowIndex;       MouseColumn = cell.ColumnIndex;    }    else if (currentCell is GridGroupExpanderCellElement)    {       var cell = currentCell as GridGroupExpanderCellElement;       MouseRow = cell.RowIndex;       MouseColumn = -1;    }    else if (currentCell is GridExpanderItem)    {       MouseColumn = -1;     }    else   {       MouseRow = -1;       MouseColumn = -1;    } } 


hi,
how can i add text to a command button in a radgridview row?
        AddHandler RadGridDocuments.CommandCellClick, AddressOf RadGridDocuments_CommandCellClick
        Dim commandColumn As GridViewCommandColumn = New GridViewCommandColumn()
        commandColumn.HeaderText = "Command"
        commandColumn.Width = 100
        commandColumn.DataField = "PersonID"
        Me.RadGridDocuments.Columns.Add(commandColumn)
thanks, andreas
I’m having problem with grid view edit functionality.
I’m trying to implement edit in a popup window. When I select a row for edit, it is giving some other row information in edit screen.
Do I need to pass the Row index or something like that to the popup?


private void _billGrid_RowFormatting(object sender, Telerik.WinControls.UI.RowFormattingEventArgs e){       if (e.RowElement.RowInfo.Index % 2 == 0)       {           e.RowElement.Font = new Font("Tahoma", 14, FontStyle.Bold);       }}

hi everyone,
I guess this question is more for the telerik.com guys....I once registered for the VisualStudio 2008 Express Edition and on the registration benefits page was a telerik rad ribbon for winforms control. Unfortunately I cannot seem to find the license terms for that control nor can I access the page to download it again. Can anyone provide me with a copy of the license terms for VS2008 Express Edition for that control? Also, does it apply for VisualStudio 2010 Express Edition?
regards,
Denis R.

