or
<ClientEvents OnRowDblClick="RowDblClick" />function RowDblClick(sender, eventArgs) { document.getElementById('<%= editJourneyButton.ClientID %>').click(); }<asp:LinkButton ID="editJourneyButton" OnClick="editJourneyButton_Click" runat="server" CssClass="btn btn-inverse" Text="Edit selected"><i class="fa fa-edit"></i> Edit Selected</asp:LinkButton> protected void editJourneyButton_Click(object sender, EventArgs e)<br> {<br><br> ErrorList.Items.Clear();<br><br> if (journeysGrid.SelectedItems.Count == 0)<br> {<br> ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "noItemSelected", "noItemSelected();", true);<br> }<br> else<br> {<br> GridDataItem selectedItem = (GridDataItem)journeysGrid.SelectedItems[0];<br> TravelFormUC.resetForm();<br> TravelFormUC.refHiddenField.Value = selectedItem.GetDataKeyValue("journeyId").ToString();<br> TravelFormUC.setupForm();<br> ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "showClaimPopup", "showClaimPopup();", true);<br> }function showClaimPopup() {<br> $('#modal-claimform').modal('show')<br> }


<MarkersAppearance MarkersType="Triangle" BackgroundColor="blue" Size="8" BorderColor="blue" BorderWidth="2"></MarkersAppearance><SeriesItems> <telerik:CategorySeriesItem Y="1"></telerik:CategorySeriesItem> <telerik:CategorySeriesItem Y="2"></telerik:CategorySeriesItem> <telerik:CategorySeriesItem Y="3" BackgroundColor="red" MarkersType="Circle"></telerik:CategorySeriesItem> <telerik:CategorySeriesItem Y="4"></telerik:CategorySeriesItem></SeriesItems>