This is a migrated thread and some comments may be shown as answers.

Tooltip for DragImageUrl in GridDragDropColumn

3 Answers 95 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Alex
Top achievements
Rank 1
Alex asked on 16 Jun 2011, 06:50 PM
There appears to be a HeaderTooltip and FilterImageTooltip, but nothing for an the DragImageUrl.  Is there some workaround or plans on adding this?

3 Answers, 1 is accepted

Sort by
0
Marin
Telerik team
answered on 17 Jun 2011, 02:08 PM
Hello Alex,

 Currently we do not have plans for implementing such property but you can easily achieve this by handling the ItemCreated event and finding there the appropriate control for which to set tooltip:

protected void grdPendingOrders_ItemCreated(object sender, GridItemEventArgs e)
        {
            GridDataItem dataItem = e.Item as GridDataItem;
            if (dataItem!=null)
            {
                (dataItem["dragDropColumn"].Controls[0] as System.Web.UI.WebControls.WebControl).ToolTip = "some tooltip";
            }
        }

Best wishes,
Marin
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

0
Alex
Top achievements
Rank 1
answered on 17 Jun 2011, 02:47 PM
Wow, that's really hard to believe that you would support HeaderTooltip for HeaderImageUrl and FilterImageTooltip for FilterImageUrl, but nothing for DragImageUrl.  Where can I request that this feature be added?

Alex
0
Marin
Telerik team
answered on 17 Jun 2011, 04:09 PM
Hi Alex,

 I have logged your request in our issue tracking system - PITS. There you can vote and comment on the issue. It takes some time to be processed by the system so it is not publicly visible yet.

Greetings,
Marin
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
Grid
Asked by
Alex
Top achievements
Rank 1
Answers by
Marin
Telerik team
Alex
Top achievements
Rank 1
Share this question
or