More code formatting options

Page 2 of 2 FirstFirst 12
  1. #11
    Line numbering is back.
    Geoffrey McGill
    Founder
  2. #12
    In addition to line-numbering returning, we've introduced a new optional line-highlighting feature.

    You can highlight one line, or multiple lines by specifying a range. Examples include:

    Highlight line #8:

    [CODE=8]

    Highlight line #8 & #13:


    [CODE=8,13]

    Highlight line #27-31:

    [CODE=27-31]

    Highlight line #8, #13 and #27-31:

    [CODE=8,13,27-31]

    The line-highlighting can be used with both [CODE] and [HTML] tags.

    <%@ Page Language="C#" %>

    <script runat="server">
    protected void Button1_Click(object sender, DirectEventArgs e)
    {
    var msg = "Hello World";

    var info = new Info().Configure(new InfoPanel
    {
    Html = msg
    });

    info.Show();
    }
    </script>

    <!DOCTYPE html>

    <html>
    <head runat="server">
    <title>Ext.NET Example</title>
    </head>
    <body>
    <form runat="server">
    <ext:ResourceManager runat="server" />

    <ext:Button
    runat="server"
    Text="Submit"
    OnDirectClick="Button1_Click"
    />
    </form>
    </body>
    </html>
    Last edited by geoffrey.mcgill; Feb 08, 2015 at 10:25 PM.
    Geoffrey McGill
    Founder
Page 2 of 2 FirstFirst 12

Similar Threads

  1. [CLOSED] EXT.NET MVC Razor view Code Formatting tool
    By matrixwebtech in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Feb 20, 2018, 7:11 PM
  2. [CLOSED] How to get store's last applied options in Ext.NET 3
    By anup in forum 3.x Legacy Premium Help
    Replies: 3
    Last Post: Dec 24, 2014, 11:54 AM
  3. Search options forum
    By CarWise in forum Open Discussions
    Replies: 2
    Last Post: Sep 13, 2012, 6:47 AM
  4. More options for Cookie Provider?
    By knave in forum 1.x Help
    Replies: 1
    Last Post: Sep 17, 2011, 10:34 AM
  5. Store.getRowsValue(options)
    By sonnt in forum 1.x Help
    Replies: 1
    Last Post: Jun 23, 2009, 3:56 AM

Posting Permissions