This extension allows better navigation in ASPX pages. It extends the goto definition (thank you Microsoft and Noah Richards) functionality by adding a goto Event name for ASPX, a goto Event for Direct Events in Ext.Net and a goto Javascript for listeners in Ext.Net. TO use, install, then in an ASPX, or ASCX file, hold ctrl down with mouse on an OnClick event, On directevent, or a Listener Handler/FN, and when clicked, it should move to that location. Ctrl - (or Navigate back) will take the cursor back. Features in ASP and ASP with EXT.NET Controls:
<asp:Button ID="btnProcess" runat="server" Text="Process Records" OnClick="btnProcess_onclick" />or<DirectEvents> <Click OnEvent="btnUpdateAuthCC_Click" /> </DirectEvents> and it will jump you to that function in either C# or VB. If you hold down in an EXT.NET Handler, or FN (such as following): <Listeners> <Change Handler="updateTotal(#{gpeInvDet},#{gpeInvFooter});" /> </Listeners> it will jump you to the javascript var updateTotal = function (grid, gridfooter) { cs = grid.view.getColumnData(); Typing Cntl - will jump you back. I couldn't find any tools to do this, and I found I spent alot of time navigating throughout code. This is a timesaver for me, and I hope it works for you. Please provide feedback as applicable.
Change log Version 1.1.0
|