-
guy
46
posts
Member since:
Sep 2010
Posted 11 Oct 2012
Link to this post
hi ,
i just upgraded the GridView to latest version and I can't to drag from GridViewDynamicHyperlinkColumn
the arrow replaced with hand and than i can't drag
from any other column i can drag
also with form vesion(from 2010)
Guy.
-
-
V
1
posts
Member since:
Dec 2012
Posted 07 Jan 2013
Link to this post
<telerik:GridViewDataColumn TextWrapping="Wrap" Header="Header Name" UniqueName="ID" DataMemberBinding="{Binding Id}" IsReadOnly="True">
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<HyperlinkButton Width="40" TargetName="_blank" Content="{Binding ID}" NavigateUri="{Binding Url}" IsTabStop="False"></HyperlinkButton>
</StackPanel>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
</telerik:GridViewDataColumn>
-