﻿<?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 - Webgrid height issue with Ajaxtoolkit Accordion </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-height-issue-with-Ajaxtoolkit-Accordion/</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>Webgrid height issue with Ajaxtoolkit Accordion </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-height-issue-with-Ajaxtoolkit-Accordion/</link><pubDate>Fri, 20 May 2016 12:48:11 GMT</pubDate><dc:creator>sjain</dc:creator><description>Hi Erwin,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ajaxtoolkit Accordion issue on our pages are fixed long time. I am trying to get similar functionality from Intersoft's accordion control. I saw live examples and think that we can use its rich functionality in our some future modules. It would be really nice if you can reply on above 28th April's post !&lt;br&gt;regards&lt;br&gt;Sachin &lt;br&gt;</description></item><item><title>Webgrid height issue with Ajaxtoolkit Accordion </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-height-issue-with-Ajaxtoolkit-Accordion/</link><pubDate>Thu, 28 Apr 2016 15:32:01 GMT</pubDate><dc:creator>sjain</dc:creator><description>Hi Erwin,&lt;br&gt; Thanks for the sample. Our requirement demands dynamic adding of webgrids which number is known only at run time depending upon some conditions. Please, use my provided ajax sample as reference. I am facing problem in adding dynamic grid in WebAccordionItem. &lt;br&gt;I tried to get reference from http://developer.intersoftsolutions.com/display/WebUI/WebAccordion ; but could not get. May be I overlooked. &lt;br&gt;In ajax control , the way I used to add new pane was like this &lt;br&gt;AccordionPane SectionPane = new AccordionPane();&lt;br&gt;...&lt;br&gt;...&lt;br&gt;SectionPane.ContentContainer.Controls.Add(DynamicGrid);&lt;br&gt;&lt;br&gt;I believe that same functionality is available in also WebAccordion. &lt;br&gt;WebAccordionItem newItem = new WebAccordionItem();&lt;br&gt;newItem. ??? &amp;nbsp; &amp;nbsp; // I could not find a way to add dynamic grid.&lt;br&gt;&lt;br&gt;I downloaded earlier chm file for webgrid which helped me to understand webgrid. I forgot that from which link I downloaded that. Is such chm file also exist for WebAccordion ; if it exists then please share the link.&lt;br&gt;&lt;br&gt;Thanks again for your sample.&lt;br&gt;regards&lt;br&gt;Sachin&lt;br&gt;&lt;br&gt;&amp;nbsp;&lt;br&gt;&lt;br&gt;</description></item><item><title>Webgrid height issue with Ajaxtoolkit Accordion </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-height-issue-with-Ajaxtoolkit-Accordion/</link><pubDate>Wed, 27 Apr 2016 07:11:50 GMT</pubDate><dc:creator>erwinintersoft</dc:creator><description>&lt;p&gt;Hello Sachin,&lt;/p&gt;&lt;p&gt;Here I made a sample for you in which you can add a new accordion item. If you want to add the grid inside the accordion item, I suggest that you use an IFrame for such case. Call the webform with a QueryString to show the desired grid. Hope this helps.&lt;/p&gt;&lt;p&gt;Best Regards,&lt;br&gt;Erwin Sanders&lt;/p&gt;</description></item><item><title>Webgrid height issue with Ajaxtoolkit Accordion </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-height-issue-with-Ajaxtoolkit-Accordion/</link><pubDate>Tue, 26 Apr 2016 13:59:55 GMT</pubDate><dc:creator>sjain</dc:creator><description>Hi Erwin, &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I liked live samples of WebAccordian.&amp;nbsp; I am considering to use WebAccordion; but stuck on adding dynamic panes with dynamic grid inside it. Can you suggest some sample ! We checked intersoft both samples (with unified themes and other one) but could not see any such sample. May be I overlooked some sample. &lt;br&gt;I am eager to implement it.&lt;br&gt;regards&lt;br&gt;Sachin&lt;br&gt;</description></item><item><title>Webgrid height issue with Ajaxtoolkit Accordion </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-height-issue-with-Ajaxtoolkit-Accordion/</link><pubDate>Wed, 23 Mar 2016 03:01:31 GMT</pubDate><dc:creator>erwinintersoft</dc:creator><description>&lt;p&gt;Hi Sachin,&lt;/p&gt;&lt;p&gt;Thank you for the screenshots. Actually this issue can be resolved by calling wgDoresize(true, true) method after the accordion is clicked, however I think there's no way for the ajaxToolkit to do that (correct me if i'm wrong). Since you bought our WebUI Studio, have you considered using our WebAccordion instead?&lt;/p&gt;&lt;p&gt;Anyway, if you still insist on using the ajaxToolKit, add the following code to the Page_Load event.&lt;/p&gt;&lt;pre&gt;ClientScript.RegisterStartupScript(this.GetType(), "init", "" +    "window.addEventListener(\"load\", function(){ " +
    "var pane = document.querySelectorAll(\".accordionHeader\");" +
    "for (var i = 0; i &amp;lt; pane.length; i++)" +
    "{" +
    "pane[i].addEventListener(\"click\", function(){" +
    "setTimeout(function(){wgDoResize(true, true);},300); }, false); " +
    "} " +
    "}, false);" +
    "", true);&lt;/pre&gt;&lt;p&gt;In my opinion, this isn't exactly the best practice as it forced an additional event to the accordion, but it does the job.&lt;/p&gt;&lt;p&gt;Best Regards,&lt;br&gt;Erwin Sanders&lt;/p&gt;</description></item><item><title>Webgrid height issue with Ajaxtoolkit Accordion </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-height-issue-with-Ajaxtoolkit-Accordion/</link><pubDate>Tue, 22 Mar 2016 11:36:40 GMT</pubDate><dc:creator>sjain</dc:creator><description>&lt;p&gt;Hi Erwin,&lt;br&gt; As per your suggestion I removed AutoHeight property from Dynamic Grid and changed DynamicGrid Height same as panel ie, 450 px. &lt;br&gt;Now issues are nearly same as earlier&lt;br&gt;First Grid height is proper. But third grid height is not proper; although it has 12 rows but its height is somehow adjusted like second grid which has 1 row only. Rest of grid's height are also not proper. &lt;br&gt;&lt;br&gt;I am attaching modified sample and screenshot of pages . &lt;br&gt;&lt;br&gt;regards&lt;br&gt;Sachin &lt;br&gt;&lt;/p&gt;</description></item><item><title>Webgrid height issue with Ajaxtoolkit Accordion </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-height-issue-with-Ajaxtoolkit-Accordion/</link><pubDate>Mon, 21 Mar 2016 10:27:36 GMT</pubDate><dc:creator>erwinintersoft</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I've taken a look at your sample, it just need a little adjustment to make the height working properly. Just remove AutoHeight property that you set on server side, then using your 1st approach, change DynamicGrid Height value the same as your&amp;nbsp;GridContainerPanel Height which is&amp;nbsp;Unit.Pixel(450);&lt;/p&gt;&lt;p&gt;Now all your WebGrid height should work the way it should be.&lt;/p&gt;&lt;p&gt;*AutoHeight property specifies whether WebGrid will calculate its height automatically based on available page’s height.&lt;/p&gt;&lt;p&gt;Hope this helps.&lt;/p&gt;&lt;p&gt;Best Regards,&lt;br&gt;Erwin Sanders&lt;/p&gt;</description></item><item><title>Webgrid height issue with Ajaxtoolkit Accordion </title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-height-issue-with-Ajaxtoolkit-Accordion/</link><pubDate>Fri, 18 Mar 2016 13:17:50 GMT</pubDate><dc:creator>sjain</dc:creator><description>&lt;p&gt;Hi,&lt;br&gt; We are using Webgrid 10 with Ajaxtoolkit Accordion. The height of webgrid is not working properly. I created a sample page using Northwind database with seven section pane using different number of rows in table. I also tried 3 different ways to tackle grid height issue. Please, see that what need to do to fix the height issue. We used IE browser 10 , 11 normal and comp mode to check but height issue was present in all versions.&lt;br&gt;Sample contains aspx, aspx.cs and sample css file.&lt;br&gt;&lt;br&gt;regards&lt;br&gt;Sachin&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>