I am wanting to track the time it takes a user to begin the edit process when they click on a edit button (ImageButtonEdit) in a editCommandColumn,
This is the eqatec code I want to inject on the server side via register script when the button is clicked...
// Tracking timing
g._eqatecmonitor.trackFeatureStart("SomeLongOperation");
When they click on the save command.. I want to insert the stop monitoring code..
someLongOperation();
g._eqatecmonitor.trackFeatureStop("SomeLongOperation");
Has anyone done this? I am using the eqatec javascript side of this to track client behavior, not the server side options.
This is the eqatec code I want to inject on the server side via register script when the button is clicked...
// Tracking timing
g._eqatecmonitor.trackFeatureStart("SomeLongOperation");
When they click on the save command.. I want to insert the stop monitoring code..
someLongOperation();
g._eqatecmonitor.trackFeatureStop("SomeLongOperation");
Has anyone done this? I am using the eqatec javascript side of this to track client behavior, not the server side options.
01.<Columns>02. <telerik:GridTemplateColumn UniqueName="EditCommandColumn" AllowFiltering="false">03. <ItemTemplate>04. <div style="width: 50px">05. <asp:ImageButton ID="ImageButtonEdit" runat="server" CommandName="Edit" ImageUrl='<%# string.Format("~/App_Themes/{0}/Grid/Edit.gif", Page.Theme) %>'06. AlternateText="Edit" ToolTip="Edit" />07. 08. <asp:ImageButton ID="ImageButtonDuplicate" runat="server" CommandName="Duplicate"09. ImageUrl='<%# string.Format("~/App_Themes/{0}/Images/Copy_16.gif", Page.Theme) %>'10. AlternateText="Duplicate" ToolTip="Duplicate" />11. </div>12. </ItemTemplate>13. <ItemStyle HorizontalAlign="Center" />14. </telerik:GridTemplateColumn>