﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebGrid Enterprise - Grid Height Not Covering the Page </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Grid-Height-Not-Covering-the-Page/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Grid Height Not Covering the Page </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Grid-Height-Not-Covering-the-Page/</link><pubDate>Mon, 02 Mar 2015 06:53:12 GMT</pubDate><dc:creator>devashish</dc:creator><category>WebGrid</category><category>Height</category><description>&lt;div&gt;Hi Jitendra&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;As Yudi said use the DoResize() method on Grid resize, I am doing the same on window resize as shown below. But you have to trigger the javascript code I have given in my last post every time you resize the window.&lt;/div&gt;&lt;div&gt;&lt;pre&gt;if(window.addEventListener)window.addEventListener('resize', ResizeWindow, false);
else if(window.attachEvent)
window.attachEvent('onresize', ResizeWindow);&lt;/pre&gt;&lt;p&gt;Where ResizeWindow will calls the DoResize() and the code in my last post.&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;Please do take Yudi's help more than me as he can always get in touch with developer's.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description></item><item><title>Grid Height Not Covering the Page </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Grid-Height-Not-Covering-the-Page/</link><pubDate>Mon, 02 Mar 2015 03:57:38 GMT</pubDate><dc:creator>yudi@intersoftpt.com</dc:creator><category>WebGrid</category><category>Height</category><description>&lt;blockquote&gt;... But it is creating problem on Chrome on resizing. Footer is not showing which I am using after Grid section.&lt;/blockquote&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Try to set the Height and Width property of WebGrid to 100% instead of enabling AutoHeight and/or AutoWidth. If this still doesn't help, you can try to invoke DoResize() method of WebGrid when the grid is resized.&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;function OnResize()
{
	var WebGrid1 = ISGetObject("WebGrid1");
	wgDoResize(true, true);
	return true;
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Please feel free to let us know whether this helps or not.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Grid Height Not Covering the Page </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Grid-Height-Not-Covering-the-Page/</link><pubDate>Fri, 27 Feb 2015 16:11:58 GMT</pubDate><dc:creator>Jitendra</dc:creator><category>WebGrid</category><category>Height</category><description>&lt;p&gt;Hi Dev,&lt;/p&gt;&lt;p&gt;I am using version 9.0&lt;/p&gt;&lt;p&gt;I am facing the same issue and able to fix the height as full screen by above mentioned applied CSS. But it is creating problem on Chrome on resizing. Footer is not showing which I am using after Grid section.&lt;/p&gt;&lt;p&gt;I am thinking that your solution with dynamic height using Javascript mentioned above will work for me. Could you please give me the detail script implementation with the calculation of Child node.&lt;/p&gt;&lt;p&gt;OR&lt;/p&gt;&lt;p&gt;Is there any way so that I can remove the Vertical scrollbar. To set AutoHeight = "True", it is taking full height as per Grid contents but it is not working same for IE7. Solution for this would be more usefull for me.&lt;/p&gt;&lt;p&gt;Appreciate your response.&lt;/p&gt;&lt;p&gt;Regards,&lt;/p&gt;&lt;p&gt;Jitendra&lt;/p&gt;</description></item><item><title>Grid Height Not Covering the Page </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Grid-Height-Not-Covering-the-Page/</link><pubDate>Thu, 13 Mar 2014 22:25:26 GMT</pubDate><dc:creator>yudi</dc:creator><category>WebGrid</category><category>Height</category><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Glad to hear that the JavaScript function in OnLoad event helps.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Should you need further assistance or run into any problems regarding our controls, feel free to post it into our forum. We would be happy to assist you again.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Grid Height Not Covering the Page </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Grid-Height-Not-Covering-the-Page/</link><pubDate>Thu, 13 Mar 2014 05:40:34 GMT</pubDate><dc:creator>devashish</dc:creator><category>WebGrid</category><category>Height</category><description>&lt;p style="margin: 7.5pt 0in;"&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;Hi Yudi,&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin: 7.5pt 0in;"&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;Sorry for delay in reply.&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;I tried you code. It’s still not working according to
requirement.&lt;o:p /&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;I have written a JavaScript function OnLoad event which is
changing the grid table height dynamically to fix this problem.&lt;/p&gt;&lt;pre&gt;var grid = ISGetObject(controlId);
var divRootTableEl = GetRootTableElement(controlId);
divRootTableEl.style.height = grid.parentElement.clientHeight – siblingHeight(grid)&amp;#43; "px";
&lt;/pre&gt;
&lt;p&gt; Where siblingHeight() calculates the height of other elements under grid parent division.  &lt;/p&gt;</description></item><item><title>Grid Height Not Covering the Page </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Grid-Height-Not-Covering-the-Page/</link><pubDate>Mon, 10 Mar 2014 22:47:52 GMT</pubDate><dc:creator>yudi</dc:creator><category>WebGrid</category><category>Height</category><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I uploaded my simple sample in &lt;a href="http://1drv.ms/1cLaU6y" target="_blank"&gt;http://1drv.ms/1cLaU6y&lt;/a&gt;. Within the FullHeightWebGrid.zip file, I added the snapshots which show how the sample page is rendered in various browsers. Everything worked smoothly and I was unable to reproduce the “footer/status bar is not visible” problem.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Please have the sample evaluated at your end and let me know if you have different result.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;For your information, I’m using WebGrid 8 build 256 and WebUI.NET Framework 3.0 build 910.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Grid Height Not Covering the Page </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Grid-Height-Not-Covering-the-Page/</link><pubDate>Mon, 10 Mar 2014 01:21:23 GMT</pubDate><dc:creator>devashish</dc:creator><category>WebGrid</category><category>Height</category><description>&lt;p&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;Hi Yudi,&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;I tried removing scroll-y CSS class but now the footer/status bar
is not visible.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;And I am not able to upload images here. No matter how many times I tried the result is same.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'lucida sans unicode', sans-serif;"&gt;Regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'lucida sans unicode', sans-serif;"&gt;Dev&lt;/span&gt;&lt;/p&gt;&lt;img src="http://www.intersoftpt.com/Community/Attachments/3909/Capture.JPG" style="height: 255px; width: 436px;" /&gt;</description></item><item><title>Grid Height Not Covering the Page </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Grid-Height-Not-Covering-the-Page/</link><pubDate>Sun, 09 Mar 2014 22:25:26 GMT</pubDate><dc:creator>yudi</dc:creator><category>WebGrid</category><category>Height</category><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I have my grid to show 830 rows and I found that if I removes the scroll-y css class from the div element which wrap the WebGrid, the ‘two scrollbar’ problem is no longer persist.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;...&amp;lt;div class="body row"&amp;gt;
    &amp;lt;ISWebGrid:WebGrid ID="WebGrid1" runat="server" ...&amp;gt;
        ...
    &amp;lt;/ISWebGrid:WebGrid&amp;gt;
&amp;lt;/div&amp;gt;
...&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Grid Height Not Covering the Page </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Grid-Height-Not-Covering-the-Page/</link><pubDate>Fri, 07 Mar 2014 02:40:42 GMT</pubDate><dc:creator>devashish</dc:creator><category>WebGrid</category><category>Height</category><description>&lt;p&gt;Hi Yudi,&lt;/p&gt;&lt;p&gt;Any Updates?&lt;/p&gt;</description></item><item><title>Grid Height Not Covering the Page </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Grid-Height-Not-Covering-the-Page/</link><pubDate>Wed, 05 Mar 2014 20:03:54 GMT</pubDate><dc:creator>yudi</dc:creator><category>WebGrid</category><category>Height</category><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Thank you for the prompt reply.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I will have this forwarded to the WebGrid development team to be investigated further. I will keep you updated with any news from the team regarding this.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Grid Height Not Covering the Page </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Grid-Height-Not-Covering-the-Page/</link><pubDate>Sun, 02 Mar 2014 01:57:32 GMT</pubDate><dc:creator>devashish</dc:creator><category>WebGrid</category><category>Height</category><description>&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 10pt; font-family: cambria, serif;"&gt;Hi,&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 10pt; font-family: cambria, serif;"&gt;I am
facing problem with grid height not covering the page i.e. I am not able to get
the footer at the bottom of the page.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 10pt; font-family: cambria, serif;"&gt;If I
give the Parent div height as 100% the grid takes the height of the parent and
neglect the header then it exceeds the page where footer becomes hidden.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 10pt; font-family: cambria, serif;"&gt;If I
don’t give any height to parent the footer sticks with last row in the table.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 10pt; font-family: cambria, serif;"&gt;AutoHeight
attribute of the WebGrid does not seems to work.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 10pt; font-family: cambria, serif;"&gt;I am using doctype HTML5 in IE 10 and IE 11.&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 10pt; font-family: cambria, serif;"&gt;Regards,&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;











&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 10pt; font-family: cambria, serif;"&gt;Dev&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;b&gt;&lt;span style="font-size: 12.5pt; font-family: consolas;"&gt;With Parent DIV having height equal to 100% &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: maroon; background-color: white;"&gt;div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="test"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;b&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: yellow;"&gt;style&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: yellow;"&gt;="&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: yellow;"&gt;height&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: yellow;"&gt;: 100%"&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: maroon; background-color: white;"&gt;ISWebGrid&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;:&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: maroon; background-color: white;"&gt;WebGrid&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;ID&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="AvailableGrid"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;runat&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="server"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;RenderingMode&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="HTML5"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;DefaultStyleMode&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="Elegant"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;Height&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="100%"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;UseDefaultStyle&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="True"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;Width&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="100%"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;DataSourceID&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="AccessDataSource1"&amp;gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="font-size: 12.5pt; font-family: consolas;"&gt;Without Parent DIV having height equal to 100%&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif;"&gt;&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: maroon; background-color: white;"&gt;div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="test"&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: maroon; background-color: white;"&gt;ISWebGrid&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;:&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: maroon; background-color: white;"&gt;WebGrid&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;ID&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="AvailableGrid"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;runat&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="server"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;RenderingMode&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="HTML5"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;DefaultStyleMode&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="Elegant"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;Height&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="100%"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;UseDefaultStyle&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="True"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;Width&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="100%"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 7.5pt 0in 0.0001pt;"&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: red; background-color: white;"&gt;DataSourceID&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: consolas; color: blue; background-color: white;"&gt;="AccessDataSource1"&amp;gt;&lt;/span&gt;&lt;b style="font-size: 10pt;"&gt;&lt;span style="font-size: 12.5pt; font-family: consolas;"&gt; &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;</description></item></channel></rss>