<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet href="http://www.activewidgets.com/site/rss/list.xsl" type="text/xsl" media="screen"?>
<rss version="2.0">
	<channel>
		<title>ActiveWidgets Forum - All messages</title>
		<link>http://www.activewidgets.com/messages/</link>
		<feed>http://www.activewidgets.com/messages/all.rss</feed>
		<description>This RSS feed contains latest messages from ActiveWidgets support forum (all sections).</description>
		<language>en-us</language>
		<ttl>60</ttl>

		<image>
			<title>ActiveWidgets Forum - All messages</title>
			<url>http://www.activewidgets.com/common/images/logo.png</url>
			<link>http://www.activewidgets.com/messages/</link>
			<width>230</width>
			<height>35</height>
		</image>


	
		<item>
			<title>Android Support? (3)</title>
			<description><![CDATA[Alex,<br />
<br />
It's not that ICS isn't popular, I'm sure everyone with a droid device would love to have it.  Carriers and manufactures are being SLOW to implement ICS.<br />
<br />
Most new handsets on the market are 2.3.x, and yes, most tablets are at least 3.0.<br />
<br />
When a new IOs is released, apple controls the software and hardware, so everyone gets updated.<br />
<br />
When google releases anew droid version, the manufactures (HTC, Samsung, etc) still have to tweak the release to work with specific hardware and carrier configurations. Handset models that aren't made anymore probably won't be updated, some old droids are stuck on 1.5/1.6.<br />
<br />
As long as you write AW to work with at least 2.1, everything 2.1 forward will work, and that's going to be the bulk of all handsets still on the market today.<br />
<br />
Just my $.02<br />
<br />
<br />
<br />
]]></description>
			<pubDate>Wed, 23 May 2012 17:13:10 -0400</pubDate>
			<link>http://www.activewidgets.com/javascript.forum.27187.3/android-support.html</link>
			<author>BradB</author>
			<subject>Android Support?</subject>
		</item>

	
		<item>
			<title>Repeated column resizeing stuck on Firefox 11 (7)</title>
			<description><![CDATA[With latest AW 2.6.0, after 10 tries or so resizing columns, I hit this problem in Google Chrome as well. Added <code class='aw-code-block'><span class="aw-code-1">AW</span><span class="aw-code-2">.</span><span class="aw-code-1">chrome&nbsp;</span>
</code>also to the list (from CK's workaround) and it seems to have fixed the problem.<br />
<br />
Alex can you confirm if this is right fix? If this will be fixed in a future release?]]></description>
			<pubDate>Tue, 22 May 2012 17:21:56 -0400</pubDate>
			<link>http://www.activewidgets.com/javascript.forum.27179.7/repeated-column-resizeing-stuck-on.html</link>
			<author>SV</author>
			<subject>Repeated column resizeing stuck on Firefox 11</subject>
		</item>

	
		<item>
			<title>How does virtual rendering set the font while repainting? (1)</title>
			<description><![CDATA[When you change something directly at the DOM level - the changes will be lost during scrolling because AW destroys the rows which are no longer visible and re-creates them when you scroll back. Always change classes/styles/attributes using AW API and not directly on the html elements -<br />
<code class='aw-code-block'><span class="aw-code-1">grid</span><span class="aw-code-2">.</span><span class="aw-code-1">getRow</span><span class="aw-code-2">(</span><span class="aw-code-1">1</span><span class="aw-code-2">).</span><span class="aw-code-1">setStyle</span><span class="aw-code-2">(</span><span class="aw-code-3">'background'</span><span class="aw-code-2">,&nbsp;</span><span class="aw-code-3">'red'</span><span class="aw-code-2">);<br />&nbsp;</span><span class="aw-code-1"></span>
</code>]]></description>
			<pubDate>Tue, 22 May 2012 11:28:56 -0400</pubDate>
			<link>http://www.activewidgets.com/javascript.forum.27222.1/how-does-virtual-rendering-set.html</link>
			<author>Alex (ActiveWidgets)</author>
			<subject>How does virtual rendering set the font while repainting?</subject>
		</item>

	
		<item>
			<title>How does virtual rendering set the font while repainting? (0)</title>
			<description><![CDATA[My grid returns a dataset that requires some scrolling. Lets say the initial font weight is set to bold. On row click there is a function that opens up a separate form with the details of that row. Another button brings me back to the grid. The rows I've clicked on is tracked in an array, and font weight for these rows is set to normal to distinguish them from the rest. <br />
<br />
All of this works fine up to this point. The problem is that when I scroll down the grid and it repaints, all the rows change the font weight to normal, instead of bold. I've tried all kinds of ways to sort this out, but running out of options. This worked when we used to use paging with the old (1.0) version. But transitioning to virtual rendering is messing up our css rules and I need help.<br />
<br />
Similar issue with the checked items template in the row selector. When I click on the rows initially, it shows up as checked. I scroll down, and then scroll back again, only the last checked row retains the check mark. The others show un-checked. I'm not sure why that's happening. What am I missing?]]></description>
			<pubDate>Mon, 21 May 2012 02:52:59 -0400</pubDate>
			<link>http://www.activewidgets.com/javascript.forum.27222.0/how-does-virtual-rendering-set.html</link>
			<author>Sam H</author>
			<subject>How does virtual rendering set the font while repainting?</subject>
		</item>

	
		<item>
			<title>Is there a removeClass function? (3)</title>
			<description><![CDATA[Ahhhh ... never mind. I missed out setti the index value in the getRowTemplate() function. Resolved. Thanks :-)]]></description>
			<pubDate>Wed, 16 May 2012 14:15:51 -0400</pubDate>
			<link>http://www.activewidgets.com/javascript.forum.27215.3/is-there-a-removeclass-function.html</link>
			<author>Sam H</author>
			<subject>Is there a removeClass function?</subject>
		</item>

	
		<item>
			<title>Is there a removeClass function? (2)</title>
			<description><![CDATA[Hi Alex,<br />
<br />
That helps to a certain extent. But what if I have a set two classes with the same name, but different values?<br />
<br />
obj.setClass(name,value1)<br />
obj.setClass(name,value2)<br />
<br />
In this instance using obj.setClass(name,'') will remove both classes, instead of just a specific one.<br />
<br />
Also, a problem I'm running into is that when I set the class of just the selected row to change, and then scroll down the grid when the grid repaints it changes the class of all the rows, instead of just the selected row.<br />
<br />
The CSS classes that I currently have are as shown below. I'm going to try and rework them a bit to see if I can resolve it.<br />
<br />
<br />
.aw-mode-grid {font-weight: bold;}<br />
.aw-mode-queue {font-weight: normal;}<br />
<br />
.aw-mode-queue.aw-qselected-true {font-weight: bold;}<br />
.aw-mode-queue.aw-qselected-false {font-weight: normal;}<br />
.aw-mode-grid.aw-gselected-true {font-weight: normal; font-style: italic;}]]></description>
			<pubDate>Wed, 16 May 2012 14:11:10 -0400</pubDate>
			<link>http://www.activewidgets.com/javascript.forum.27215.2/is-there-a-removeclass-function.html</link>
			<author>Sam H</author>
			<subject>Is there a removeClass function?</subject>
		</item>

	
		<item>
			<title>How to throw an alert after Grid is loaded? (1)</title>
			<description><![CDATA[You can overwrite the response method in XML/CSV request -<br />
<br />
<a href="http://www.activewidgets.com/aw.http.request/response.html" target="_new">http://www.activewidgets.com/aw.http.request/response.html</a><br />
]]></description>
			<pubDate>Wed, 16 May 2012 09:07:26 -0400</pubDate>
			<link>http://www.activewidgets.com/javascript.forum.27209.1/how-to-throw-an-alert.html</link>
			<author>Alex (ActiveWidgets)</author>
			<subject>How to throw an alert after Grid is loaded?</subject>
		</item>

	
		<item>
			<title>Is there a removeClass function? (1)</title>
			<description><![CDATA[Calling obj.setClass(name, value) adds CSS class 'aw-name-value'.<br />
Calling the same method with empty string as value obj.setClass(name, '') removes it.]]></description>
			<pubDate>Wed, 16 May 2012 09:05:27 -0400</pubDate>
			<link>http://www.activewidgets.com/javascript.forum.27215.1/is-there-a-removeclass-function.html</link>
			<author>Alex (ActiveWidgets)</author>
			<subject>Is there a removeClass function?</subject>
		</item>

	
		<item>
			<title>Repeated column resizeing stuck on Firefox 11 (6)</title>
			<description><![CDATA[Works for me, too. Thanks for your post!]]></description>
			<pubDate>Wed, 16 May 2012 08:59:49 -0400</pubDate>
			<link>http://www.activewidgets.com/javascript.forum.27179.6/repeated-column-resizeing-stuck-on.html</link>
			<author>Andy</author>
			<subject>Repeated column resizeing stuck on Firefox 11</subject>
		</item>

	
		<item>
			<title>Dynamic row height in 2.6 (1)</title>
			<description><![CDATA[Yes, in AW 2.6 all grid rows must have the same height.]]></description>
			<pubDate>Wed, 16 May 2012 08:58:43 -0400</pubDate>
			<link>http://www.activewidgets.com/javascript.forum.27213.1/dynamic-row-height-in-2.html</link>
			<author>Alex (ActiveWidgets)</author>
			<subject>Dynamic row height in 2.6</subject>
		</item>

	
	</channel>
</rss>


