<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Modify index.html to Set Tab Order in G Web Development Software</title>
    <link>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4322600#M613</link>
    <description>&lt;P&gt;Awesome, that's good to hear. Sounds like you have an approach for the current application you are working on. Some thoughts for others who may have similar questions around configuring tab order in G Web:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;The editor does not expose settings to configure the tab order and the controls don't have great tab focus indicators as has been seen in this thread. This is a feature gap in G Web.&lt;/LI&gt;
&lt;LI&gt;Consider using Flexible Layout Panels instead of Absolute Layout Panels. For Flexible layout panels the DOM order (and therefore tab order) is important for the layout system and controlled by the editor so you are more likely to have a tab order that is "reasonable", i.e. ordered as the content flows visually on the page. Flexible Layout panels also tend to be more user friendly as they can be designed to respond to various screen sizes just via configuration in the editor.&lt;/LI&gt;
&lt;LI&gt;If you need a way to reference a control from the "HTML Context", i.e. from CSS, JS, or generated .html files, prefer using the &lt;FONT face="courier new,courier"&gt;HTML class attribute&lt;/FONT&gt; feature. There is not a guarantee that the generated &lt;FONT face="courier new,courier"&gt;ni-control-id&lt;/FONT&gt; you see in HTML is stable (that controls will always have the same &lt;FONT face="courier new,courier"&gt;ni-control-id&lt;/FONT&gt; after placing on a panel the first time).&lt;BR /&gt;&lt;BR /&gt;Note: In early versions of LabVIEW NXG Web Module the &lt;FONT face="courier new,courier"&gt;ni-control-id&lt;/FONT&gt; was shown in the editor as a way to reference controls. This is no longer a stable identifier or shown in the editor and leveraging &lt;FONT face="courier new,courier"&gt;HTML class attribute&lt;/FONT&gt; should be done instead.&lt;BR /&gt;&lt;BR /&gt;Potentially relevant sidenote, you can define multiple classes in the field by space separating them:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MilanR_0-1691789654148.png" style="width: 400px;"&gt;&lt;img src="https://ip1.i.lithium.com/d958701a859933ea14d198a4ea1490a7d567bb4d/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f33323138313469383343333342383439444444333431452f696d6167652d73697a652f6d656469756d3f763d76322670783d343030" role="button" title="MilanR_0-1691789654148.png" alt="MilanR_0-1691789654148.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;LI&gt;I would not recommend trying to manually configure &lt;FONT face="courier new,courier"&gt;&lt;A href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex" target="_self"&gt;tabindex&lt;/A&gt;&lt;/FONT&gt; values on the controls in the generated HTML. The controls manipulate &lt;FONT face="courier new,courier"&gt;tabindex&lt;/FONT&gt; values programmatically for certain interactions and overriding them manually may have unintended behavior (beyond being pretty difficult to maintain globally with lots of controls).&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 11 Aug 2023 22:00:59 GMT</pubDate>
    <dc:creator>MilanR</dc:creator>
    <dc:date>2023-08-11T22:00:59Z</dc:date>
    <item>
      <title>Modify index.html to Set Tab Order</title>
      <link>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4321417#M608</link>
      <description>&lt;P&gt;I am looking for suggestions and feedback regarding methods for setting the tabbing order of controls on a *.gviweb page.&amp;nbsp; From my brief research it appears I will need to modify the html file generated by G Web post build to achieve the desired result.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;NOTE: I am a long time LabVIEW developer, where this task is simple, but new to G Web.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;NOTE: I am also not an experienced webpage designer.&amp;nbsp; &amp;nbsp;&lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":astonished_face:"&gt;😲&lt;/span&gt;&amp;nbsp; &amp;nbsp;Yet!&amp;nbsp;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are there other/better options to address tabbing order of controls in G Web?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Next, I am considering the addition (insertion) of a form to specify the tabindex of controls on the page.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;&amp;lt;form&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field 1 (first tab selection):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input type="text" name="field1"&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;tabindex=1&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;/&amp;gt;&amp;lt;br /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field 2 (third tab selection):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input type="text" name="field2"&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;tabindex=3&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;/&amp;gt;&amp;lt;br /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field 3 (second tab selection):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input type="text" name="field3"&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;tabindex=2&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;/&amp;gt;&amp;lt;br /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;/form&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;example html from &lt;A title="How to Control Tab Order in HTML" href="https://webcheatsheet.com/html/controll_tab_order.php" target="_blank" rel="noopener"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I have read concerns about this using this method and creating a mismatch between this defined order and that inferred from the DOM.&amp;nbsp; So, would it be better to just sort the generated html code to correct the tabbing order?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am hoping to create a solution that can be implemented for pages with a handful of control or ones with nested tabs and hundreds of controls.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance for your feedback.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;James&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 16:31:49 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4321417#M608</guid>
      <dc:creator>James@Home</dc:creator>
      <dc:date>2023-08-07T16:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Modify index.html to Set Tab Order</title>
      <link>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4322034#M609</link>
      <description>&lt;P&gt;An update on a method to solve updating tabbing order.&lt;/P&gt;
&lt;P&gt;I decided to try sorting the existing lines instead of adding a new form with &lt;STRONG&gt;tabindex&lt;/STRONG&gt; values.&lt;/P&gt;
&lt;P&gt;The HTML generated creates a couple of lines for each control and they are not in any recognizable order.&amp;nbsp; The order might be based upon the order they were created, but I’m uncertain as I was not the original creator of the code.&amp;nbsp; The attached file illustrates the Initial and Sorted versions of a small section that illustrates the changes to the HTML file for a desired tab order.&lt;/P&gt;
&lt;P&gt;For this editing the html file is converted to an array of &lt;STRONG&gt;Lines&lt;/STRONG&gt; at the start and back to a string when completed and rewriting the file.&lt;/P&gt;
&lt;P&gt;The details of this solution are not universal but provide an outline for one solution.&lt;/P&gt;
&lt;P&gt;The control names follow a standard convention with a text description, an underscore and a number.&lt;BR /&gt;For examples:&amp;nbsp; ao-alias_1, ao-unit_1, ao-raw-min_1, ao-raw-max_1&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Create an array of names for the desired sort order, which doesn't need to be the full name if they are unique [alias, unit, raw-min, raw-max] ensuring to keep the portion immediately preceding the underscore for simplified pattern matching.&lt;/LI&gt;
&lt;LI&gt;Read the html file and convert it to a &lt;STRONG&gt;Lines&lt;/STRONG&gt; array.&lt;/LI&gt;
&lt;LI&gt;Located the section of the html containing the controls that need a tab order adjustment.&amp;nbsp; For my project, this involved finding a main tab, then a specific tab, then another tab structure and 3 named tabs of interest.&amp;nbsp; Each of these tabs with its own set of controls and control names to reorder.&amp;nbsp; Some handy pattern matching text that help me search for and isolate the desired lines include:
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;&amp;lt;ni-tab-control[~*]+&amp;gt; &amp;amp; &amp;lt;/ni-tab-control&amp;gt;&lt;/LI&gt;
&lt;LI&gt;&amp;lt;ni-tab-item[~*]+&amp;gt; &amp;amp; &amp;lt;/ni-tab-item&amp;gt;&lt;/LI&gt;
&lt;LI&gt;&amp;lt;ni-layout-panel[~*]+&amp;gt; &amp;amp; &amp;lt;/ni-layout-panel&amp;gt;&amp;lt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Search the desired section of &lt;STRONG&gt;Lines&lt;/STRONG&gt; return ALL the lines beginning with &amp;lt;ni-label ... &amp;gt;. &lt;BR /&gt;I used Match Pattern and &lt;STRONG&gt;&amp;lt;ni-label class[~*]+&amp;gt;&lt;/STRONG&gt; for my match pattern.&lt;BR /&gt;Return arrays line number and text.&lt;/LI&gt;
&lt;LI&gt;Search the array for control &lt;EM&gt;name_number&lt;/EM&gt; combination and find the &lt;STRONG&gt;ni-control-id='117&lt;/STRONG&gt;’ associated with each control.&amp;nbsp; Build arrays of the controls and associated ID values.&amp;nbsp; For me this was a 2D array for each control name and number combination.&lt;/LI&gt;
&lt;LI&gt;Sort the &lt;STRONG&gt;ni-control-id&lt;/STRONG&gt; values based upon the desired tabbing order.&amp;nbsp; For this project there were rows of controls for each number.&amp;nbsp; A simple modification to processing the 2D array allowed for easily switching between ordering IDs to tab by rows or columns.&lt;/LI&gt;
&lt;LI&gt;Once you have the ID order in a 1D array
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;Extract (Get Array Subset) lines from the &lt;STRONG&gt;Lines&lt;/STRONG&gt; array (keep index and length).&lt;/LI&gt;
&lt;LI&gt;Loop to find each control line the ID in &lt;STRONG&gt;label-id=’##’&lt;/STRONG&gt; and build into an array.&lt;/LI&gt;
&lt;LI&gt;Loop to find each label line the ID contained in &lt;STRONG&gt;ni-control-id='##&lt;/STRONG&gt;’ and append to array.&lt;/LI&gt;
&lt;LI&gt;Keep track of the &lt;STRONG&gt;Lines&lt;/STRONG&gt; found in both loops.&lt;BR /&gt;Delete these lines from the initial section Lines array.&lt;BR /&gt;Build an array appending the remaining lines to the Lines built in the previous loops.&lt;BR /&gt;N&lt;STRONG&gt;ote&lt;/STRONG&gt;: the length of the new &lt;STRONG&gt;Lines&lt;/STRONG&gt; array section should equal that of the extracted section.&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Insert the new array into the &lt;STRONG&gt;Lines&lt;/STRONG&gt; array at the original index for the extracted section.&lt;/LI&gt;
&lt;LI&gt;Convert the &lt;STRONG&gt;Lines&lt;/STRONG&gt; array back to text and write to file.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;After testing this process by FTPing modified html files to the CRIO, a prebuild VI was modified to locate these file paths and perform the sorting of the html files.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt;&amp;nbsp; These files are in a completely different hierarchy with the G Web development than the RT project and are only linked as part of a web service in the build specification.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 20:19:08 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4322034#M609</guid>
      <dc:creator>James@Home</dc:creator>
      <dc:date>2023-08-09T20:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: Modify index.html to Set Tab Order</title>
      <link>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4322340#M610</link>
      <description>&lt;P&gt;Follow-up as it is somewhat related...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have my new tabbing order working but ran into a new issue related to the appearance of controls when they get focus.&amp;nbsp; My .css file already had specifications to modify the appearance with &lt;STRONG&gt;hover:&lt;/STRONG&gt; and I wanted similar visual effects when tabbing&amp;nbsp;&lt;STRONG&gt;focus:&lt;/STRONG&gt; between the controls.&amp;nbsp; This works great for &lt;STRONG&gt;Type:&lt;/STRONG&gt; &lt;FONT color="#0000FF"&gt;String&lt;/FONT&gt;, &lt;FONT color="#0000FF"&gt;Numeric Text&lt;/FONT&gt; &amp;amp; &lt;FONT color="#0000FF"&gt;Button&lt;/FONT&gt;, however, not with &lt;FONT color="#0000FF"&gt;LED&lt;/FONT&gt;.&lt;/P&gt;
&lt;P&gt;Even though I can tab to and past the column of LED controls, I cannot get any styles to apply to the LED.&amp;nbsp; &amp;nbsp;I can verify the focus is on the LED by pressing the space bar to toggle its value.&lt;/P&gt;
&lt;P&gt;Does anyone know if the LED Type is excluded by design from accepting focus?&lt;/P&gt;
&lt;P&gt;I have also tried &lt;STRONG&gt;focus-visible:&lt;/STRONG&gt; with the same results.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for any suggestions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;James&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS. I'd hate to restart by setting up a tabindex for all controls because of an issue with LED Type.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2023 19:36:24 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4322340#M610</guid>
      <dc:creator>James@Home</dc:creator>
      <dc:date>2023-08-10T19:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Modify index.html to Set Tab Order</title>
      <link>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4322372#M611</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;Even though I can tab to and past the column of LED controls, I cannot get any styles to apply to the LED. [...] I have also tried &lt;STRONG&gt;focus-visible:&lt;/STRONG&gt; with the same results.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Maybe &lt;FONT face="courier new,courier"&gt;&lt;A href="https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within" target="_self"&gt;:focus-within&lt;/A&gt;&lt;/FONT&gt; would help?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2023 21:27:05 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4322372#M611</guid>
      <dc:creator>MilanR</dc:creator>
      <dc:date>2023-08-10T21:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: Modify index.html to Set Tab Order</title>
      <link>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4322497#M612</link>
      <description>&lt;P&gt;Thank you &lt;STRONG&gt;Milan&lt;/STRONG&gt; for prompting me to try this!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had read about &lt;STRONG&gt;:focus-within&lt;/STRONG&gt; and mistakenly discarded the idea based upon a description I read &lt;A href="https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within" target="_blank" rel="noopener"&gt;here&lt;/A&gt;!&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It was the solution I needed for this stubborn control.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;James&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 13:41:26 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4322497#M612</guid>
      <dc:creator>James@Home</dc:creator>
      <dc:date>2023-08-11T13:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Modify index.html to Set Tab Order</title>
      <link>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4322600#M613</link>
      <description>&lt;P&gt;Awesome, that's good to hear. Sounds like you have an approach for the current application you are working on. Some thoughts for others who may have similar questions around configuring tab order in G Web:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;The editor does not expose settings to configure the tab order and the controls don't have great tab focus indicators as has been seen in this thread. This is a feature gap in G Web.&lt;/LI&gt;
&lt;LI&gt;Consider using Flexible Layout Panels instead of Absolute Layout Panels. For Flexible layout panels the DOM order (and therefore tab order) is important for the layout system and controlled by the editor so you are more likely to have a tab order that is "reasonable", i.e. ordered as the content flows visually on the page. Flexible Layout panels also tend to be more user friendly as they can be designed to respond to various screen sizes just via configuration in the editor.&lt;/LI&gt;
&lt;LI&gt;If you need a way to reference a control from the "HTML Context", i.e. from CSS, JS, or generated .html files, prefer using the &lt;FONT face="courier new,courier"&gt;HTML class attribute&lt;/FONT&gt; feature. There is not a guarantee that the generated &lt;FONT face="courier new,courier"&gt;ni-control-id&lt;/FONT&gt; you see in HTML is stable (that controls will always have the same &lt;FONT face="courier new,courier"&gt;ni-control-id&lt;/FONT&gt; after placing on a panel the first time).&lt;BR /&gt;&lt;BR /&gt;Note: In early versions of LabVIEW NXG Web Module the &lt;FONT face="courier new,courier"&gt;ni-control-id&lt;/FONT&gt; was shown in the editor as a way to reference controls. This is no longer a stable identifier or shown in the editor and leveraging &lt;FONT face="courier new,courier"&gt;HTML class attribute&lt;/FONT&gt; should be done instead.&lt;BR /&gt;&lt;BR /&gt;Potentially relevant sidenote, you can define multiple classes in the field by space separating them:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MilanR_0-1691789654148.png" style="width: 400px;"&gt;&lt;img src="https://ip1.i.lithium.com/d958701a859933ea14d198a4ea1490a7d567bb4d/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f33323138313469383343333342383439444444333431452f696d6167652d73697a652f6d656469756d3f763d76322670783d343030" role="button" title="MilanR_0-1691789654148.png" alt="MilanR_0-1691789654148.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;LI&gt;I would not recommend trying to manually configure &lt;FONT face="courier new,courier"&gt;&lt;A href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex" target="_self"&gt;tabindex&lt;/A&gt;&lt;/FONT&gt; values on the controls in the generated HTML. The controls manipulate &lt;FONT face="courier new,courier"&gt;tabindex&lt;/FONT&gt; values programmatically for certain interactions and overriding them manually may have unintended behavior (beyond being pretty difficult to maintain globally with lots of controls).&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 22:00:59 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4322600#M613</guid>
      <dc:creator>MilanR</dc:creator>
      <dc:date>2023-08-11T22:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: Modify index.html to Set Tab Order</title>
      <link>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4323665#M616</link>
      <description>&lt;P&gt;Milan,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the additional feedback and suggestions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For the current G Web capabilities, sorting the HTML provided a better solution than letting the editor control tabbing order.&amp;nbsp; In addition, this solution allowed me to setup a section of related controls to tab by rows and another section to tab by columns.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;James&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 15:59:08 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/G-Web-Development-Software/Modify-index-html-to-Set-Tab-Order/m-p/4323665#M616</guid>
      <dc:creator>James@Home</dc:creator>
      <dc:date>2023-08-17T15:59:08Z</dc:date>
    </item>
  </channel>
</rss>

