I'm using a context menu to call an async callback using ajaxManager ...
... but the clicked item is keeping selected. Removing the ajaxRequest, everything works as expected.
How can I cancel the selected the item on context menu?
[]'s,
Henrique
| <telerik:RadContextMenu ID="contextMenu" runat="server" Skin="Hay" OnClientItemClicked="ItemClicked" Style="top: 164px; left: 11px"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| <Items> |
| <telerik:RadMenuItem Text="Igual" Value="Igual" PostBack="False"> |
| </telerik:RadMenuItem> |
| <telerik:RadMenuItem Text="Contém" Value="Contém" PostBack="False"> |
| </telerik:RadMenuItem> |
| </Items> |
| </telerik:RadContextMenu> |
| <script type="text/javascript"> |
| function ItemClicked(sender, args) |
| { |
| $find("ajaxManager").ajaxRequestWithTarget("bFiltro", ""); |
| } |
| </script> |
... but the clicked item is keeping selected. Removing the ajaxRequest, everything works as expected.
How can I cancel the selected the item on context menu?
[]'s,
Henrique