In my grid I have set ShowGroupPanel to true and under ClientSetting AllowDragToGroup is also set to true. In my grid I have simple templete which contains Hyperlink. I want to disable AllowDragToGroup for this column. Is that possible?
You can easily disable the grouping for any particular column by checking with the ColumnUniqueName in OnCommand client event of grid. Here is the example.
javascript:
<script type="text/javascript">
function OnCommand(sender, args) {
if (args.get_commandName() == "GroupByColumn" && args.get_commandArgument() == "TempColumnUniqueName") {