<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Wakanda Forum</title>
		<link>http://forum.wakanda.org/</link>
		<description>This is a discussion forum.</description>
		<language>en</language>
		<lastBuildDate>Thu, 23 May 2013 17:52:51 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forum.wakanda.org/images/misc/rss.png</url>
			<title>Wakanda Forum</title>
			<link>http://forum.wakanda.org/</link>
		</image>
		<item>
			<title>difference between datastore class method and RPC concerning entity collection</title>
			<link>http://forum.wakanda.org/showthread.php?4793-difference-between-datastore-class-method-and-RPC-concerning-entity-collection&amp;goto=newpost</link>
			<pubDate>Thu, 23 May 2013 14:06:38 GMT</pubDate>
			<description>When I call Datastore class method I get an object (EntityCollection) but when I call RPC Module I get an Array! 
The problem is that I can’t use...</description>
			<content:encoded><![CDATA[<div>When I call Datastore class method I get an object (EntityCollection) but when I call RPC Module I get an Array!<br />
The problem is that I can’t use this returned array in Client side with setEntityCollection API to refresh my Grid.<br />
<br />
My Server Side Datastore class method: (This works fine !)<br />
collectionMethods :<br />
{<br />
 getCollection:function()<br />
 {<br />
     var all = ds.Country.all();<br />
     var currentCollection ds.Country.createEntityCollection(); <br />
     currentCollection.add(all);<br />
     return currentCollection;<br />
 },<br />
}<br />
<br />
My Server Side RPC Module (I get just a Array and NOT entity collection object !)<br />
exports.getCountryCollection = function (){<br />
	var all = ds.Country.all();<br />
	<br />
	var currentCollection = ds.Country.createEntityCollection(); <br />
	currentCollection.add(all);<br />
	return currentCollection;<br />
}<br />
<br />
My client side Code -  Datastore class method :<br />
<br />
 WAF.sources.country.getCollection({<br />
	        onSuccess: function(evt) {<br />
	        	debugger;<br />
	                WAF.sources.country.setEntityCollection(evt.result  );  <br />
	        },<br />
	        onError: function (error) {<br />
        		debugger;<br />
         		console.log(&quot;Error: USR.testAsync&quot;);<br />
      		}<br />
  });<br />
<br />
My client side Code -  RPC method :<br />
USR.getCountryCollectionAsync({<br />
			'onSuccess': function (e) {<br />
				debugger;<br />
				WAF.sources.country.setEntityCollection(e);  <br />
			},<br />
			'onError': function (error) {<br />
				debugger;<br />
				console.log(&quot;Error&quot;);<br />
			}						<br />
		});<br />
<br />
Wakand documentaion shows only datastore class method and any RPC call exemple !<br />
<br />
Perhaps I am misunderstanding the difference concerning Datastore class method and RPC method as the same code don’t return the same result.<br />
<br />
Any help, advise and insights would be greatly appreciated. Thank you!</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?14-Tech-Tips-amp-Workarounds"><![CDATA[Tech Tips & Workarounds]]></category>
			<dc:creator>kepmen</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4793-difference-between-datastore-class-method-and-RPC-concerning-entity-collection</guid>
		</item>
		<item>
			<title>question about client-side callback function</title>
			<link>http://forum.wakanda.org/showthread.php?4792-question-about-client-side-callback-function&amp;goto=newpost</link>
			<pubDate>Thu, 23 May 2013 09:22:00 GMT</pubDate>
			<description>This is about entityCollection.query() in client-side. Recently, when I use this function in my project, I feel very confused about the execution...</description>
			<content:encoded><![CDATA[<div>This is about entityCollection.query() in client-side. Recently, when I use this function in my project, I feel very confused about the execution sequence of its callback function.As show below:<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2734"  title="Name:  
Views: 
Size:  ">Attachment 2734</a><br />
myShops is an entityCollection, and it does contain several entities. But every time the judgement below shows the length is 0. When I debug it, I see the code in onSuccess{} is always executed afterwards, after all subsequent code, so the variable items certainly isn't assigned before the judgement statement. Why? How can I control the the callback function's executing sequence to make the following judgement statement meaningful?</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/png.gif" alt="File Type: png" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2734&amp;d=1369300364" target="_blank">QQ&#25130;&#22270;20130523171017.png&lrm;</a> 
(8.7 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>begincolor</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4792-question-about-client-side-callback-function</guid>
		</item>
		<item>
			<title>Word wrap option for all widgets</title>
			<link>http://forum.wakanda.org/showthread.php?4791-Word-wrap-option-for-all-widgets&amp;goto=newpost</link>
			<pubDate>Thu, 23 May 2013 02:28:00 GMT</pubDate>
			<description>I need CSS {word-wrap: normal} property for every gadget and its part with text data. 
 
For example, if a column in a grid has a long name (such as...</description>
			<content:encoded><![CDATA[<div>I need CSS {word-wrap: normal} property for every gadget and its part with text data.<br />
<br />
For example, if a column in a grid has a long name (such as &quot;first assigned status&quot;) but the data is 1 byte, I want to display the column title in 3 lines like<br />
<br />
first<br />
assigned<br />
status<br />
<br />
If there is a Text style option &quot;Word Wrap&quot; in the &quot;Styles&quot; tab of a grid design, it will be very convenient to do such customization.<br />
<br />
Of course if I want to display long text (such as 100 bytes of text) in a column with 30 bytes width, this new option is quite useful.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?6-Feature-Requests">Feature Requests</category>
			<dc:creator>kunichan2013</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4791-Word-wrap-option-for-all-widgets</guid>
		</item>
		<item>
			<title>How is the Tech note about generating pdf report using Jasper report going?</title>
			<link>http://forum.wakanda.org/showthread.php?4790-How-is-the-Tech-note-about-generating-pdf-report-using-Jasper-report-going&amp;goto=newpost</link>
			<pubDate>Wed, 22 May 2013 20:44:22 GMT</pubDate>
			<description>Hi, Wakanda Team, 
 
Saad Mousliki mentioned a Tech Note about using a third party (Jasper report) and a system worker to create PDF report in this...</description>
			<content:encoded><![CDATA[<div>Hi, Wakanda Team,<br />
<br />
Saad Mousliki mentioned a Tech Note about using a third party (Jasper report) and a system worker to create PDF report in this thread (<a href="http://forum.wakanda.org/showthread.php?4066-Anyone-know-if-wak5-will-get-generate-PDF-build-in-and-good-report-component&amp;highlight=jasper+report" target="_blank">http://forum.wakanda.org/showthread....=jasper+report</a>) .<br />
<br />
I am wondering when will the tech note be released? thx<br />
<br />
Cheers</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>wei</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4790-How-is-the-Tech-note-about-generating-pdf-report-using-Jasper-report-going</guid>
		</item>
		<item>
			<title>Solved Slider - WAF-Error</title>
			<link>http://forum.wakanda.org/showthread.php?4788-Slider-WAF-Error&amp;goto=newpost</link>
			<pubDate>Wed, 22 May 2013 15:40:39 GMT</pubDate>
			<description>Hi, 
 
since some days (?) I cannot use the slider widget. I can simply reproduce this issue with a newly created solution and only one slider widget...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
since some days (?) I cannot use the slider widget. I can simply reproduce this issue with a newly created solution and only one slider widget on the page. The WAF throws following error in line 36703 of waf-optimizie:<br />
<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">Uncaught TypeError: Cannot call method 'done' of undefined</code><hr />
</div> <br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp;  * Create jquery ui slider depending on the platform<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  */<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $.extend(that._sliderConfig, {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; create: function(event, ui) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (WAF.onAllScriptsLoaded !== null) {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WAF.onAllScriptsLoaded.done(function() {<br />
Uncaught TypeError: Cannot call method 'done' of undefined<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $(htmlObject).trigger('slidecreate');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  });</code><hr />
</div> <br />
Wakanda 4 build 4.132351<br />
Mac OS 10.8.3<br />
<br />
Regards Ronald</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>Ronald Pfitzer</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4788-Slider-WAF-Error</guid>
		</item>
		<item>
			<title>German number input with comma</title>
			<link>http://forum.wakanda.org/showthread.php?4786-German-number-input-with-comma&amp;goto=newpost</link>
			<pubDate>Wed, 22 May 2013 08:25:18 GMT</pubDate>
			<description><![CDATA[In the grid my number data was display in german style. 
I have set the number format of the data cell to "###,###.00". 
In german browsers he...]]></description>
			<content:encoded><![CDATA[<div>In the grid my number data was display in german style.<br />
I have set the number format of the data cell to &quot;###,###.00&quot;.<br />
In german browsers he displays a number correct like this 123,56 (US-Browser displays 123.56)<br />
<br />
If i want to input a number with comma (,) as decimal point, he ignore the rest of the Input:<br />
<br />
Input 123,56 -&gt; Displays 123<br />
<br />
Only the point (.) as decimal point works:<br />
<br />
Input 123.56 -&gt; Displays 123,56<br />
<br />
Is it possible to change this settings?<br />
I think many No-US-Users need this.<br />
<br />
Thanks</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>gmu</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4786-German-number-input-with-comma</guid>
		</item>
		<item>
			<title>Matrix onChildrenDraw event is not activated</title>
			<link>http://forum.wakanda.org/showthread.php?4785-Matrix-onChildrenDraw-event-is-not-activated&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 22:38:51 GMT</pubDate>
			<description>According to forum, this bug has fixed from previous versions. But on the last production version, it does not activates during the load of form.</description>
			<content:encoded><![CDATA[<div>According to forum, this bug has fixed from previous versions. But on the last production version, it does not activates during the load of form.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>avac2005</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4785-Matrix-onChildrenDraw-event-is-not-activated</guid>
		</item>
		<item>
			<title><![CDATA[Solved How to pass "this" to relation attribute in a entity method ?]]></title>
			<link>http://forum.wakanda.org/showthread.php?4783-How-to-pass-quot-this-quot-to-relation-attribute-in-a-entity-method&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 08:27:39 GMT</pubDate>
			<description><![CDATA[hi everyone, 
 
This is the class graph: 
[ATTACH=CONFIG]2732[/ATTACH] 
 
As you can see below, this is a a Entity method belong to a Class Farmer 
...]]></description>
			<content:encoded><![CDATA[<div>hi everyone,<br />
<br />
This is the class graph:<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2732"  title="Name:  
Views: 
Size:  ">Attachment 2732</a><br />
<br />
As you can see below, this is a a Entity method belong to a Class Farmer<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">buy:function()<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; mySet =&nbsp; ds.Weapon.query('power &gt; 30');&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; mySet.forEach<br />
&nbsp; &nbsp; &nbsp; &nbsp; (<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; function(good) <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; good.farmer = this;&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; );<br />
},</code><hr />
</div> In the testing file, I initialized the entity farmer, and excuted <br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"> <br />
farmer.buy();</code><hr />
</div> I wanna pass <div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">this</code><hr />
</div>   as the entity to the relation attribute farmer, but I failed.<br />
<br />
During the debugging, everything worked well except the<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"> good.farmer = this;</code><hr />
</div> I checked the watchers in the Debugger,  as the following pic<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2733"  title="Name:  
Views: 
Size:  ">Attachment 2733</a><br />
<br />
Could anyone give some tips?<br />
<br />
Thx.<br />
<br />
Best regards,</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2732&amp;d=1369124588" target="_blank">111.jpg&lrm;</a> 
(84.1 KB)
</li> <li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2733&amp;d=1369124780" target="_blank">QQ&#25340;&#38899;&#25130;&#22270;&#26410;&#21629;&#21517;.jpg&lrm;</a> 
(16.9 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>bonjourscott</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4783-How-to-pass-quot-this-quot-to-relation-attribute-in-a-entity-method</guid>
		</item>
		<item>
			<title><![CDATA[Unable to Create Project: Wakanda v 4.132351 & OSX 10.6]]></title>
			<link>http://forum.wakanda.org/showthread.php?4781-Unable-to-Create-Project-Wakanda-v-4.132351-amp-OSX-10.6&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 02:33:01 GMT</pubDate>
			<description>I am testing Wakanda v 4.132351 with OSX 10.6.8 for the first time. Trying to follow the start up guide. 
 
Installing it from scratch, I have copied...</description>
			<content:encoded><![CDATA[<div>I am testing Wakanda v 4.132351 with OSX 10.6.8 for the first time. Trying to follow the start up guide.<br />
<br />
Installing it from scratch, I have copied applications like this : /Applications/Wakanda Server.app<br />
and /Applications/Wakanda Studio.app.<br />
<br />
I am unable to create a New Project. Menu and icon stay grey.<br />
This is a new installation I can't have done anything wrong, is this a bug or do I have forgot anything ?<br />
<br />
One more, I can't open Wakanda Preferences. Nothing happens when I select the preferences menu.<br />
<br />
For both case, I tried to erase ALL Wakanda Server and Studio files in ~/Library/Application Support and re-run, but observe no change.<br />
<br />
Thanks for help.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>nutsoa</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4781-Unable-to-Create-Project-Wakanda-v-4.132351-amp-OSX-10.6</guid>
		</item>
		<item>
			<title><![CDATA[Learn Wakanda while you code and make the IDE 10x's more useful]]></title>
			<link>http://forum.wakanda.org/showthread.php?4780-Learn-Wakanda-while-you-code-and-make-the-IDE-10x-s-more-useful&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 01:03:43 GMT</pubDate>
			<description><![CDATA[In the explorer pane (or another pane), don't just list project files: 
 
- have nodes for all of Wakanda's API's (and even for Javascript) 
- list...]]></description>
			<content:encoded><![CDATA[<div>In the explorer pane (or another pane), don't just list project files:<br />
<br />
- have nodes for all of Wakanda's API's (and even for Javascript)<br />
- list all available functions<br />
- tooltips for everything summarizing node|function<br />
- fast way to move selected function over to cursor position in code editor<br />
- fast way to move example code for selected function over to cursor position in code editor<br />
<br />
Say I forget how to select the next record. Instead of digging around in the docs I peruse the Wakanda api nodes...see &quot;datasources&quot;...see &quot;selectNext&quot;...see the tooltip for selectNext...say to myself: &quot;lets try this one&quot;...hit &quot;move function over&quot; -- and it's in my code.<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2731"  title="Name:  
Views: 
Size:  ">Attachment 2731</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2731&amp;d=1369098135" target="_blank">inline api explorer.jpg&lrm;</a> 
(12.3 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?6-Feature-Requests">Feature Requests</category>
			<dc:creator>Tut</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4780-Learn-Wakanda-while-you-code-and-make-the-IDE-10x-s-more-useful</guid>
		</item>
		<item>
			<title>Code editor JSDocs</title>
			<link>http://forum.wakanda.org/showthread.php?4779-Code-editor-JSDocs&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 00:47:04 GMT</pubDate>
			<description><![CDATA[Some code editor features we're really used to and miss in Wakanda: 
 
1- Error detection based on JSDocs (also allows for very powerful...]]></description>
			<content:encoded><![CDATA[<div>Some code editor features we're really used to and miss in Wakanda:<br />
<br />
1- Error detection based on JSDocs (also allows for very powerful refactoring):<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2729"  title="Name:  
Views: 
Size:  ">Attachment 2729</a><br />
<br />
2- Code completion and hinting from JSDocs:<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2730"  title="Name:  
Views: 
Size:  ">Attachment 2730</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2729&amp;d=1369096917" target="_blank">error detection with jsdocs.jpg&lrm;</a> 
(20.2 KB)
</li> <li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2730&amp;d=1369096971" target="_blank">code completion and hinting.jpg&lrm;</a> 
(17.4 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?6-Feature-Requests">Feature Requests</category>
			<dc:creator>Tut</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4779-Code-editor-JSDocs</guid>
		</item>
		<item>
			<title>something about entityCollection</title>
			<link>http://forum.wakanda.org/showthread.php?4776-something-about-entityCollection&amp;goto=newpost</link>
			<pubDate>Mon, 20 May 2013 02:49:35 GMT</pubDate>
			<description><![CDATA[I find that an entityCollection can only add entities which already existed in the database. If I just add a new instance, it doesn' work. 
part of...]]></description>
			<content:encoded><![CDATA[<div>I find that an entityCollection can only add entities which already existed in the database. If I just add a new instance, it doesn' work.<br />
part of my code is like this:<br />
<br />
var bags =ds.Bag.createEntityCollection();<br />
var bag=new ds.Bag({<br />
					name:&quot;knife&quot;,<br />
					quantity:2<br />
					});<br />
bags.add(bag);<br />
bags.length;<br />
<br />
The console shows nothing.<br />
but if I add the save(),it works:<br />
<br />
var bags =ds.Bag.createEntityCollection();<br />
var bag=new ds.Bag({<br />
					name:&quot;knife&quot;,<br />
					quantity:2<br />
					});<br />
<font color="#0000FF"><b>bag.save();</b></font><br />
bags.add(bag);<br />
bags.length;<br />
<br />
The console shows &quot;1&quot;.<br />
<br />
I've no idea why we have to add an persisted data into a collection, rather than just add a temporary entity?<br />
I think it is not good to always persist unnecessary data before I use them. Hope someone could give me the answer.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>begincolor</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4776-something-about-entityCollection</guid>
		</item>
		<item>
			<title>is v4 directory buggy with includes groups?</title>
			<link>http://forum.wakanda.org/showthread.php?4774-is-v4-directory-buggy-with-includes-groups&amp;goto=newpost</link>
			<pubDate>Sun, 19 May 2013 16:46:56 GMT</pubDate>
			<description>Attachment 2719 (http://forum.wakanda.org/attachment.php?attachmentid=2719) 
 
I got 2 users. 
admin/admin and test/test 
Admin group is needed for...</description>
			<content:encoded><![CDATA[<div><a href="http://forum.wakanda.org/attachment.php?attachmentid=2719"  title="Name:  
Views: 
Size:  ">Attachment 2719</a><br />
<br />
I got 2 users.<br />
admin/admin and test/test<br />
Admin group is needed for doing anything in the class<br />
User admin is part of group admin<br />
And user test is part of the other group that includes admin.<br />
<br />
For me to be able to do anything my test user needs to be part of admin group, and this makes no sense, or admin group needs to include the other group.<br />
<br />
Should it no be enough that my other group to inludes admin group, and get admin permission too?<br />
And if no users if part of admin group, then the database do not use any permission at all, it's wide open.</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2719&amp;d=1368981786">Untitled.zip&lrm;</a> 
(1.02 MB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4774-is-v4-directory-buggy-with-includes-groups</guid>
		</item>
		<item>
			<title>cannot create entity from a inherited class</title>
			<link>http://forum.wakanda.org/showthread.php?4773-cannot-create-entity-from-a-inherited-class&amp;goto=newpost</link>
			<pubDate>Sun, 19 May 2013 14:45:11 GMT</pubDate>
			<description>Hi everyone, 
 
I got a problem in creating entity from a inherited class. 
 
As you can see, there are two classes, the Weapon inherits from...</description>
			<content:encoded><![CDATA[<div>Hi everyone,<br />
<br />
I got a problem in creating entity from a inherited class.<br />
<br />
As you can see, there are two classes, the Weapon inherits from Weapon_model.<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2718"  title="Name:  
Views: 
Size:  ">Attachment 2718</a><br />
<br />
I was trying to create a Weapon entity in a testing page:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">var buy = ds.Weapon.createEntity();<br />
<br />
buy.id = 20;<br />
buy.type = &quot;fork&quot;;<br />
buy.power = 100;<br />
buy.hit_ratio = 100;<br />
buy.hit_per_second = 1;<br />
buy.price = 100 ;<br />
<br />
buy.save();<br />
<br />
var typeName = buy1.getDataClass().getName();</code><hr />
</div> It return no errors, but when I check the Data Browser, I could only find this entity was in the Weapon_model table...I am confused....<br />
<br />
Could anyone figure out the reason?<br />
<br />
regards,</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2718&amp;d=1368974065" target="_blank">QQ&#25340;&#38899;&#25130;&#22270;&#26410;&#21629;&#21517;.jpg&lrm;</a> 
(41.1 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>bonjourscott</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4773-cannot-create-entity-from-a-inherited-class</guid>
		</item>
		<item>
			<title>Integrating workflow engines with Wakanda</title>
			<link>http://forum.wakanda.org/showthread.php?4772-Integrating-workflow-engines-with-Wakanda&amp;goto=newpost</link>
			<pubDate>Sun, 19 May 2013 05:48:45 GMT</pubDate>
			<description>Hello, 
 
is it possible to integrate workflow engines with Wakanda server side? 
 
More generally, is it possible to utilize libraries written in...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
is it possible to integrate workflow engines with Wakanda server side?<br />
<br />
More generally, is it possible to utilize libraries written in e.g. Java?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>tiari</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4772-Integrating-workflow-engines-with-Wakanda</guid>
		</item>
		<item>
			<title>How to know that a user is disconnected</title>
			<link>http://forum.wakanda.org/showthread.php?4771-How-to-know-that-a-user-is-disconnected&amp;goto=newpost</link>
			<pubDate>Sat, 18 May 2013 15:23:21 GMT</pubDate>
			<description>Hello, 
 
I need help to know the best solution to know if an user is disconnected because he closes his browser or he closes the page. 
 
I am using...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I need help to know the best solution to know if an user is disconnected because he closes his browser or he closes the page.<br />
<br />
I am using Wakanda to make two multiplayer web games and his important to handle the user deconnection.<br />
<br />
Thanks for your answers and sorry for my english, I am French.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>alexis85</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4771-How-to-know-that-a-user-is-disconnected</guid>
		</item>
		<item>
			<title>wrong doc of EntityCollection.add()</title>
			<link>http://forum.wakanda.org/showthread.php?4770-wrong-doc-of-EntityCollection.add()&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 18:55:35 GMT</pubDate>
			<description>I think the doc to EntityCollection.add() is wrong. The original collection does not change, instead a new collection is returned.</description>
			<content:encoded><![CDATA[<div>I think the doc to EntityCollection.add() is wrong. The original collection does not change, instead a new collection is returned.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?15-Documentation">Documentation</category>
			<dc:creator>Patrick.Poetschke</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4770-wrong-doc-of-EntityCollection.add()</guid>
		</item>
		<item>
			<title>Notes in Model APIs (v5).</title>
			<link>http://forum.wakanda.org/showthread.php?4769-Notes-in-Model-APIs-(v5).&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 12:45:59 GMT</pubDate>
			<description><![CDATA[1) 
Is it possible to add "notes" into the option of the "Attribute()" and "DataClass()" constructor? 
Now it is impossible to have notes creating...]]></description>
			<content:encoded><![CDATA[<div>1)<br />
Is it possible to add &quot;notes&quot; into the option of the &quot;Attribute()&quot; and &quot;DataClass()&quot; constructor?<br />
Now it is impossible to have notes creating the model via APIs.<br />
I think that the model APIs have to give us the choose to manage all the properties of the model visible into the gui model editor.<br />
<br />
2)<br />
I see that the notes of inherited attributes of extended classes are not displayed into the gui model editor, why?<br />
<br />
3)<br />
What do you think about the permissions?<br />
Why don't define also the permissions via APIs?<br />
<br />
Best regards.<br />
Alex.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?6-Feature-Requests">Feature Requests</category>
			<dc:creator>info@adgrade.it</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4769-Notes-in-Model-APIs-(v5).</guid>
		</item>
		<item>
			<title>Notes in Model APIs (v4 and v5).</title>
			<link>http://forum.wakanda.org/showthread.php?4768-Notes-in-Model-APIs-(v4-and-v5).&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 10:17:06 GMT</pubDate>
			<description><![CDATA[Using Model APIs (v4 and v5) I note that I can't define *notes* for Classes and Attributes created. 
I think it is missed the option "*notes*" (like...]]></description>
			<content:encoded><![CDATA[<div>Using Model APIs (v4 and v5) I note that I can't define <b>notes</b> for Classes and Attributes created.<br />
I think it is missed the option &quot;<b>notes</b>&quot; (like simpleDate, scope, limiting_length and so on...).<br />
<br />
Also, I note that in the gui model editor, there are not the notes into the properties pane of the inherited attributes of extended classes.<br />
<br />
An other observation: in the documentation v5 -&gt; &quot;attribute&quot; is missed the kind &quot;removed&quot; (used to remove an inherited attribute).<br />
<br />
Best regards.<br />
Alessandro</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>info@adgrade.it</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4768-Notes-in-Model-APIs-(v4-and-v5).</guid>
		</item>
		<item>
			<title>Any way to move widgets from one container to another ?</title>
			<link>http://forum.wakanda.org/showthread.php?4767-Any-way-to-move-widgets-from-one-container-to-another&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 09:14:10 GMT</pubDate>
			<description><![CDATA[Is there some way to move a widget from one container / view or parent widget to another widget ? 
In Wakanda Studio, under '*Outline*' tab, I think...]]></description>
			<content:encoded><![CDATA[<div>Is there some way to move a widget from one container / view or parent widget to another widget ?<br />
In Wakanda Studio, under '<b>Outline</b>' tab, I think the widgets should be drag-able to move them to different place on page or widget container.<br />
<br />
If there is some way to move widgets, kindly suggest.<br />
<br />
Regards,<br />
Gaurav</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>gaurav</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4767-Any-way-to-move-widgets-from-one-container-to-another</guid>
		</item>
		<item>
			<title>the wakanda server increase memory on linux 32bits</title>
			<link>http://forum.wakanda.org/showthread.php?4766-the-wakanda-server-increase-memory-on-linux-32bits&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 08:23:44 GMT</pubDate>
			<description>Hi, 
I use Wakanda server version 4 and I noticed that the serveur loose lot of memories in the time, until it crashes, or that the linux kills some...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
I use Wakanda server version 4 and I noticed that the serveur loose lot of memories in the time, until it crashes, or that the linux kills some programs (Wakanda and another programs), because the system has not enough memory  to function normally.<br />
<br />
My linux version is : Linux version 3.0.3 (32bits)  (root@stim-desktop) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5.1) ) #9 SMP Tue Apr 16 13:36:45 CEST 2013 with 2Go RAM.<br />
<br />
best regards,<br />
Lionel SERVEL</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>lionel_stim</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4766-the-wakanda-server-increase-memory-on-linux-32bits</guid>
		</item>
		<item>
			<title>Roadmap - 5/15</title>
			<link>http://forum.wakanda.org/showthread.php?4765-Roadmap-5-15&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 03:12:40 GMT</pubDate>
			<description>First, was a bit surprised to see the Roadmap updated since it was stating the next update was to be 5/21 but I am glad to see it and really like the...</description>
			<content:encoded><![CDATA[<div>First, was a bit surprised to see the Roadmap updated since it was stating the next update was to be 5/21 but I am glad to see it and really like the new format.  <br />
<br />
What is really NOT nice about the roadmap is that all of the things I have been waiting for in 5 have now been pushed off to 6!  Are we really MANY months away from addressing the Widget API, theming?  Not to mention I do not even see reporting on the roadmap which is key for many.  From what I recall in one of the webinars the version release cycle is planned at about 3-4 months.  What happened?<br />
<br />
I love the tool and have been using it quite frequently.  Hate to see much needed features sliding out further.  Thanks!</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>lweidig</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4765-Roadmap-5-15</guid>
		</item>
		<item>
			<title>How to add images in data browser ?</title>
			<link>http://forum.wakanda.org/showthread.php?4764-How-to-add-images-in-data-browser&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 13:57:35 GMT</pubDate>
			<description>Hi, 
 
Can someone tell me how to add images in data browser which is accessed through Wakanda Studio ? 
I am able to add text input for but for...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Can someone tell me how to add images in data browser which is accessed through Wakanda Studio ?<br />
I am able to add text input for but for image type attribute there is no option in Data Browser to select and add image in DB.<br />
<br />
Regards,<br />
Gaurav</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>gaurav</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4764-How-to-add-images-in-data-browser</guid>
		</item>
		<item>
			<title><![CDATA[[SUGGESTION] - Suggestion to improve searching in online documentation ?]]></title>
			<link>http://forum.wakanda.org/showthread.php?4763-SUGGESTION-Suggestion-to-improve-searching-in-online-documentation&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 13:38:00 GMT</pubDate>
			<description>I think there is lot of documentation on Wakanda, but things are not easy search and find. Most of the time I do not find things n documentation...</description>
			<content:encoded><![CDATA[<div>I think there is lot of documentation on Wakanda, but things are not easy search and find. Most of the time I do not find things n documentation without fighting with it.<br />
<br />
I persoanlly like the way SmartClient has created their documentation. Its easy and quick to search. You directly find things you are looking for.<br />
<br />
Can you check below link as a reference.<br />
<a href="http://www.smartclient.com/docs/8.3/a/b/c/go.html#class..ListGrid" target="_blank">http://www.smartclient.com/docs/8.3/...lass..ListGrid</a><br />
<br />
I would appreciate if wakanda team can also brainstorm to improve the documentation from search point of view,I think most of the wakanda developers will appreciate it.<br />
<br />
Regards,<br />
Gaurav<br />
CTO at <a href="http://www.RetailEMall.com" target="_blank">www.RetailEMall.com</a></div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?15-Documentation">Documentation</category>
			<dc:creator>gaurav</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4763-SUGGESTION-Suggestion-to-improve-searching-in-online-documentation</guid>
		</item>
		<item>
			<title>How I can save,remove and create a relation attribute?</title>
			<link>http://forum.wakanda.org/showthread.php?4761-How-I-can-save-remove-and-create-a-relation-attribute&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 10:12:18 GMT</pubDate>
			<description><![CDATA[Hi all, 
 
I have two datastore classes with relationship n - 1: 
 
[ATTACH=CONFIG]2713[/ATTACH] 
 
Then show it on a form: 
...]]></description>
			<content:encoded><![CDATA[<div>Hi all,<br />
<br />
I have two datastore classes with relationship n - 1:<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2713"  title="Name:  
Views: 
Size:  ">Attachment 2713</a><br />
<br />
Then show it on a form:<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2714"  title="Name:  
Views: 
Size:  ">Attachment 2714</a><br />
<br />
<br />
I have three buttons : save,create and remove with a source &quot;usuarios&quot;.<br />
<br />
How do I save, delete and create &quot;usuarios.Entidad.Nombre&quot;,&quot;usuarios.Entidad.Apelli  do1&quot; and &quot;usuarios.Entidad.Apellido2&quot; in client-side?</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2713&amp;d=1368696260" target="_blank">Captura de pantalla 2013-05-16 a la(s) 11.15.59.jpg&lrm;</a> 
(21.3 KB)
</li> <li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2714&amp;d=1368698483" target="_blank">Captura de pantalla 2013-05-16 a la(s) 12.01.02.jpg&lrm;</a> 
(17.5 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?14-Tech-Tips-amp-Workarounds"><![CDATA[Tech Tips & Workarounds]]></category>
			<dc:creator>dsantiago</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4761-How-I-can-save-remove-and-create-a-relation-attribute</guid>
		</item>
		<item>
			<title>Logfile double entries</title>
			<link>http://forum.wakanda.org/showthread.php?4760-Logfile-double-entries&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 06:34:05 GMT</pubDate>
			<description><![CDATA[Hi, 
 
is there a reason why a "console.log" creates two entries in the log file (Logs folder). 
For example: 
 
Code: 
---------...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
is there a reason why a &quot;console.log&quot; creates two entries in the log file (Logs folder).<br />
For example:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">console.log(&quot;17:12:31, 2013/05/15: running... (SystemGlobals)&quot;);</code><hr />
</div> creates<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">2013-05-15 17:12:31 [com.wakanda-software.webclient.client] INFO - {&quot;data&quot;:[&quot;17:12:31, 2013/05/15: running... (SystemGlobals)&quot;]}<br />
2013-05-15 17:12:31 [com.wakanda-software.webclient.client.console] INFO - {&quot;data&quot;:[&quot;17:12:31, 2013/05/15: running... (SystemGlobals)&quot;]}</code><hr />
</div> And is there an option to turn that off? Every line gets doubled, which is a bit useless and makes the log harder to read.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>Michael Hong</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4760-Logfile-double-entries</guid>
		</item>
		<item>
			<title>add a listener to the TabView widget</title>
			<link>http://forum.wakanda.org/showthread.php?4759-add-a-listener-to-the-TabView-widget&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 19:39:17 GMT</pubDate>
			<description><![CDATA[I may be missing something; I want to add a listener to the TabView widget [inside component] for an ‘Change’ and ‘onLoad’ event. 
 
The following...]]></description>
			<content:encoded><![CDATA[<div>I may be missing something; I want to add a listener to the TabView widget [inside component] for an ‘Change’ and ‘onLoad’ event.<br />
<br />
The following code doesn’t work:<br />
<br />
var tabView1 = getHtmlId('tabView1');<br />
$$(tabView1).addListener('change', function (e) {<br />
        alert('CHANGE event');<br />
});<br />
<br />
Does anyone have a recommendation about what I should do?<br />
<br />
I would appreciate any feedback</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?14-Tech-Tips-amp-Workarounds"><![CDATA[Tech Tips & Workarounds]]></category>
			<dc:creator>kepmen</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4759-add-a-listener-to-the-TabView-widget</guid>
		</item>
		<item>
			<title><![CDATA[Wakanda Server: Component 'iasv' throws an error]]></title>
			<link>http://forum.wakanda.org/showthread.php?4756-Wakanda-Server-Component-iasv-throws-an-error&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 09:33:06 GMT</pubDate>
			<description><![CDATA[The Wakanda Server crashes sometimes, with the following message: 
[ATTACH=CONFIG]2711[/ATTACH] 
 
We can't reproduce this, but maybe if we know what...]]></description>
			<content:encoded><![CDATA[<div>The Wakanda Server crashes sometimes, with the following message:<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2711"  title="Name:  
Views: 
Size:  ">Attachment 2711</a><br />
<br />
We can't reproduce this, but maybe if we know what iasv is, we could narrow it down.</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2711&amp;d=1368610204" target="_blank">wakanda_iasv.jpg&lrm;</a> 
(14.2 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>Michael Hong</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4756-Wakanda-Server-Component-iasv-throws-an-error</guid>
		</item>
		<item>
			<title>How to make client and server communicate ?</title>
			<link>http://forum.wakanda.org/showthread.php?4755-How-to-make-client-and-server-communicate&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 03:46:07 GMT</pubDate>
			<description>I am asking very basic question, but this is something I am not able to achieve. I think of will take me some time to learn  wakanda way of...</description>
			<content:encoded><![CDATA[<div>I am asking very basic question, but this is something I am not able to achieve. I think of will take me some time to learn  wakanda way of programming :-)<br />
<br />
In my trial mobile app, I have two views. View 1 contains the search form with few fields. When I fill the form and click on search button, I move to next view which is bound to data source. View 2 by default shows all the entities in that related data store and do not fetch entities based on search parameters. How can I fetch only the required entities based on search parameters input in view 1. I just want to show entries which have given keyword in either title, description or tag attributes of entity. Later on might replace the filtering criteria based on some business logic on server, for instance returning all entities with near by geo location based upon given latitude or longitude.<br />
<br />
Moreover can someone explain what is the best way in wakanda to make client communicate to back end. I think there are multiple ways to achieve it - client calling data store methods on server (RPC), REST calls, calling client data store methods, using data provider APIs etc.<br />
<br />
Regards,<br />
Gaurav</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>gaurav</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4755-How-to-make-client-and-server-communicate</guid>
		</item>
		<item>
			<title>bug with ondraw row and component with global source</title>
			<link>http://forum.wakanda.org/showthread.php?4753-bug-with-ondraw-row-and-component-with-global-source&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 22:02:24 GMT</pubDate>
			<description>This this got to do with global source. 
 
When I laod a compoent with a grid that got global source the onRowDraw does not fire , any reason for...</description>
			<content:encoded><![CDATA[<div>This this got to do with global source.<br />
<br />
When I laod a compoent with a grid that got global source the onRowDraw does not fire , any reason for that?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4753-bug-with-ondraw-row-and-component-with-global-source</guid>
		</item>
		<item>
			<title>extended classes and relational attributes</title>
			<link>http://forum.wakanda.org/showthread.php?4752-extended-classes-and-relational-attributes&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 20:11:57 GMT</pubDate>
			<description>this is just to confirm that I am not overlooking something... 
 
here are some statements about extended classes and relational attributes. Please...</description>
			<content:encoded><![CDATA[<div>this is just to confirm that I am not overlooking something...<br />
<br />
here are some statements about extended classes and relational attributes. Please correct me if I am wrong:<br />
<br />
1. an extended class can have a relational attribute of type 1-&gt;n pointing to a base class<br />
<br />
2. an extended class can NOT have a relational attribute of type n-&gt;1 pointing to a base class<br />
(this would mean that a storage attribute would have to be created in the extended class to store the reference which is currently not possible)<br />
<br />
3. an extended class can NOT have a relational attribute of type 1-&gt;n pointing to an extended class<br />
(this would mean that in the &quot;other&quot; extended class there would have to be a storage attribute to store the reference)<br />
<br />
4. an extended class can NOT have a relational attribute of type n-&gt;1 pointing to an extended class<br />
(same as in 3)<br />
<br />
<br />
This means that in extended classes it is only possible (currently) to have a relational attribute of type 1-&gt;n to a base class.<br />
<br />
(I know that there is the workaround to create the n-1 relational attributes in the base class... this is just to confirm the current limitations)<br />
<br />
Am I right? If yes I think this should be mentioned in the doc somewhere! Especially when newcomers try to figure out the best way how to design their models.<br />
<br />
Cheers</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>pkesch</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4752-extended-classes-and-relational-attributes</guid>
		</item>
		<item>
			<title>All New Dev version failed with Git error</title>
			<link>http://forum.wakanda.org/showthread.php?4751-All-New-Dev-version-failed-with-Git-error&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 16:24:54 GMT</pubDate>
			<description><![CDATA[Hi All, 
 
It's really weird all DEV version (May9th,May 14th as well previous ones) failed with Git error. 
 
[ATTACH=CONFIG]2709[/ATTACH] 
 
 
...]]></description>
			<content:encoded><![CDATA[<div>Hi All,<br />
<br />
It's really weird all DEV version (May9th,May 14th as well previous ones) failed with Git error.<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2709"  title="Name:  
Views: 
Size:  ">Attachment 2709</a><br />
<br />
<br />
<br />
Anybody has the same error or only me?<br />
<br />
Regards,<br />
Hung</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2709&amp;d=1368548639" target="_blank">Git_error.JPG&lrm;</a> 
(30.6 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>nguyenhung77478</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4751-All-New-Dev-version-failed-with-Git-error</guid>
		</item>
		<item>
			<title>Why I cannot persist the entitycollcetion in a entity from the 1(1 to N) side?</title>
			<link>http://forum.wakanda.org/showthread.php?4748-Why-I-cannot-persist-the-entitycollcetion-in-a-entity-from-the-1(1-to-N)-side&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 11:17:23 GMT</pubDate>
			<description><![CDATA[For example, if I define 2 datastore class :Employee, Company.  
In Company, there is an attribute "employees", which related to the Employee as 1 to...]]></description>
			<content:encoded><![CDATA[<div>For example, if I define 2 datastore class :Employee, Company. <br />
In Company, there is an attribute &quot;employees&quot;, which related to the Employee as 1 to N relation.<br />
When I&#12288;new an instance &quot;company&quot;, and use company.employees.add(emps), emps is an entitycollection with type Employee, then company.save(). But the databrowser show there is nothing in the employees of the new record. I tried to bound them reversely from Employee side, it's OK, but  I think it is too trouble to do that one by one. Can somebody tell what's the problem with persisting the entitycollection, and how to achieve that in wakanda?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>begincolor</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4748-Why-I-cannot-persist-the-entitycollcetion-in-a-entity-from-the-1(1-to-N)-side</guid>
		</item>
		<item>
			<title>Best way to create large model.</title>
			<link>http://forum.wakanda.org/showthread.php?4747-Best-way-to-create-large-model.&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 08:28:44 GMT</pubDate>
			<description>I actually use Wakanda 4 last version. 
 
I start to create a large model (more than 200 classes). 
 
Now I have a doubt: in wakanda 4 we have APIs...</description>
			<content:encoded><![CDATA[<div>I actually use Wakanda 4 last version.<br />
<br />
I start to create a large model (more than 200 classes).<br />
<br />
Now I have a doubt: in wakanda 4 we have APIs to create the model but, into the next version (wak v5) theese APIs changes.<br />
Also, the easiest way to create classes and attributes is via graphical interface, not using APIs.<br />
<br />
My application is a kind of work in progress and needs continuous updates also after the release, so my priority is to have a good kernel (model/modularity and so on...) in order to maintain the application clean.<br />
The model have to be up to date also with v6, v7...<br />
<br />
So, how start to create my model from scratch?<br />
<ol class="decimal"><li>graphical interface + free form</li>
<li>APIs v4</li>
<li>APIs v5 (waiting some months)</li>
</ol><br />
What are the costs / benefits of the techniques above?<br />
<br />
Best regards</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>info@adgrade.it</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4747-Best-way-to-create-large-model.</guid>
		</item>
		<item>
			<title>NodeJS infront of Wakanda?</title>
			<link>http://forum.wakanda.org/showthread.php?4746-NodeJS-infront-of-Wakanda&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 07:47:33 GMT</pubDate>
			<description>Hello, 
 
anyone got experience in using NodeJS in front of Wakanda? 
 
How do you access the WakandaDB ? via REST? 
How does it perform ? 
 
 
Best...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
anyone got experience in using NodeJS in front of Wakanda?<br />
<br />
How do you access the WakandaDB ? via REST?<br />
How does it perform ?<br />
<br />
<br />
Best Regards<br />
Marc</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?18-JavaScript-Lounge">JavaScript Lounge</category>
			<dc:creator>DasLicht</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4746-NodeJS-infront-of-Wakanda</guid>
		</item>
		<item>
			<title>Logout() does not returns any value</title>
			<link>http://forum.wakanda.org/showthread.php?4744-Logout()-does-not-returns-any-value&amp;goto=newpost</link>
			<pubDate>Mon, 13 May 2013 17:27:13 GMT</pubDate>
			<description>According to documentation, if the user logout is executed successfully, the method returns true. If there is any problem, it is not return any value...</description>
			<content:encoded><![CDATA[<div>According to documentation, if the user logout is executed successfully, the method returns true. If there is any problem, it is not return any value (like false). Is it correct ?<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2706"  title="Name:  
Views: 
Size:  ">Attachment 2706</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2706&amp;d=1368466011" target="_blank">logoutError.jpg&lrm;</a> 
(20.5 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>avac2005</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4744-Logout()-does-not-returns-any-value</guid>
		</item>
		<item>
			<title><![CDATA[Problems with the function "mylogin"]]></title>
			<link>http://forum.wakanda.org/showthread.php?4743-Problems-with-the-function-quot-mylogin-quot&amp;goto=newpost</link>
			<pubDate>Mon, 13 May 2013 09:18:15 GMT</pubDate>
			<description><![CDATA[Hi all, 
 
I want to use a custom datastore class to authenticate login requests and I'm having trouble running the following function: 
 
(this code...]]></description>
			<content:encoded><![CDATA[<div>Hi all,<br />
<br />
I want to use a custom datastore class to authenticate login requests and I'm having trouble running the following function:<br />
<br />
(this code is the documentation of wakanda: <a href="http://doc.wakanda.org/Users-and-Groups/Directory/setLoginListener.301-871936.en.html" target="_blank">http://doc.wakanda.org/Users-and-Gro...871936.en.html</a>)<br />
<br />
In the &quot;bootstrap&quot; of the project, we define a loginListener:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">directory.setLoginListener(&quot;ptoLogin&quot;, &quot;Internal&quot;);<br />
&nbsp; &nbsp; // I want the listener to be run with the internal group's privileges</code><hr />
</div> In the &quot;scripts/required.js&quot; file, I write the &quot;ptoLogin&quot; function:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">function ptoLogin(userName, password){<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; var p = ds.Usuarios.find(&quot;NombreAcceso = :1&quot;,userName);// <br />
&nbsp; &nbsp; if (p == null) <br />
&nbsp; &nbsp; &nbsp; &nbsp; return false; <br />
&nbsp; &nbsp; else<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp;  if (p.Password == password)&nbsp;  {<br />
&nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp;  var theGroups = [];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; switch (p.accessType){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 1:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; theGroups = [&quot;Internal&quot;]; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 2:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; theGroups = [&quot;Trabajador&quot;]; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var connectTime = new Date();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font color="#FF0000">&nbsp; return { <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ID: p.ID, <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; name: p.NombreAcceso, <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fullName:p.NombreAcceso,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; belongsTo: theGroups,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; storage:{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; time: connectTime<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; };</font><br />
&nbsp; &nbsp; &nbsp;  } else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return { error: 1024, errorMessage:&quot;invalid login&quot; };<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
};</code><hr />
</div> And when I start the debugger before the red code:<br />
<br />
Source code is not available. <br />
<br />
immediately starts a function of wakanda:<br />
<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">RestDirectoryAccess.currentUser = function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; var user = currentUser();<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (user == null)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return null;<br />
&nbsp; &nbsp; &nbsp; &nbsp; else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (user.ID === &quot;00000000000000000000000000000000&quot;)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return null;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; userName: user.name,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fullName: user.fullName,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ID: user.ID<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}</code><hr />
</div> This function is in directoryRest.js<br />
<br />
Any suggestions for good return user data?<br />
<br />
It may be for the version of wakanda?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?14-Tech-Tips-amp-Workarounds"><![CDATA[Tech Tips & Workarounds]]></category>
			<dc:creator>dsantiago</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4743-Problems-with-the-function-quot-mylogin-quot</guid>
		</item>
		<item>
			<title>Solved Extended Public DataClass got error showing relational sources</title>
			<link>http://forum.wakanda.org/showthread.php?4742-Extended-Public-DataClass-got-error-showing-relational-sources&amp;goto=newpost</link>
			<pubDate>Mon, 13 May 2013 08:08:09 GMT</pubDate>
			<description><![CDATA[Hi, 
I don´t know if it´s a bug... 
 
1.- Create DataClass "Students" 
2.- Add attributes (name, last, ...) 
3.- Create DataClass "courses" 
4.- Add...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
I don´t know if it´s a bug...<br />
<br />
1.- Create DataClass &quot;Students&quot;<br />
2.- Add attributes (name, last, ...)<br />
3.- Create DataClass &quot;courses&quot;<br />
4.- Add attribute (number, description,...)<br />
5.- Create a 1-&gt;n relational attribute &quot;studentCourse&quot;<br />
6.- Create a new page with DataGrid with &quot;students&quot; source and other dataGrig with &quot;studentCourse&quot; data.<br />
<br />
Works Fine.<br />
<br />
7.- Extend DataClass &quot;Students&quot; -&gt; &quot;StudentsExtended&quot;.<br />
8.- Change scope of &quot;Students&quot; to &quot;Public on Server&quot;.<br />
9.- Change Datagrid source on page by &quot;StudentsExtended&quot; (public)<br />
10.- On console: <br />
&quot;waf-optimize:7551: TypeError: 'undefined' is not an object (evaluating 'this._private.dataClass.getDefaultTopSize')&quot; <br />
and the page load nothing.<br />
<br />
I want to protect all my &quot;master&quot; DataClass and only publish extended DataClass with Resticting Query with &quot;public&quot; scope.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>franak</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4742-Extended-Public-DataClass-got-error-showing-relational-sources</guid>
		</item>
		<item>
			<title>small jsPDF server sample</title>
			<link>http://forum.wakanda.org/showthread.php?4741-small-jsPDF-server-sample&amp;goto=newpost</link>
			<pubDate>Sun, 12 May 2013 20:52:28 GMT</pubDate>
			<description>simple, but shows how you could use it 
 
 
 
Attachment 2704 (http://forum.wakanda.org/attachment.php?attachmentid=2704) 
 
...</description>
			<content:encoded><![CDATA[<div>simple, but shows how you could use it<br />
<br />
<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2704"  title="Name:  
Views: 
Size:  ">Attachment 2704</a><br />
<br />
<br />

<iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/OopLgQWN_v4" frameborder="0" allowfullscreen></iframe>
 </div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2704&amp;d=1368391893">jsPdf.zip&lrm;</a> 
(1.05 MB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?7-Tech-Library">Tech Library</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4741-small-jsPDF-server-sample</guid>
		</item>
		<item>
			<title>Edited the jquery-treview to fix the rpc</title>
			<link>http://forum.wakanda.org/showthread.php?4740-Edited-the-jquery-treview-to-fix-the-rpc&amp;goto=newpost</link>
			<pubDate>Sun, 12 May 2013 16:12:09 GMT</pubDate>
			<description>Original source: 
https://github.com/jzaefferer/jquery-treeview 
http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ 
 
 
 
 
Sample...</description>
			<content:encoded><![CDATA[<div>Original source:<br />
<a href="https://github.com/jzaefferer/jquery-treeview" target="_blank">https://github.com/jzaefferer/jquery-treeview</a><br />
<a href="http://bassistance.de/jquery-plugins/jquery-plugin-treeview/" target="_blank">http://bassistance.de/jquery-plugins...ugin-treeview/</a><br />
<br />
<br />
<br />
<br />
Sample solution with the edited files:<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2698"  title="Name:  
Views: 
Size:  ">Attachment 2698</a><br />
<br />
<br />

<iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/kKrSADqkGbw" frameborder="0" allowfullscreen></iframe>
 </div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2698&amp;d=1368375052">tree2.zip&lrm;</a> 
(1.34 MB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?7-Tech-Library">Tech Library</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4740-Edited-the-jquery-treview-to-fix-the-rpc</guid>
		</item>
		<item>
			<title>Matrix display problems.... makes it unusable</title>
			<link>http://forum.wakanda.org/showthread.php?4739-Matrix-display-problems....-makes-it-unusable&amp;goto=newpost</link>
			<pubDate>Sat, 11 May 2013 18:28:17 GMT</pubDate>
			<description>I have a matrix that i use to display a form with the content of a table.  The thing is that I try to create a fully resizable application that can...</description>
			<content:encoded><![CDATA[<div>I have a matrix that i use to display a form with the content of a table.  The thing is that I try to create a fully resizable application that can be used in any window size (with a given minimum, of course), but I want my matrix elements to always look like a list and not a grid.<br />
<br />
What I did is to add some size constraints to my form so its container will always take the full width of the matrix.  It works fine until the scroll bar appears.  When that happens, the container of the form is not resized and the right end of the form is hidden under the scrollbar.  <br />
<br />
Then I tried to just make the window smaller just in case it was some refresh that didn't happen, but at that moment the content of the matrix disappeared and I had to maximize the browser again so the content would be visible again... with the right end hidden under the scrollbar.<br />
<br />
Is that a known bug?  Because that makes the matrix (which is one of my favorite widgets because of what it let you do) unusable in a fluid design and it's really really sad...<br />
<br />
thanks!</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>AudioFreak</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4739-Matrix-display-problems....-makes-it-unusable</guid>
		</item>
		<item>
			<title>Bad reflex coming from my Delphi and VB years?</title>
			<link>http://forum.wakanda.org/showthread.php?4738-Bad-reflex-coming-from-my-Delphi-and-VB-years&amp;goto=newpost</link>
			<pubDate>Sat, 11 May 2013 17:09:59 GMT</pubDate>
			<description><![CDATA[Hi all, 
 
I just want to know if I'm in the wrong, because it seems to break stuff when I do it.  I come from a big Delphi and Visual Basic...]]></description>
			<content:encoded><![CDATA[<div>Hi all,<br />
<br />
I just want to know if I'm in the wrong, because it seems to break stuff when I do it.  I come from a big Delphi and Visual Basic programming background and the way we used to work is to name every component in the window we are designing.  So, in wakanda, when I add something like a tab panel, I have a tendency to rename every generated widgets so they represent what they are used for.  I don't like having something like $('container5') when i could have something explicit like $('tabGeneralOptions').<br />
<br />
I've read a lot of the documentation, especially the Getting Started thing, I've watched webcasts, and stuff, but I can't say that I noticed anyone renaming the inner components of a widget like a tab panel or a menu bar.<br />
<br />
I already tried renaming stuff, but it seems to break the widgets.  Was I just unlucky or it's the way it is?<br />
<br />
Thanks in advance!</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>AudioFreak</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4738-Bad-reflex-coming-from-my-Delphi-and-VB-years</guid>
		</item>
		<item>
			<title>Mobile App - How to show info from DB in our own layout ?</title>
			<link>http://forum.wakanda.org/showthread.php?4736-Mobile-App-How-to-show-info-from-DB-in-our-own-layout&amp;goto=newpost</link>
			<pubDate>Sat, 11 May 2013 13:48:05 GMT</pubDate>
			<description>We are tryin to build some mobile app using Wakanda and want to show info in our own layout (other than grid or list view etc). How can we show...</description>
			<content:encoded><![CDATA[<div>We are tryin to build some mobile app using Wakanda and want to show info in our own layout (other than grid or list view etc). How can we show dynamic info (from DB) in our own layout, Is ther already some widget for this ow we need some alternate way to achieve it.<br />
<br />
Below is the layout which we want to achieve. Before this UI there will be a list view UI showing all entities of interest. User will touch anyone of the entities to reach at this screen. This screen shown pull the selected entity details and should show in this layout or some other layout of our choice:<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2696"  title="Name:  
Views: 
Size:  ">Attachment 2696</a><br />
<br />
Looking forward to responses.<br />
<br />
Regards,<br />
Gaurav<br />
CTO &amp; Founder at <a href="http://www.RetailEMall.com" target="_blank">www.RetailEMall.com</a><br />
<a href="http://retailemall.com" target="_blank">Create online store in minutes !</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2696&amp;d=1368279837" target="_blank">EntityDetails.jpg&lrm;</a> 
(8.2 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>gaurav</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4736-Mobile-App-How-to-show-info-from-DB-in-our-own-layout</guid>
		</item>
		<item>
			<title>file upload widget  - blob</title>
			<link>http://forum.wakanda.org/showthread.php?4735-file-upload-widget-blob&amp;goto=newpost</link>
			<pubDate>Fri, 10 May 2013 21:11:36 GMT</pubDate>
			<description>According to the documentation it should be possible to use the file upload widget to upload a blob (pdf file) to an attribute in the datastore with...</description>
			<content:encoded><![CDATA[<div>According to the documentation it should be possible to use the file upload widget to upload a blob (pdf file) to an attribute in the datastore with type BLOB. When I try this the the attribute stays null.<br />
<br />
I do have a current element and I get the display notification that the file is uploaded (but that's a lie).<br />
<br />
When I change the type of the attribute to image it does work. When I check the size of the attribute it is exactly the size of the pdf file I chose.<br />
<br />
Bug?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>robkanda</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4735-file-upload-widget-blob</guid>
		</item>
		<item>
			<title><![CDATA[for some reason my grid is bugging on me, cant use "contr" button to deselec or selcect.]]></title>
			<link>http://forum.wakanda.org/showthread.php?4734-for-some-reason-my-grid-is-bugging-on-me-cant-use-quot-contr-quot-button-to-deselec-or-selcect.&amp;goto=newpost</link>
			<pubDate>Fri, 10 May 2013 18:33:30 GMT</pubDate>
			<description>Update 12.05.2013 
 
New video and sample solution that is small, and easy to debug/understand 
 
Attachment 2697...</description>
			<content:encoded><![CDATA[<div>Update 12.05.2013<br />
<br />
New video and sample solution that is small, and easy to debug/understand<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2697"  title="Name:  
Views: 
Size:  ">Attachment 2697</a><br />
<br />
OS: win 8, 64bit<br />
Wakanda: 4.132351<br />
Using chrome browser.<br />
<b>BUG NUMBER wak0081950</b><br />
<br />
<br />
<br />
video of bug.<br />

<iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/CMXTcA0OnLk" frameborder="0" allowfullscreen></iframe>
 </div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2697&amp;d=1368354078">gridBug.zip&lrm;</a> 
(1.00 MB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4734-for-some-reason-my-grid-is-bugging-on-me-cant-use-quot-contr-quot-button-to-deselec-or-selcect.</guid>
		</item>
		<item>
			<title>Big problem opening the model</title>
			<link>http://forum.wakanda.org/showthread.php?4733-Big-problem-opening-the-model&amp;goto=newpost</link>
			<pubDate>Fri, 10 May 2013 17:57:38 GMT</pubDate>
			<description><![CDATA[Wakanda Studio 4 build 4.132351 
 
After a lot of modifications to the model of my project the wakanda server don't be able to open the model...]]></description>
			<content:encoded><![CDATA[<div>Wakanda Studio 4 build 4.132351<br />
<br />
After a lot of modifications to the model of my project the wakanda server don't be able to open the model anymore.<br />
<br />
The log reports the below errors.<br />
<br />
I have worked only into the graphical mode: I haven't touched the source of the model.<br />
So I think it is a wakanda problem.<br />
<br />
I try to delete the datafolder without any results.<br />
<br />
Can anyone help me?<br />
What can I do to solve the problem?<br />
<br />
<br />
2013-05-10 19:50:39 [com.wakanda-software.AdWeb] INFO - Opening the solution<br />
2013-05-10 19:50:39 [com.wakanda-software.AdWeb] INFO - Opening the users and groups directory<br />
2013-05-10 19:50:39 [com.wakanda-software.AdWeb] INFO - Users and groups directory opened (duration: 61 ms)<br />
2013-05-10 19:50:39 [com.wakanda-software.AdWeb.AdWeb] INFO - Opening the project<br />
2013-05-10 19:50:39 [com.wakanda-software.AdWeb.AdWeb] INFO - Opening the database<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.AdWeb] FATAL - Failed to open database (duration: 818 ms)<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.AdWeb.dbmg] ERROR - [1020] Wrong field reference in database Model<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.AdWeb.dbmg] ERROR - [1532] The datastore model cannot be loaded for database &quot;Model&quot;<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.AdWeb.dbmg] ERROR - [1024] Cannot open structure of database Model<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.AdWeb.iasv] ERROR - [1035] Cannot open the database<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.AdWeb.iasv] ERROR - [1035] Cannot open the database<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.iasv] ERROR - [1013] Cannot open 'AdWeb' project<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.AdWeb] INFO - Closing the project<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.AdWeb] INFO - Project closed (duration: 0 ms)<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.dbmg] ERROR - [1020] Wrong field reference in database Model<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.dbmg] ERROR - [1532] The datastore model cannot be loaded for database &quot;Model&quot;<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.dbmg] ERROR - [1024] Cannot open structure of database Model<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.iasv] ERROR - [1035] Cannot open the database<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb.iasv] ERROR - [1035] Cannot open the database<br />
2013-05-10 19:50:40 [com.wakanda-software.AdWeb] INFO - Closing the solution</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>info@adgrade.it</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4733-Big-problem-opening-the-model</guid>
		</item>
		<item>
			<title>Tip, pdf printing/generate with jspdf.com on server side</title>
			<link>http://forum.wakanda.org/showthread.php?4732-Tip-pdf-printing-generate-with-jspdf.com-on-server-side&amp;goto=newpost</link>
			<pubDate>Fri, 10 May 2013 17:20:19 GMT</pubDate>
			<description>Here is my tips 
 
*www.jspdf.com* 
download it 
 
* 
server side: 
rename line 49 and 143 in the jspdf.js from window to application, and it works...</description>
			<content:encoded><![CDATA[<div>Here is my tips<br />
<br />
<b><a href="http://www.jspdf.com" target="_blank">www.jspdf.com</a></b><br />
download it<br />
<br />
<b><br />
server side:<br />
rename line 49 and 143 in the jspdf.js from window to application, and it works fine on server side<br />
<br />
start with this in the rpc module (with your path)</b><br />
include(ds.getModelFolder().path + 'developmentScripts/jspdf.js');<br />
include(ds.getModelFolder().path + 'developmentScripts/jspdf.plugin.split_text_to_size.js');<br />
include(ds.getModelFolder().path + 'developmentScripts/jspdf.plugin.standard_fonts_metrics.js');<br />
<br />
<b>created and when generating it do this;</b><br />
<br />
var string = doc.output('datauristring');<br />
<b>and return the string</b><br />
<br />
return string;<br />
<br />
<b>on client side</b><br />
<br />
<b>call your rpc, async might be better... (this is actuall where you start!!) </b><br />
var string = print.printWPtest(waf.sources.workpack.name);<br />
<br />
<b>and pass the string to a iframe</b><br />
$(&quot;#printComp_frame2-frame&quot;).attr('src', string);</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?14-Tech-Tips-amp-Workarounds"><![CDATA[Tech Tips & Workarounds]]></category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4732-Tip-pdf-printing-generate-with-jspdf.com-on-server-side</guid>
		</item>
		<item>
			<title>Anyway to make a read only grid, entrable so I can copy text when I click on a cell?</title>
			<link>http://forum.wakanda.org/showthread.php?4730-Anyway-to-make-a-read-only-grid-entrable-so-I-can-copy-text-when-I-click-on-a-cell&amp;goto=newpost</link>
			<pubDate>Fri, 10 May 2013 12:20:47 GMT</pubDate>
			<description>Anyway to make a read only grid, entrable so I can copy text when I click on a cell?</description>
			<content:encoded><![CDATA[<div>Anyway to make a read only grid, entrable so I can copy text when I click on a cell?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4730-Anyway-to-make-a-read-only-grid-entrable-so-I-can-copy-text-when-I-click-on-a-cell</guid>
		</item>
		<item>
			<title>Ordering the ist of dataclasses in model editor</title>
			<link>http://forum.wakanda.org/showthread.php?4729-Ordering-the-ist-of-dataclasses-in-model-editor&amp;goto=newpost</link>
			<pubDate>Fri, 10 May 2013 10:34:00 GMT</pubDate>
			<description>The list of dataclasses in the model editor (at the left of the design pane) is not ordered. 
I think that it would be ordered in alphabetical order...</description>
			<content:encoded><![CDATA[<div>The list of dataclasses in the model editor (at the left of the design pane) is not ordered.<br />
I think that it would be ordered in alphabetical order like the list of datasources in the page editor.<br />
Alessandro.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?6-Feature-Requests">Feature Requests</category>
			<dc:creator>info@adgrade.it</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4729-Ordering-the-ist-of-dataclasses-in-model-editor</guid>
		</item>
		<item>
			<title>BUG:; There is there a big bug with date input fields in production release (2 may)</title>
			<link>http://forum.wakanda.org/showthread.php?4728-BUG-There-is-there-a-big-bug-with-date-input-fields-in-production-release-(2-may)&amp;goto=newpost</link>
			<pubDate>Thu, 09 May 2013 20:33:49 GMT</pubDate>
			<description>Attachment 2692 (http://forum.wakanda.org/attachment.php?attachmentid=2692) 
 
 
window 8, 64 bit, wak 4, 2 may release 
 
If you delete the date...</description>
			<content:encoded><![CDATA[<div><a href="http://forum.wakanda.org/attachment.php?attachmentid=2692"  title="Name:  
Views: 
Size:  ">Attachment 2692</a><br />
<br />
<br />
window 8, 64 bit, wak 4, 2 may release<br />
<br />
If you delete the date input feild it works fine.<br />
<br />
For some reason it think it's thouch screen, and wanto do something with scroller.<br />
Tried it on chrome and firefox.<br />
<br />
Can someone from team confirm that I'm not the one going crazy?</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2692&amp;d=1368131292">test.zip&lrm;</a> 
(1.01 MB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4728-BUG-There-is-there-a-big-bug-with-date-input-fields-in-production-release-(2-may)</guid>
		</item>
		<item>
			<title>Solved Online Demo / School Manager</title>
			<link>http://forum.wakanda.org/showthread.php?4727-Online-Demo-School-Manager&amp;goto=newpost</link>
			<pubDate>Thu, 09 May 2013 15:22:01 GMT</pubDate>
			<description>Hi Wakanda Team, 
 
is there a way to download the school manager/ Online Demo solution?  
 
Would be great. 
 
Thx, 
 
Tom</description>
			<content:encoded><![CDATA[<div>Hi Wakanda Team,<br />
<br />
is there a way to download the school manager/ Online Demo solution? <br />
<br />
Would be great.<br />
<br />
Thx,<br />
<br />
Tom</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>Tom</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4727-Online-Demo-School-Manager</guid>
		</item>
		<item>
			<title>Is Wakanda mature for Mobile App Dev ?</title>
			<link>http://forum.wakanda.org/showthread.php?4726-Is-Wakanda-mature-for-Mobile-App-Dev&amp;goto=newpost</link>
			<pubDate>Thu, 09 May 2013 13:45:23 GMT</pubDate>
			<description>First let me tell that I am new to Wakanda but have decent experience playing with SmartClient JS framework. Frankly saying, I am loving what I am...</description>
			<content:encoded><![CDATA[<div>First let me tell that I am new to Wakanda but have decent experience playing with SmartClient JS framework. Frankly saying, I am loving what I am seeing and reading about Wakanda since last few days. To me its one of the best and most comprehensive solution to build web apps; including both frontend and backend, but I am not sure on its capabilities to develop run-time optimized mobile apps.<br />
<br />
Can someone having decent experience with Wakanda put some light on pros and cons of using Wakanda for cross platform mobile app development. Is it optimized (performance wise) for mobile app ?<br />
<br />
I am also reading a lot about Sencha Touch and its looks great tool to build mobile apps, but it lacks the backend development of Wakanda.<br />
<br />
One key difference I could figure out between Sencha Touch widgets and Wakanda widgets is that Sencha widgets are completely written in JS whereas Wakanda widgets are in HTML. Will it impact the performance of mobile app?<br />
<br />
As per my understanding the JS UI of Sencha Touch will load once and thereafter will get and post data to web server using JSON, where as Wakanda widget (HTML) will load on every request or view change, further doing the JSON request to server. So if I understand correctly Sencha Touch is more light-weight than Wakanda in terms of client server communication, am I right ? Correct me if I am wrong.<br />
<br />
Moreover I think Sencah TOuch have much wider options of widgets for Mobile as compared to Wakanda mobile widgets, which make it more interesting UI designing, but Wakanda seems good for Server based logic, so good combination would be to have Sencha Touch widgets available in Wakanda Studio as its native widgets. I think this will make Wakanda immediately ready platform for mobile app development.<br />
<br />
Need opinion from Wakanda experts to understand better and evaluate Wakanda again Sencha Touch to develop real business mobile app. Please share your thoughts.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>gaurav</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4726-Is-Wakanda-mature-for-Mobile-App-Dev</guid>
		</item>
		<item>
			<title>Import MySQL data into Wakanda data store.</title>
			<link>http://forum.wakanda.org/showthread.php?4725-Import-MySQL-data-into-Wakanda-data-store.&amp;goto=newpost</link>
			<pubDate>Thu, 09 May 2013 08:07:14 GMT</pubDate>
			<description>Hi, 
 
I am currently VERY new to Wakanda and I would like to evaluate it to replace an old fashion php application. 
 
I am running a LAMP web...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I am currently VERY new to Wakanda and I would like to evaluate it to replace an old fashion php application.<br />
<br />
I am running a LAMP web application that has been coded with the foot quiet long time ago. Today, maintenance is a real nightmare. I would like to change to something more &quot;sexy&quot; and more 2013 style.<br />
<br />
I have tryied Wavemaker from VMWare and this looks quiet promising but &quot;on the paper&quot;, Wakanda seems to be more suitable of what I want.<br />
<br />
The problem is that I have a relational database of 10'000+ rows and 9 tables, that sits on my MySQL database. I don't mind to switch to the Wakanda datastore but I need to import all those data to it.<br />
<br />
I have found a tutorial (<a href="http://www.tuicool.com/articles/yY7neu" target="_blank">http://www.tuicool.com/articles/yY7neu</a>) that explains how to import one single table.<br />
<br />
Can anyone point me to a place that explains how to do ? Knowing that I can also export my tables in CSV.<br />
<br />
Many thanks</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?14-Tech-Tips-amp-Workarounds"><![CDATA[Tech Tips & Workarounds]]></category>
			<dc:creator>fxleytens</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4725-Import-MySQL-data-into-Wakanda-data-store.</guid>
		</item>
		<item>
			<title>small wak5 grid request</title>
			<link>http://forum.wakanda.org/showthread.php?4724-small-wak5-grid-request&amp;goto=newpost</link>
			<pubDate>Thu, 09 May 2013 04:46:18 GMT</pubDate>
			<description>I have many requests but this one is very small but important and should have been in wak2. 
Add option for grid header and row size in studio. 
I...</description>
			<content:encoded><![CDATA[<div>I have many requests but this one is very small but important and should have been in wak2.<br />
Add option for grid header and row size in studio.<br />
I wanto see it right away and not hackit on load :RpS_biggrin:</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?6-Feature-Requests">Feature Requests</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4724-small-wak5-grid-request</guid>
		</item>
		<item>
			<title>Suitable for photo sharing app ?</title>
			<link>http://forum.wakanda.org/showthread.php?4723-Suitable-for-photo-sharing-app&amp;goto=newpost</link>
			<pubDate>Thu, 09 May 2013 01:36:03 GMT</pubDate>
			<description><![CDATA[Greets, 
 
I just discovered Wakanda a few days ago and so far it looks like it might be exactly what I've been looking for. I do have a question...]]></description>
			<content:encoded><![CDATA[<div>Greets,<br />
<br />
I just discovered Wakanda a few days ago and so far it looks like it might be exactly what I've been looking for. I do have a question though... I'm developing an Android/iOS photo sharing app using Xamarin. Would Wakanda be a good (great?) fit for the server side? Storing the pictures, location data, etc etc. Of course, I'd need it to be able to scale across servers when necessary. :)<br />
<br />
I prefer to develop in JS, so I hope this will work without too much fuss.<br />
<br />
Thanks!</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>webb</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4723-Suitable-for-photo-sharing-app</guid>
		</item>
		<item>
			<title>Reading/writing data to the Wakanda DataStore from an outside application</title>
			<link>http://forum.wakanda.org/showthread.php?4720-Reading-writing-data-to-the-Wakanda-DataStore-from-an-outside-application&amp;goto=newpost</link>
			<pubDate>Wed, 08 May 2013 16:28:27 GMT</pubDate>
			<description>How would it be possible to query/write data from the datastore from an outside application?  I work with an application which uses VoiceGuide to...</description>
			<content:encoded><![CDATA[<div>How would it be possible to query/write data from the datastore from an outside application?  I work with an application which uses VoiceGuide to handle touch tone parts of an application.  VoiceGuide queries the current database checking for available reservation times and allows the caller to book a reservation for any available times.  This reservation is written into the database and a confirmation message played to the caller.  Is there a tutorial or documentation page with more information on this type of reading/writing?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?19-Wakanda-amp-Other-Technologies"><![CDATA[Wakanda & Other Technologies]]></category>
			<dc:creator>tiredoftry</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4720-Reading-writing-data-to-the-Wakanda-DataStore-from-an-outside-application</guid>
		</item>
		<item>
			<title>onInit on base class and on inherited class, should this work?</title>
			<link>http://forum.wakanda.org/showthread.php?4719-onInit-on-base-class-and-on-inherited-class-should-this-work&amp;goto=newpost</link>
			<pubDate>Wed, 08 May 2013 10:30:56 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I have a base class "A1" with attributes "name", "attribute1" and "attribute2". 
 
A1 has an onInit event where I assign a value to...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I have a base class &quot;A1&quot; with attributes &quot;name&quot;, &quot;attribute1&quot; and &quot;attribute2&quot;.<br />
<br />
A1 has an onInit event where I assign a value to attribute1.<br />
<br />
This works (using my own form, not using the grid... see also previous threat)<br />
<br />
I also have an inherited class &quot;A2&quot; with &quot;A1&quot; as a base class.<br />
<br />
A2 has also an onInit event where I want o assign a value to attribute2.<br />
<br />
Now, creating a new record in A2 does not execute the onInit event of the A2 class, only the onInit event of A1 is executed.<br />
<br />
Question: is it not possible to have an onInit event on the base AND on the inherited class???<br />
<br />
I think it definitely makes sense to have such events on both classes....<br />
<br />
Cheers<br />
<br />
P.S. this is the same issue which was reported in August 2012 WAK0078029<br />
<br />
I did not need it so far therefore I did not follow up since. But now I would really need this.<br />
It is definitely reproducible and I could provide a sample project and a screencast if necessary!</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>pkesch</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4719-onInit-on-base-class-and-on-inherited-class-should-this-work</guid>
		</item>
		<item>
			<title>data entry via grid widget does not assign values in the onInit event</title>
			<link>http://forum.wakanda.org/showthread.php?4718-data-entry-via-grid-widget-does-not-assign-values-in-the-onInit-event&amp;goto=newpost</link>
			<pubDate>Wed, 08 May 2013 09:29:05 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I have a ds class "A1" with attributes "name" and "attribute1", both strings. 
The class has an onInit event where I assign a value to the...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I have a ds class &quot;A1&quot; with attributes &quot;name&quot; and &quot;attribute1&quot;, both strings.<br />
The class has an onInit event where I assign a value to the attribute1.<br />
(very simple, just for test purpose:  this.attribute1 = &quot;hello&quot;)<br />
<br />
Now, when I use my own form to enter records all works fine and the attribute 1 is filled.<br />
<br />
Entering data using the grid does not assign the value to attribute1.<br />
The onInit event is executed (tested it with the debugger) without error but the attribute1 does not get the initial value.<br />
<br />
Is this a known problem? I did a search with &quot;onInit&quot; in the bug system but found no records.<br />
<br />
Cheers<br />
<br />
P.S. Wakanda Studio/Server 4 build 4.132351 on Mac OS X</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>pkesch</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4718-data-entry-via-grid-widget-does-not-assign-values-in-the-onInit-event</guid>
		</item>
		<item>
			<title><![CDATA[Tablet page doesn't fit with the tablet device screen size]]></title>
			<link>http://forum.wakanda.org/showthread.php?4717-Tablet-page-doesn-t-fit-with-the-tablet-device-screen-size&amp;goto=newpost</link>
			<pubDate>Wed, 08 May 2013 09:24:48 GMT</pubDate>
			<description><![CDATA[Hi 
 
I have the problem that my tablet page doesn't fit with the tablet screen size. It should fit to the windows depending of the screen size of...]]></description>
			<content:encoded><![CDATA[<div>Hi<br />
<br />
I have the problem that my tablet page doesn't fit with the tablet screen size. It should fit to the windows depending of the screen size of the device, shouldn't?<br />
<br />
When I created my page, the Workspace width and height have been defined and now I can change those values (in the body tag) but it will only fit if I choose to put my web app in the menu home of my ipad so that I don't have anymore the address bar.<br />
<br />
I have reported as a bug (WAK0077534) but it still tagged as &quot;Incomplete Informations&quot; But with the 4 steps I indicate in the bug, everybody can reproduce it.<br />
<br />
So how can we do to have a content who can fit to the screen size, without regarding what we have define when we have created the page?<br />
<br />
Thanks</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>Gabriel Inzirillo</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4717-Tablet-page-doesn-t-fit-with-the-tablet-device-screen-size</guid>
		</item>
		<item>
			<title>Active Directory on Roadmap?</title>
			<link>http://forum.wakanda.org/showthread.php?4715-Active-Directory-on-Roadmap&amp;goto=newpost</link>
			<pubDate>Wed, 08 May 2013 00:12:38 GMT</pubDate>
			<description><![CDATA[In the Wakanda documentation under Design & Administration->Data Security and Access Control->Users and Groups it states: 
 
Using a directory of...]]></description>
			<content:encoded><![CDATA[<div>In the Wakanda documentation under Design &amp; Administration-&gt;Data Security and Access Control-&gt;Users and Groups it states:<br />
<br />
Using a directory of external users defined in LDAP or ActiveDirectory...<br />
<br />
Note: In the current version of Wakanda, this feature has not yet been implemented.<br />
<br />
This implies it will be implemented some day.<br />
<br />
Where is this feature on the roadmap so I can know how far along it is?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>dkeegan</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4715-Active-Directory-on-Roadmap</guid>
		</item>
		<item>
			<title>Modifying a page on-the-fly</title>
			<link>http://forum.wakanda.org/showthread.php?4714-Modifying-a-page-on-the-fly&amp;goto=newpost</link>
			<pubDate>Tue, 07 May 2013 22:05:09 GMT</pubDate>
			<description><![CDATA[Hi all, 
 
I am trying to create a menu on the fly, based on values I get from the database.  What's the best way to do this?  So far I am trying to...]]></description>
			<content:encoded><![CDATA[<div>Hi all,<br />
<br />
I am trying to create a menu on the fly, based on values I get from the database.  What's the best way to do this?  So far I am trying to do this via creating an HttpRequestHandler and modifying the body in 'response' before sending it back.  Is there another way?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>Jernz</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4714-Modifying-a-page-on-the-fly</guid>
		</item>
		<item>
			<title>Reuse design templates</title>
			<link>http://forum.wakanda.org/showthread.php?4713-Reuse-design-templates&amp;goto=newpost</link>
			<pubDate>Tue, 07 May 2013 21:16:47 GMT</pubDate>
			<description>Im trying to design a template that can be used by all pages, this would include the standard header, footer and body content areas. So the intention...</description>
			<content:encoded><![CDATA[<div>Im trying to design a template that can be used by all pages, this would include the standard header, footer and body content areas. So the intention is to design a header, footer, etc. once and reference it on all pages. What is the best way to go about doing this? Is there an example available that I could follow?<br />
<br />
Thanks for your responses.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>hibbyhibby60</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4713-Reuse-design-templates</guid>
		</item>
		<item>
			<title>customized sorting for calculated attributes</title>
			<link>http://forum.wakanda.org/showthread.php?4712-customized-sorting-for-calculated-attributes&amp;goto=newpost</link>
			<pubDate>Tue, 07 May 2013 21:07:12 GMT</pubDate>
			<description><![CDATA[Hi, there, 
 
I am working on a project that requires customized sorting for calculated attributes: 
I have a Order class, which has a 'status'...]]></description>
			<content:encoded><![CDATA[<div>Hi, there,<br />
<br />
I am working on a project that requires customized sorting for calculated attributes:<br />
I have a Order class, which has a 'status' attribute (this is a calculated attributes, its value can be one of  'received', 'processing', 'cancelled' and 'finished'). <br />
<br />
Order datasource will be sorted based on each order's status by default. This means that if you sort orders by status using 'ascending', 'received' orders will come first in the grid, followed by those orders whose status is 'processing', then 'cancelled' orders and ' finished' orders. If you sort orders by status using 'descending', 'finished' orders will come first, then followed by 'cancelled' orders, then 'processing' orders and 'received' orders.<br />
<br />
I think On Sort method for a calculated attribute is for this purpose. But how to make it follow certain sorting rules like ('received', 'processing', 'cancelled' and 'finished')?<br />
<br />
There is a similar thread <a href="http://stackoverflow.com/questions/4025675/mysql-order-by-custom-set-field-value" target="_blank">http://stackoverflow.com/questions/4...et-field-value</a>. This thread discussed custom sorting in MySQL ( ORDER BY [custom SET field value]).<br />
<br />
In MySQL, you can do it like this:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">.. ORDER BY CASE `status` <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WHEN 'available' THEN 1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WHEN 'busy' THEN 2<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WHEN 'distance' THEN 3<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WHEN 'offline' THEN 4<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  END</code><hr />
</div> How can we achieve this in Wakanda?<br />
Thanks</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>wei</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4712-customized-sorting-for-calculated-attributes</guid>
		</item>
		<item>
			<title>Loosing Current Entity reference</title>
			<link>http://forum.wakanda.org/showthread.php?4709-Loosing-Current-Entity-reference&amp;goto=newpost</link>
			<pubDate>Tue, 07 May 2013 08:50:41 GMT</pubDate>
			<description><![CDATA[Hi, 
 
i'm building a simple app based on components with multiple pages where user can interact. 
 
For example i've datasource1 displaying its...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
i'm building a simple app based on components with multiple pages where user can interact.<br />
<br />
For example i've datasource1 displaying its contents into a data grid.<br />
<br />
I'm trying to make possible to modify records in data grid double clicking on a record.<br />
<br />
For example:<br />
<br />
Double click on row 2, there's an event behind this action that loads the component with form containing all the text fields and other widgets concerning the current entity in the entity collection.<br />
<br />
Here i can modify the current record values and store them or cancel the operation.<br />
<br />
The strange thing is that the first time i make this action (so double click on a random row) i'm redirected to the form component page and get the correct entity inside the different text inputs and so..<br />
<br />
The second time I try to modify a record, clicking on it in the data grid, i'm redirected ti the component page with form but the entity selected is not the one clicked.<br />
<br />
Someone can help me?<br />
<br />
Thanks</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>lordwhiskey</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4709-Loosing-Current-Entity-reference</guid>
		</item>
		<item>
			<title>Using existing git repo</title>
			<link>http://forum.wakanda.org/showthread.php?4706-Using-existing-git-repo&amp;goto=newpost</link>
			<pubDate>Mon, 06 May 2013 12:54:36 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I've been using git since before Wakanda even became version 0.5 :RpS_thumbsup:. (We're pushing to our own inhouse git server) 
There is a...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I've been using git since before Wakanda even became version 0.5 :RpS_thumbsup:. (We're pushing to our own inhouse git server)<br />
There is a .git repository inside the solution folder. Every git-application, that I use, ie. TortoiseGit, SmartGit, Tower (MAC), Eclipse with eGit recognizes the repo and its settings automatically.<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">c:\all_wakanda_solutions\mysolution1\.git<br />
c:\all_wakanda_solutions\mysolution2\.git<br />
c:\all_wakanda_solutions\mysolution3\.git</code><hr />
</div> Wakanda seems to expect the .git repo to be at the same level of the solution folder.<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">c:\all_wakanda_solutions\.git<br />
c:\all_wakanda_solutions\mysolution1<br />
c:\all_wakanda_solutions\mysolution2<br />
c:\all_wakanda_solutions\mysolution3</code><hr />
</div> Doesn't this mean all solutions share the same repo?<br />
Is there a way to configure git, where the repo is located?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?14-Tech-Tips-amp-Workarounds"><![CDATA[Tech Tips & Workarounds]]></category>
			<dc:creator>Michael Hong</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4706-Using-existing-git-repo</guid>
		</item>
		<item>
			<title>dev build 0.131947, inserting date source attribute in component gets error</title>
			<link>http://forum.wakanda.org/showthread.php?4704-dev-build-0.131947-inserting-date-source-attribute-in-component-gets-error&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 21:15:05 GMT</pubDate>
			<description><![CDATA[dev build 0.131947, inserting date source attribute in component gets error 
 
if I use "date" attribute in my form, I get error loading that...]]></description>
			<content:encoded><![CDATA[<div>dev build 0.131947, inserting date source attribute in component gets error<br />
<br />
if I use &quot;date&quot; attribute in my form, I get error loading that component<br />
<br />
WAF: There is an error with the datasource of id task TypeError {} waf-optimize:13072<br />
<br />
Anyone else noticed this?<br />
I'm on the developer, so noting surprise atm :-)</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4704-dev-build-0.131947-inserting-date-source-attribute-in-component-gets-error</guid>
		</item>
		<item>
			<title>http://jspdf.com/ is this the best way atm?</title>
			<link>http://forum.wakanda.org/showthread.php?4703-http-jspdf.com-is-this-the-best-way-atm&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 18:41:54 GMT</pubDate>
			<description>Anyone been using it? 
Is it the best pdf javascript lib?</description>
			<content:encoded><![CDATA[<div>Anyone been using it?<br />
Is it the best pdf javascript lib?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4703-http-jspdf.com-is-this-the-best-way-atm</guid>
		</item>
		<item>
			<title><![CDATA[I'm I missing something, using [myAttributeName] is not working]]></title>
			<link>http://forum.wakanda.org/showthread.php?4702-I-m-I-missing-something-using-myAttributeName-is-not-working&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 16:25:40 GMT</pubDate>
			<description><![CDATA[What I'm I missing? 
Should not this work? 
 
var id = 22; 
var attr = "company.name" 
var entity = ds.Persons.find("ID = :1", id); 
*var myName =...]]></description>
			<content:encoded><![CDATA[<div>What I'm I missing?<br />
Should not this work?<br />
<br />
var id = 22;<br />
var attr = &quot;company.name&quot;<br />
var entity = ds.Persons.find(&quot;ID = :1&quot;, id);<br />
<b>var myName = entity[attr];</b> //this is failing, but if I use entity.company.name it works</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4702-I-m-I-missing-something-using-myAttributeName-is-not-working</guid>
		</item>
		<item>
			<title>Sencha Touch widgets + Wakanda Backend - How to Start ?</title>
			<link>http://forum.wakanda.org/showthread.php?4701-Sencha-Touch-widgets-Wakanda-Backend-How-to-Start&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 14:56:38 GMT</pubDate>
			<description>Hi, 
 
I am new to Wakanda and is exploring its potential for quick mobile app development. As per my current understanding Wakanda have robut ans...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I am new to Wakanda and is exploring its potential for quick mobile app development. As per my current understanding Wakanda have robut ans scalable backend and even elegant front end for web app but the front end (widgets) might not be optimized (performance wise) for mobile platform, so I am exploring if we can integrate Sencha Touch 2.2 widgets in Wakanda Studio to replace Wakanda native widgets but keeping the same Wakanda backend.<br />
<br />
I am sure there is some way to do it but do not know how exactly to do it. I will appreciate if someone can show me some working example or code so that I can learn from it.<br />
<br />
Kindly help if you know the way to integrate Sencha Touch widgets to Wakanda back-end.<br />
<br />
Regards,<br />
Gaurav</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?19-Wakanda-amp-Other-Technologies"><![CDATA[Wakanda & Other Technologies]]></category>
			<dc:creator>gaurav</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4701-Sencha-Touch-widgets-Wakanda-Backend-How-to-Start</guid>
		</item>
		<item>
			<title>free component, makes txt file (you select columns/attribute);</title>
			<link>http://forum.wakanda.org/showthread.php?4700-free-component-makes-txt-file-(you-select-columns-attribute)&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 14:50:12 GMT</pubDate>
			<description>Just needed something to generate reports(txt files simple) 
 
Attachment 2676 (http://forum.wakanda.org/attachment.php?attachmentid=2676) 
 
 
 
I...</description>
			<content:encoded><![CDATA[<div>Just needed something to generate reports(txt files simple)<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2676"  title="Name:  
Views: 
Size:  ">Attachment 2676</a><br />
<br />
<br />
<br />
I have not put much work into making this look very nice, but it's a start.<br />
<br />
I might make it better when I need it, but atm I doing something else, so figured I might as well share it so maybe someone else could help.<br />
<br />
If you make it better and add more options, then please upload it<br />
And please make it simple so it's easy to move to solutions.<br />
<br />

<iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/K5wtpgx5aK4" frameborder="0" allowfullscreen></iframe>
 </div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2676&amp;d=1367765237">collectionrefOnServer.zip&lrm;</a> 
(1.40 MB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?7-Tech-Library">Tech Library</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4700-free-component-makes-txt-file-(you-select-columns-attribute)</guid>
		</item>
		<item>
			<title>Dynamically assigning the datasource</title>
			<link>http://forum.wakanda.org/showthread.php?4699-Dynamically-assigning-the-datasource&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 11:34:52 GMT</pubDate>
			<description>I posted this question in the General Discussion forum, but have had no response so I thought I would try here too.  Sorry for the duplication. 
...</description>
			<content:encoded><![CDATA[<div>I posted this question in the General Discussion forum, but have had no response so I thought I would try here too.  Sorry for the duplication.<br />
<br />
-----<br />
<br />
My main page consists of a navigation area and a component.  I change the component based on the buttons selected in the navigation area.  I load the component with a component that contains a tab view widget.  In the second tab I display the details of a record in a container.  In this container I also have a reference to another component.  This component contains several buttons that will act on a record.<br />
<br />
The organization looks something like this:<br />
<br />
index.html<br />
- Component (mainComp)<br />
-- Loaded Component (projects.waComponent)<br />
--- Tab View (projTabs)<br />
---- Tab Container (projDetailsCont)<br />
----- Container (projContDetails)<br />
------ Component (recNavCompDetails)<br />
------- Loaded Component (recNav.waComponent)<br />
-------- Container (recNavCont)<br />
--------- Image Buttons (recNavBtnFirst, previous, next, last, cancel, remove, create, save)<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2675"  title="Name:  
Views: 
Size:  ">Attachment 2675</a><br />
<br />
What I would like to do is make these buttons work for a dynamically assigned datasource so that I could reuse the button set for another datasource on a different page.<br />
Questions:<br />
1) What is the best way to reference the buttons?<br />
2) How do I assign the datasource to each button?<br />
3) How do I assign the datasource action to each button?<br />
4) How do I center the recNavCompDetails component in the Tab Container?</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2675&amp;d=1367753458" target="_blank">Record Component.jpg&lrm;</a> 
(11.5 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>North2Alaska</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4699-Dynamically-assigning-the-datasource</guid>
		</item>
		<item>
			<title>OBCD driver for wakanda ?</title>
			<link>http://forum.wakanda.org/showthread.php?4698-OBCD-driver-for-wakanda&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 07:09:54 GMT</pubDate>
			<description>Would it be possible to develop an OBCD driver for WAKANDA ? 
 
This would help many professionals to keep their external software like...</description>
			<content:encoded><![CDATA[<div>Would it be possible to develop an OBCD driver for WAKANDA ?<br />
<br />
This would help many professionals to keep their external software like report-writers and so on, working without<br />
Fuss.<br />
<br />
When they see the much greater possibilities and power of wakanda they will without dougt totally proceed to it.<br />
<br />
It would makes the it-people possible to GRADUALLY go over to the new software.<br />
<br />
No firm would like to change so dramatically at once.<br />
<br />
Gerard</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?6-Feature-Requests">Feature Requests</category>
			<dc:creator>gery51</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4698-OBCD-driver-for-wakanda</guid>
		</item>
		<item>
			<title>roadmap, why isnt there wak 6, 7 , 8</title>
			<link>http://forum.wakanda.org/showthread.php?4697-roadmap-why-isnt-there-wak-6-7-8&amp;goto=newpost</link>
			<pubDate>Sat, 04 May 2013 21:08:39 GMT</pubDate>
			<description>Why isnt there wakanda 6, 7, 8 on the blank stuff? 
 
We know it might change, but fun to know if you think wak 6 or 10.. 
 
Havent you started a...</description>
			<content:encoded><![CDATA[<div>Why isnt there wakanda 6, 7, 8 on the blank stuff?<br />
<br />
We know it might change, but fun to know if you think wak 6 or 10..<br />
<br />
Havent you started a pdf/report part too?<br />
Didnt see that anywhere</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4697-roadmap-why-isnt-there-wak-6-7-8</guid>
		</item>
		<item>
			<title>Problem with custom CSS</title>
			<link>http://forum.wakanda.org/showthread.php?4696-Problem-with-custom-CSS&amp;goto=newpost</link>
			<pubDate>Sat, 04 May 2013 14:54:32 GMT</pubDate>
			<description>Hi, 
 
When I add a custom CSS file to a page the HTTPServer log shows that it cannot find index.css (HTTP 404 error and therefore the page does not...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
When I add a custom CSS file to a page the HTTPServer log shows that it cannot find index.css (HTTP 404 error and therefore the page does not display correctly) when I press the &quot;Run Project&quot; button.  When I press the &quot;Run File&quot; button everything works.<br />
<br />
I have attached two solution files - one with a custom CSS file and one without.<br />
<br />
I am using Wakanda Studio 4 build 4.129628.<br />
<br />
I will appreciate any help with this issue.<br />
<br />
Chummy</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2673&amp;d=1367678962">TestWithCustomCSS.zip&lrm;</a> 
(1,004.9 KB)
</li> <li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2674&amp;d=1367678982">TestWithoutCustomCSS.zip&lrm;</a> 
(1,001.5 KB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>chummy</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4696-Problem-with-custom-CSS</guid>
		</item>
		<item>
			<title>Dedicated Wakanda conference this year?</title>
			<link>http://forum.wakanda.org/showthread.php?4693-Dedicated-Wakanda-conference-this-year&amp;goto=newpost</link>
			<pubDate>Fri, 03 May 2013 18:20:17 GMT</pubDate>
			<description><![CDATA[I wouldn't mind another excuse to go to vegas (http://www.4d.com/company/events/summit2013.html). Is a Wakanda focused conference or session track...]]></description>
			<content:encoded><![CDATA[<div>I wouldn't mind another excuse to go to vegas (<a href="http://www.4d.com/company/events/summit2013.html" target="_blank">http://www.4d.com/company/events/summit2013.html</a>). Is a Wakanda focused conference or session track getting added to 4D Summit or will there be something separate?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>Tut</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4693-Dedicated-Wakanda-conference-this-year</guid>
		</item>
		<item>
			<title>New v4 prod version failed to start server</title>
			<link>http://forum.wakanda.org/showthread.php?4692-New-v4-prod-version-failed-to-start-server&amp;goto=newpost</link>
			<pubDate>Fri, 03 May 2013 13:38:15 GMT</pubDate>
			<description><![CDATA[Hi All, 
 
Any of you got the same error I got here? 
 
 
[ATTACH=CONFIG]2670[/ATTACH] 
 
 
 
I can't even launch the server manually.]]></description>
			<content:encoded><![CDATA[<div>Hi All,<br />
<br />
Any of you got the same error I got here?<br />
<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2670"  title="Name:  
Views: 
Size:  ">Attachment 2670</a><br />
<br />
<br />
<br />
I can't even launch the server manually.<br />
<br />
<br />
Regards,<br />
Hung</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2670&amp;d=1367588250" target="_blank">server_error.JPG&lrm;</a> 
(51.0 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>nguyenhung77478</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4692-New-v4-prod-version-failed-to-start-server</guid>
		</item>
		<item>
			<title><![CDATA[Can't get XML Response from Provider]]></title>
			<link>http://forum.wakanda.org/showthread.php?4690-Can-t-get-XML-Response-from-Provider&amp;goto=newpost</link>
			<pubDate>Fri, 03 May 2013 11:43:03 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I can't get a XML response when I try this : 
 
exports.startInfoscoreRequest = function startInfoscoreRequest(isRequest) { 
		    
	var xhr,...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I can't get a XML response when I try this :<br />
<br />
exports.startInfoscoreRequest = function startInfoscoreRequest(isRequest) {<br />
		   <br />
	var xhr, headers, result, resultObj, URLText;<br />
	URLText = &quot;https://server.com/path&quot;;<br />
	var headersObj = {};<br />
	var contentLength = 0;<br />
	   <br />
	xhr = new XMLHttpRequest();<br />
	xhr.onreadystatechange = function() { // event handler<br />
	    var state = this.readyState;<br />
	    if (state !== 4) { <br />
	        return;<br />
	    }<br />
	    var headers = this.getAllResponseHeaders(); //get the headers of the response<br />
	    var result = this.responseText;<br />
	    contentLength = result.length;<br />
	    var headersArray = headers.split('\n'); // split and format the headers string in an array<br />
	    headersArray.forEach(function(header, index, headersArray) {<br />
	       var name, indexSeparator, value;<br />
	<br />
	       if (header.indexOf('HTTP/1.1') === 0) { // this is not a header but a status          <br />
	            return; // filter it<br />
	       }<br />
	  <br />
	       indexSeparator = header.indexOf(':'); <br />
	       name = header.substr(0,indexSeparator);<br />
	       if (name === &quot;&quot;) {<br />
	           return;<br />
	       }<br />
	       value = header.substr(indexSeparator + 1).trim(); // clean up the header attribute<br />
	       headersObj[name] = value; // fills an object with the headers<br />
	     });<br />
	     if (headersObj['Content-Type'] &amp;&amp; headersObj['Content-Type'].indexOf('json') !== -1) {  <br />
	         resultObj = JSON.parse(result);<br />
	     } else {<br />
	         resultTxt = result;<br />
	     }<br />
	 };<br />
<br />
	 xhr.open('GET', URLText); // to connect to a Web site<br />
	 xhr.setRequestHeader(&quot;Content-Type&quot;,&quot;application/x-www-form-urlencoded&quot;);<br />
	 xhr.send(isRequest);<br />
	 statusLine = xhr.status + ' ' + xhr.statusText; // get the status<br />
	 	 	 <br />
	 var retValue = {<br />
	 	statusLine : statusLine,<br />
	 	headers : headersObj,<br />
	 	result : resultTxt,<br />
	 	contentL : contentLength<br />
	 }<br />
	 return retValue;<br />
}<br />
<br />
I get only &quot;OK&quot; in the resultTxt.<br />
<br />
What am I doing wrong?<br />
<br />
Many greetings<br />
<br />
Michael</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>Michael Heider</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4690-Can-t-get-XML-Response-from-Provider</guid>
		</item>
		<item>
			<title>Solved storage, sessionstorage, how to use?</title>
			<link>http://forum.wakanda.org/showthread.php?4689-storage-sessionstorage-how-to-use&amp;goto=newpost</link>
			<pubDate>Fri, 03 May 2013 08:56:38 GMT</pubDate>
			<description><![CDATA[Is storage can be accessed from client? In client, when I call storage.getItem(key), the browser says "storage is not defined"]]></description>
			<content:encoded><![CDATA[<div>Is storage can be accessed from client? In client, when I call storage.getItem(key), the browser says &quot;storage is not defined&quot;</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>begincolor</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4689-storage-sessionstorage-how-to-use</guid>
		</item>
		<item>
			<title>New Wakanda 4 build is available (Production Release- 4.132351 )</title>
			<link>http://forum.wakanda.org/showthread.php?4686-New-Wakanda-4-build-is-available-(Production-Release-4.132351-)&amp;goto=newpost</link>
			<pubDate>Thu, 02 May 2013 13:47:18 GMT</pubDate>
			<description>Hi everyone ! 
 
We are pleased to announce that a new Wakanda 4 build is now available (4.132351 - Issued on: 2 MAY 2013) 
 
You can download the...</description>
			<content:encoded><![CDATA[<div>Hi everyone !<br />
<br />
We are pleased to announce that a new Wakanda 4 build is now available (4.132351 - Issued on: 2 MAY 2013)<br />
<br />
You can download the new build here : <a href="http://www.wakanda.org/downloads" target="_blank"> Download Page</a><br />
<br />
As usual, we recommend all Wakanda users to upgrade their Wakanda Studio and Server.<br />
<br />
You can also  access the fixed bugs list on that page : <a href="http://download.wakanda.org/ProductionChannel/v4/Windows/132351/ChangeLog.txt" target="_blank">Change Log</a><br />
<br />
Happy Wakanding !<br />
<br />
<br />
Fred</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?9-News-amp-Announcements"><![CDATA[News & Announcements]]></category>
			<dc:creator>Frederic Gandelot</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4686-New-Wakanda-4-build-is-available-(Production-Release-4.132351-)</guid>
		</item>
		<item>
			<title>List View and Array Datasource</title>
			<link>http://forum.wakanda.org/showthread.php?4685-List-View-and-Array-Datasource&amp;goto=newpost</link>
			<pubDate>Thu, 02 May 2013 12:59:38 GMT</pubDate>
			<description><![CDATA[Hello, 
 
I've been able to make array datasources work with Grids, but not with List Views. 
 
Has anyone encountered this bug, or is this an...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I've been able to make array datasources work with <i>Grids</i>, but not with <i>List Views</i>.<br />
<br />
Has anyone encountered this bug, or is this an intended behavior ?<br />
Is there a workaround ?<br />
<br />
Thanks :RpS_smile:</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>earth01</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4685-List-View-and-Array-Datasource</guid>
		</item>
		<item>
			<title>List View and Array Datasource</title>
			<link>http://forum.wakanda.org/showthread.php?4684-List-View-and-Array-Datasource&amp;goto=newpost</link>
			<pubDate>Thu, 02 May 2013 12:47:43 GMT</pubDate>
			<description><![CDATA[Hello, 
 
I've been able to make array datasources work with Grids, but not with List Views. 
 
Has anyone encountered this bug, or is this an...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I've been able to make array datasources work with <i>Grids</i>, but not with <i>List Views</i>.<br />
<br />
Has anyone encountered this bug, or is this an intended behavior ?<br />
Is there a workaround ?<br />
<br />
Thanks :RpS_smile:</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>earth01</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4684-List-View-and-Array-Datasource</guid>
		</item>
		<item>
			<title>cannot call datastore class method from client-side?</title>
			<link>http://forum.wakanda.org/showthread.php?4683-cannot-call-datastore-class-method-from-client-side&amp;goto=newpost</link>
			<pubDate>Thu, 02 May 2013 11:59:37 GMT</pubDate>
			<description><![CDATA[When i debug my client-side code, it breaks right on the method calling which i definded on datastore class. 
like[ATTACH=CONFIG]2667[/ATTACH] 
In...]]></description>
			<content:encoded><![CDATA[<div>When i debug my client-side code, it breaks right on the method calling which i definded on datastore class.<br />
like<a href="http://forum.wakanda.org/attachment.php?attachmentid=2667"  title="Name:  
Views: 
Size:  ">Attachment 2667</a><br />
In model designer, I set the method scope to 'public' and checked carefully the method name spelling, why I cannot yet call it in client page? All datastore class methods can be called in server-side scripts, which I've tested, but it failed when being called on client page. I fell fairly strange,or is there anything I missed setting?</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/png.gif" alt="File Type: png" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2667&amp;d=1367495549" target="_blank">login.png&lrm;</a> 
(6.7 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>begincolor</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4683-cannot-call-datastore-class-method-from-client-side</guid>
		</item>
		<item>
			<title>Solved Cannot call datastore class method from client-side page?</title>
			<link>http://forum.wakanda.org/showthread.php?4681-Cannot-call-datastore-class-method-from-client-side-page&amp;goto=newpost</link>
			<pubDate>Thu, 02 May 2013 06:34:37 GMT</pubDate>
			<description>When i debug my client-side code, it breaks right on the method calling which i definded on datastore class....</description>
			<content:encoded><![CDATA[<div>When i debug my client-side code, it breaks right on the method calling which i definded on datastore class.<br />
like<a href="http://forum.wakanda.org/attachment.php?attachmentid=2665"  title="Name:  
Views: 
Size:  ">Attachment 2665</a><a href="http://forum.wakanda.org/attachment.php?attachmentid=2666"  title="Name:  
Views: 
Size:  ">Attachment 2666</a><br />
In model designer, I set the method scope to 'public' and checked carefully the method name spelling, why I cannot yet call it in client page?or is there anything I neglect?</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/png.gif" alt="File Type: png" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2665&amp;d=1367477076" target="_blank">login.png&lrm;</a> 
(6.7 KB)
</li> <li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2666&amp;d=1367477077" target="_blank">signUp.jpg&lrm;</a> 
(14.7 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>begincolor</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4681-Cannot-call-datastore-class-method-from-client-side-page</guid>
		</item>
		<item>
			<title>Is there 1 to 1 relation in model datastore design?</title>
			<link>http://forum.wakanda.org/showthread.php?4678-Is-there-1-to-1-relation-in-model-datastore-design&amp;goto=newpost</link>
			<pubDate>Wed, 01 May 2013 14:03:27 GMT</pubDate>
			<description>I find there is only 1 to N mapping in options of type, but I need to build 1 to 1 for my particular two classes. I wonder if there is 1 to 1 option...</description>
			<content:encoded><![CDATA[<div>I find there is only 1 to N mapping in options of type, but I need to build 1 to 1 for my particular two classes. I wonder if there is 1 to 1 option in wakanda datastore class design, or it is conceptually  included in 1 to N relation in this case?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>begincolor</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4678-Is-there-1-to-1-relation-in-model-datastore-design</guid>
		</item>
		<item>
			<title>How to use Debugger? Why it does not show anything?</title>
			<link>http://forum.wakanda.org/showthread.php?4677-How-to-use-Debugger-Why-it-does-not-show-anything&amp;goto=newpost</link>
			<pubDate>Wed, 01 May 2013 13:56:44 GMT</pubDate>
			<description>Im new to wakanda,but i consider the debug mechanism as same as all IDEs. Today when i add several breakpoints in my code and run my project, i found...</description>
			<content:encoded><![CDATA[<div>Im new to wakanda,but i consider the debug mechanism as same as all IDEs. Today when i add several breakpoints in my code and run my project, i found nothing appears to stop my running application. And when i directly click the tab <a href="http://forum.wakanda.org/attachment.php?attachmentid=2656"  title="Name:  
Views: 
Size:  ">Attachment 2656</a>,it displays like this<a href="http://forum.wakanda.org/attachment.php?attachmentid=2657"  title="Name:  
Views: 
Size:  ">Attachment 2657</a>. even though I wirte hard-code &quot;debugger&quot; in my code, it still does not work. It seems the Debugger can't be used. Why? I really wonder what's the problem with my wakanda, hope anyone can help me out of this, or I just can't more any further.</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/png.gif" alt="File Type: png" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2656&amp;d=1367416006" target="_blank">QQ&#25130;&#22270;20130501214610.png&lrm;</a> 
(3.0 KB)
</li> <li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2657&amp;d=1367416123" target="_blank">QQ&#25130;&#22270;20130501214819.jpg&lrm;</a> 
(13.2 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>begincolor</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4677-How-to-use-Debugger-Why-it-does-not-show-anything</guid>
		</item>
		<item>
			<title>Licensing question</title>
			<link>http://forum.wakanda.org/showthread.php?4676-Licensing-question&amp;goto=newpost</link>
			<pubDate>Wed, 01 May 2013 10:22:23 GMT</pubDate>
			<description>Hi, 
 
I understand that licensing for Wakanda is by a monthly subscription - great idea! However what happens to my commercially distributed apps...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I understand that licensing for Wakanda is by a monthly subscription - great idea! However what happens to my commercially distributed apps if/when I stop subscribing?<br />
<br />
<br />
Thanks<br />
<br />
James.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>James Wright</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4676-Licensing-question</guid>
		</item>
		<item>
			<title>Any live public facing apps?</title>
			<link>http://forum.wakanda.org/showthread.php?4675-Any-live-public-facing-apps&amp;goto=newpost</link>
			<pubDate>Wed, 01 May 2013 10:10:52 GMT</pubDate>
			<description><![CDATA[Hi, 
 
Is there a list of any live public facing Wakanda apps? Alternatively is anyone using wakanada in a "live" production environment? 
 
It would...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Is there a list of any live public facing Wakanda apps? Alternatively is anyone using wakanada in a &quot;live&quot; production environment?<br />
<br />
It would be great to see some case studies or testimonials from people who are using Wakanda to make a living.<br />
<br />
Thanks<br />
<br />
James.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>James Wright</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4675-Any-live-public-facing-apps</guid>
		</item>
		<item>
			<title><![CDATA["How Do I" example files]]></title>
			<link>http://forum.wakanda.org/showthread.php?4670-quot-How-Do-I-quot-example-files&amp;goto=newpost</link>
			<pubDate>Mon, 29 Apr 2013 19:20:59 GMT</pubDate>
			<description><![CDATA[Hi, 
I’m looking for the "How Do I" example files, as described in the Wakanda-How-Do-I-v4.pdf. 
Can you please help me to find these files? 
...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
I’m looking for the &quot;How Do I&quot; example files, as described in the Wakanda-How-Do-I-v4.pdf.<br />
Can you please help me to find these files?<br />
<br />
Thanks a lot,<br />
John</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?33-Learning-Center">Learning Center</category>
			<dc:creator>J.Puff@ppp.eu</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4670-quot-How-Do-I-quot-example-files</guid>
		</item>
		<item>
			<title>Database data file is corrupted</title>
			<link>http://forum.wakanda.org/showthread.php?4666-Database-data-file-is-corrupted&amp;goto=newpost</link>
			<pubDate>Mon, 29 Apr 2013 10:41:17 GMT</pubDate>
			<description>Hi, 
 
we have some test environments here: 
- OSX 1 native 
- OSX 2 virtual machine 
- OSX 3 native 
- Win 1 native 
- Win 2 virtual machine 
 
OSX...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
we have some test environments here:<br />
- OSX 1 native<br />
- OSX 2 virtual machine<br />
- OSX 3 native<br />
- Win 1 native<br />
- Win 2 virtual machine<br />
<br />
OSX 1, OSX 2 &amp; Win 2 are running permanently.<br />
Since the update to WAK4, OSX 2 regularly gets the error:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">2013-04-29 04:29:14 [com.wakanda-software.webclient.client] WARN - Error opening data file<br />
2013-04-29 04:29:14 [com.wakanda-software.webclient.client] ERROR - Database data file is corrupted<br />
2013-04-29 04:29:14 [com.wakanda-software.webclient.client] WARN - Automatic recovery from last backup forbidden by settings<br />
2013-04-29 04:29:14 [com.wakanda-software.webclient.client] FATAL - Failed to open database (duration: 455 ms)<br />
2013-04-29 04:29:14 [com.wakanda-software.webclient.client.iasv] ERROR - [1035] Cannot open the database<br />
2013-04-29 04:29:14 [com.wakanda-software.webclient.client.iasv] ERROR - [1035] Cannot open the database<br />
2013-04-29 04:29:14 [com.wakanda-software.webclient.iasv] ERROR - [1013] Cannot open 'client' project<br />
2013-04-29 04:29:14 [com.wakanda-software.webclient.client] INFO - Closing the project<br />
2013-04-29 04:29:14 [com.wakanda-software.webclient.client] INFO - Project closed (duration: 0 ms)<br />
2013-04-29 04:29:14 [com.wakanda-software.webclient.iasv] ERROR - [1035] Cannot open the database</code><hr />
</div> At first we thought that maybe there's something wrong with the VM, where OSX 2 (with most traffic, since we have test users testing all the time) is running. But during the weekend OSX 1 also crashed with that message in the logs and could not be restarted.<br />
I'm beginning to be worried, that there's something wrong with the server, although it seemed to be rock-solid the most reliable component of Wakanda.<br />
<br />
Anyone has experienced this? I've seen a bug-report WAK0081782, but I think, that's a different context.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>Michael Hong</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4666-Database-data-file-is-corrupted</guid>
		</item>
		<item>
			<title>Git error: The remote end hung up unexpectedly</title>
			<link>http://forum.wakanda.org/showthread.php?4663-Git-error-The-remote-end-hung-up-unexpectedly&amp;goto=newpost</link>
			<pubDate>Sun, 28 Apr 2013 20:36:42 GMT</pubDate>
			<description>Hi, 
 
using 4.131311 i tried to set up a git Push to Solution Server...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
using 4.131311 i tried to set up a git <a href="http://doc.wakanda.org/Using-Git-Services/Push-to-Solution-ServerPull-from-Solution-Server.200-973083.en.html" target="_blank">Push to Solution Server</a> from my local Studio running on OS X 10.6.8 to a Windows 2008 R2 Server on the net.<br />
<br />
I installed a local git repository (git version 1.7.12) and checked that git (version 1.7.11) was installed on the windows server 2008.<br />
<br />
When i tried my first push after copying my local solution to the remote server and doing a local commit and connecting to the remote server, i received Git error: The remote end hung up unexpectedly<br />
 <br />
What could be causing this error?<br />
<br />
thanks,<br />
Peter Vogel</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>Peter Vogel</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4663-Git-error-The-remote-end-hung-up-unexpectedly</guid>
		</item>
		<item>
			<title><![CDATA[[Extension] Random data generator]]></title>
			<link>http://forum.wakanda.org/showthread.php?4662-Extension-Random-data-generator&amp;goto=newpost</link>
			<pubDate>Sun, 28 Apr 2013 19:46:11 GMT</pubDate>
			<description>Hello, 
I would like to share with you two extensions that I have developed these last few days.  
 
1. _ 
2. *The first one* is a *chrome...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
I would like to share with you two extensions that I have developed these last few days. <br />
<ol class="decimal"><li><b>The first one</b> is a <b>chrome extension</b></u><br />
<br />
Demo:<br />
<br />

<iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/lRfzK8NSwCA" frameborder="0" allowfullscreen></iframe>
 <br />
<br />
Features:<ul><li>Add atributes</li>
<li>Save the configuration (Attributes and the count of the entities that must be generated)</li>
<li>Load the last saved configuration</li>
<li>Define the dictionary: firstnames, lastnames, companies and the words</li>
<li>Generate a json file that contains the list of the entities</li>
</ul><br />
To download:<ul><li>Github repository: <a href="https://github.com/midrissi/faker-chrome" target="_blank">https://github.com/midrissi/faker-chrome</a></li>
<li>Stable versions: <a href="https://github.com/midrissi/faker-chrome/tags" target="_blank">https://github.com/midrissi/faker-chrome/tags</a></li>
<li>CRX file: <a href="https://github.com/midrissi/faker-chrome/blob/master/dist/faker.crx?raw=true" target="_blank">https://github.com/midrissi/faker-ch...r.crx?raw=true</a></li>
</ul><br />
<a href="http://developer.chrome.com/extensions/getstarted.html#unpacked" target="_blank">Install The extension</a><br />
<br />
<br />
<u></li>
<li><b>The second one</b> is the <b>wakanda version</b> of the chrome extension</u><br />
<br />
Demo: <br />
<br />

<iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/6W_safdhjDU" frameborder="0" allowfullscreen></iframe>
 <br />
<br />
In addition of the features of the chrome extension, the wakanda version allow you more advanced features:<ul><li>Select a project from the current solution</li>
<li>Select the dataClass</li>
<li>You don't have to remember the name of the attributes, you can just select them from a dropdown list.</li>
<li>Generate the SSJS code</li>
</ul><br />
To download:<ul><li>Github repository: <a href="https://github.com/midrissi/faker-wakanda" target="_blank">https://github.com/midrissi/faker-wakanda</a></li>
<li>Stable versions: <a href="https://github.com/midrissi/faker-wakanda/tags" target="_blank">https://github.com/midrissi/faker-wakanda/tags</a></li>
</ul><br />
<a href="http://doc.wakanda.org/home2.en.html#/Wakanda-Studio-Extensions/Installing-Extensions.200-872846.en.html" target="_blank">Install The extension</a><br />
</li>
</ol><br />
I hope you'd like them :RpS_smile:.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>Mohamed Idrissi</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4662-Extension-Random-data-generator</guid>
		</item>
		<item>
			<title>web components</title>
			<link>http://forum.wakanda.org/showthread.php?4660-web-components&amp;goto=newpost</link>
			<pubDate>Sun, 28 Apr 2013 15:09:10 GMT</pubDate>
			<description>http://doc.wakanda.org/Widgets-0.Beta/Component/loadComponent.301-854899.en.html 
 
You need to update this, v4 got ability to use onsuccess as...</description>
			<content:encoded><![CDATA[<div><a href="http://doc.wakanda.org/Widgets-0.Beta/Component/loadComponent.301-854899.en.html" target="_blank">http://doc.wakanda.org/Widgets-0.Bet...854899.en.html</a><br />
<br />
You need to update this, v4 got ability to use onsuccess as params..<br />
<br />
<br />
<b>sample</b><br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">var compID = &quot;ListView&quot;;<br />
var myComp = &quot;/comps/defaultViews/defaultListView.waComponent&quot;;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; $$(compID).loadComponent({ <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; path: myComp, <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; userData: { myParameter: &quot;something&quot;}, <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; onSuccess : function () {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //code to do when loaded, like loading in another component<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; });</code><hr />
</div> </div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?15-Documentation">Documentation</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4660-web-components</guid>
		</item>
		<item>
			<title>My solution is very buggy, event triggering twice and not sometimes</title>
			<link>http://forum.wakanda.org/showthread.php?4659-My-solution-is-very-buggy-event-triggering-twice-and-not-sometimes&amp;goto=newpost</link>
			<pubDate>Sun, 28 Apr 2013 13:03:09 GMT</pubDate>
			<description><![CDATA[For some reason my solution is very buggy 
 
Some button clicks trigger twice, and when I reload a component, it does not trigger the "load" of that...]]></description>
			<content:encoded><![CDATA[<div>For some reason my solution is very buggy<br />
<br />
Some button clicks trigger twice, and when I reload a component, it does not trigger the &quot;load&quot; of that component.<br />
it's very anoying :RpS_crying:<br />
<br />
<br />
<a href="https://dl.dropboxusercontent.com/u/23375256/PTOC%20%2826%29.zip" target="_blank">https://dl.dropboxusercontent.com/u/...20%2826%29.zip</a> (removed)<br />
<br />
<br />
Anyone have a clue whats going on?<br />
<b>UPDATE 29.04.2013:<br />
ok, Ive figured out of the bugs.<br />
The part with events triggering twice was my fault, had added to index.js files to the index html.<br />
<br />
Webcompoents.<br />
My listFooter/content footer does not work the next time I reload it because it's the same name for each class view.<br />
Is this a bug?<br />
Feel its weird we cant have same name on components located at different locations.<br />
Could someone from team confirm it, is this to be expected or if it is a bug?</b><br />
everything works fine if I use unique names on the webcomponents.<br />
<br />
<br />

<iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/H02DAsU2q8Q" frameborder="0" allowfullscreen></iframe>
 </div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4659-My-solution-is-very-buggy-event-triggering-twice-and-not-sometimes</guid>
		</item>
		<item>
			<title>handle session expiration</title>
			<link>http://forum.wakanda.org/showthread.php?4658-handle-session-expiration&amp;goto=newpost</link>
			<pubDate>Sun, 28 Apr 2013 05:04:49 GMT</pubDate>
			<description><![CDATA[Since I'm using access control for classes (especially the new describe action, thanks again Laurent) I got problems when the session expires. When I...]]></description>
			<content:encoded><![CDATA[<div>Since I'm using access control for classes (especially the new describe action, thanks again Laurent) I got problems when the session expires. When I then try to reload the page, the page isn't loaded because WAF throws an error requesting the $catalog. I even don't get to onLoad of the page to handle session expiration and redirect to the login page.<br />
Is there an elegant solution for handling session errors before WAF stops execution?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>Patrick.Poetschke</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4658-handle-session-expiration</guid>
		</item>
		<item>
			<title><![CDATA[[Wakanda and firebase] Chat room]]></title>
			<link>http://forum.wakanda.org/showthread.php?4657-Wakanda-and-firebase-Chat-room&amp;goto=newpost</link>
			<pubDate>Sun, 28 Apr 2013 03:05:03 GMT</pubDate>
			<description>Hello, 
In attachements you will find a solution that demonstrate how to use firebase (https://www.firebase.com/) with wakanda to create a chat room....</description>
			<content:encoded><![CDATA[<div>Hello,<br />
In attachements you will find a solution that demonstrate how to use <a href="https://www.firebase.com/" target="_blank">firebase</a> with wakanda to create a chat room.<br />
<br />
Youtube demo:<br />

<iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/BCA-m9xl4LU" frameborder="0" allowfullscreen></iframe>
 <br />
<br />
PS: I have developed the solution very quickly ... it may contain stupid things :RpS_lol:<br />
<br />
I hope you'd like it!</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2649&amp;d=1367118291">chat.zip&lrm;</a> 
(118.9 KB)
</li> <li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2650&amp;d=1367152876">chat_1.zip&lrm;</a> 
(119.7 KB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>Mohamed Idrissi</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4657-Wakanda-and-firebase-Chat-room</guid>
		</item>
		<item>
			<title><![CDATA[BeautyTipMessage & Dialog]]></title>
			<link>http://forum.wakanda.org/showthread.php?4655-BeautyTipMessage-amp-Dialog&amp;goto=newpost</link>
			<pubDate>Sat, 27 Apr 2013 15:35:32 GMT</pubDate>
			<description><![CDATA[Hi all. 
 
I'm trying to use bt to activate a tooltip, but I have a problem if the object is inside a dialog in modal way. 
To activate message I...]]></description>
			<content:encoded><![CDATA[<div>Hi all.<br />
<br />
I'm trying to use bt to activate a tooltip, but I have a problem if the object is inside a dialog in modal way.<br />
To activate message I have to move manually the dialog.<br />
<br />
See the video:<br />

<iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/xgfWQDqPbxM" frameborder="0" allowfullscreen></iframe>
 <br />
<br />
This is the function:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">WAF.Widget.prototype.setBeautyTipMessage = function (text){<br />
&nbsp; &nbsp; &nbsp; &nbsp; this.$domNode.bt(text, {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; offsetParent: $('body'),<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fill: &quot;#9988ff&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; strokeStyle: &quot;#B7B7B7&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding: &quot;8px&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; spikeLength: 10,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; spikeGirth: 10,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cornerRadius: 0,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cssStyles: {color: &quot;black&quot;, fontWeight: &quot;normal&quot;, fontSize: &quot;14px&quot;, fontFamily: &quot;arial,san-serif&quot;},<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: &quot;200px&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; positions: &quot;top&quot;} <br />
&nbsp; &nbsp; &nbsp; &nbsp; );<br />
}</code><hr />
</div> Can someone help me to find a workaround?<br />
Would be greatly appreciated<br />
<br />
Regards<br />
<br />
Ale</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>ale</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4655-BeautyTipMessage-amp-Dialog</guid>
		</item>
		<item>
			<title>Dynamically assigning the datasource</title>
			<link>http://forum.wakanda.org/showthread.php?4654-Dynamically-assigning-the-datasource&amp;goto=newpost</link>
			<pubDate>Sat, 27 Apr 2013 14:29:57 GMT</pubDate>
			<description>My main page consists of a navigation area and a component.  I change the component based on the buttons selected in the navigation area.  I load the...</description>
			<content:encoded><![CDATA[<div>My main page consists of a navigation area and a component.  I change the component based on the buttons selected in the navigation area.  I load the component with a component that contains a tab view widget.  In the second tab I display the details of a record in a container.  In this container I also have a reference to another component.  This component contains several buttons that will act on a record.<br />
<br />
The organization looks something like this:<br />
<br />
index.html<br />
- Component (mainComp)<br />
-- Loaded Component (projects.waComponent)<br />
--- Tab View (projTabs)<br />
---- Tab Container (projDetailsCont)<br />
----- Container (projContDetails)<br />
------ Component (recNavCompDetails)<br />
------- Loaded Component (recNav.waComponent)<br />
-------- Container (recNavCont)<br />
--------- Image Buttons (recNavBtnXXXXX first, previous, next, last, cancel, remove, create, save)<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2647"  title="Name:  
Views: 
Size:  ">Attachment 2647</a><br />
<br />
What I would like to do is make these buttons work for a dynamically assigned datasource so that I could reuse the button set for another datasource on a different page.<br />
Questions:<br />
1) What is the best way to reference the buttons?<br />
2) How do I assign the datasource to each button?<br />
3) How do I assign the datasource action to each button?<br />
4) How do I center the recNavCompDetails component in the Tab Container?</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2647&amp;d=1367070766" target="_blank">Record Component.jpg&lrm;</a> 
(11.5 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>North2Alaska</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4654-Dynamically-assigning-the-datasource</guid>
		</item>
		<item>
			<title>why have my solution stopped working?</title>
			<link>http://forum.wakanda.org/showthread.php?4652-why-have-my-solution-stopped-working&amp;goto=newpost</link>
			<pubDate>Fri, 26 Apr 2013 21:37:37 GMT</pubDate>
			<description>why have my solution stopped working? 
 
https://dl.dropboxusercontent.com/u/23375256/PTOC%20%2818%29.zip</description>
			<content:encoded><![CDATA[<div>why have my solution stopped working?<br />
<br />
<a href="https://dl.dropboxusercontent.com/u/23375256/PTOC%20%2818%29.zip" target="_blank">https://dl.dropboxusercontent.com/u/...20%2818%29.zip</a></div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4652-why-have-my-solution-stopped-working</guid>
		</item>
		<item>
			<title>What caused these warning?</title>
			<link>http://forum.wakanda.org/showthread.php?4651-What-caused-these-warning&amp;goto=newpost</link>
			<pubDate>Fri, 26 Apr 2013 20:38:51 GMT</pubDate>
			<description><![CDATA[Hi All, 
 
Any idea why I got these warnings? :RpS_confused: 
 
 
[ATTACH=CONFIG]2642[/ATTACH] 
 
 
Thanks, 
Hung]]></description>
			<content:encoded><![CDATA[<div>Hi All,<br />
<br />
Any idea why I got these warnings? :RpS_confused:<br />
<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2642"  title="Name:  
Views: 
Size:  ">Attachment 2642</a><br />
<br />
<br />
Thanks,<br />
Hung</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2642&amp;d=1367008695" target="_blank">warning.JPG&lrm;</a> 
(143.6 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>nguyenhung77478</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4651-What-caused-these-warning</guid>
		</item>
		<item>
			<title>Container with title border -</title>
			<link>http://forum.wakanda.org/showthread.php?4650-Container-with-title-border&amp;goto=newpost</link>
			<pubDate>Fri, 26 Apr 2013 19:40:54 GMT</pubDate>
			<description>Hi all, 
 
Not sure if we can add a title on the border of the container widget. 
The label of container is on top, bottom, right or left...Not...</description>
			<content:encoded><![CDATA[<div>Hi all,<br />
<br />
Not sure if we can add a title on the border of the container widget.<br />
The label of container is on top, bottom, right or left...Not really nice.<br />
By anyway to have the title on the border? that looks nicer.<br />
<br />
Regards,<br />
Hung</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>nguyenhung77478</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4650-Container-with-title-border</guid>
		</item>
		<item>
			<title><![CDATA[async call to class method with params, what I'm I doing wrong?]]></title>
			<link>http://forum.wakanda.org/showthread.php?4647-async-call-to-class-method-with-params-what-I-m-I-doing-wrong&amp;goto=newpost</link>
			<pubDate>Fri, 26 Apr 2013 12:57:30 GMT</pubDate>
			<description><![CDATA[tried differen solutions... 
 
async call to class method with params, what I'm I doing wrong? :RpS_cursing: 
using windows, wak 4.131311, production...]]></description>
			<content:encoded><![CDATA[<div>tried differen solutions...<br />
<br />
async call to class method with params, what I'm I doing wrong? :RpS_cursing:<br />
using windows, wak 4.131311, production release<br />
<br />
<b>server side:</b><br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">jumpTo:function(params)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var array = this.ID;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var col = ds.TagOperation.query(params, array);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return col;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },</code><hr />
</div> <br />
client side Ive tried, but I dont get params over to server side<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">waf.source.tagTemp.jumpTo({<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; onSuccess: function(event){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //do something<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, onError : function(err){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //error<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, params : [&quot;opStatusLink.tagLink.ID in :1&quot;, &quot;testing&quot;]<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });</code><hr />
</div> <br />
<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"><br />
waf.source.tagTemp.jumpTo({<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; onSuccess: function(event){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //debugger;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, onError : function(err){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; debugger;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, params : &quot;opStatusLink.tagLink.ID in :1&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });</code><hr />
</div> </div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>vegarringdal</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4647-async-call-to-class-method-with-params-what-I-m-I-doing-wrong</guid>
		</item>
		<item>
			<title><![CDATA[How to change the widgets' attribut by code]]></title>
			<link>http://forum.wakanda.org/showthread.php?4646-How-to-change-the-widgets-attribut-by-code&amp;goto=newpost</link>
			<pubDate>Fri, 26 Apr 2013 03:20:57 GMT</pubDate>
			<description><![CDATA[Hi, 
 
Simple question: how to change css attributes of widget in run-time? 
 
E.g. dataGridWidget = $$(getHtmlId('dataGrid1')); 
       If I want to...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Simple question: how to change css attributes of widget in run-time?<br />
<br />
E.g. dataGridWidget = $$(getHtmlId('dataGrid1'));<br />
       If I want to change the right position of my grid.<br />
       dataGridWidget.?????<br />
<br />
Thanks,<br />
Hung</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>nguyenhung77478</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4646-How-to-change-the-widgets-attribut-by-code</guid>
		</item>
		<item>
			<title>How to hide scroll bars on container widgets</title>
			<link>http://forum.wakanda.org/showthread.php?4645-How-to-hide-scroll-bars-on-container-widgets&amp;goto=newpost</link>
			<pubDate>Fri, 26 Apr 2013 01:46:15 GMT</pubDate>
			<description>Hi, 
 
How to hide the scroll bars of container widget. It looks ugly!  
The same app but on different resolutions it appears on lower resolution not...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
How to hide the scroll bars of container widget. It looks ugly! <br />
The same app but on different resolutions it appears on lower resolution not in high resolution.<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2636"  title="Name:  
Views: 
Size:  ">Attachment 2636</a><br />
<br />
Thanks,<br />
Hung</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2636&amp;d=1366940759" target="_blank">container.JPG&lrm;</a> 
(18.9 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>nguyenhung77478</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4645-How-to-hide-scroll-bars-on-container-widgets</guid>
		</item>
		<item>
			<title>Popup Menus in a Wakanda Matrix</title>
			<link>http://forum.wakanda.org/showthread.php?4644-Popup-Menus-in-a-Wakanda-Matrix&amp;goto=newpost</link>
			<pubDate>Fri, 26 Apr 2013 01:21:49 GMT</pubDate>
			<description><![CDATA[Hi, 
 
Attached below is an example solution showing how to have popup menus inside a matrix. 
 
Inside of the zip is a small 'how to' called :...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Attached below is an example solution showing how to have popup menus inside a matrix.<br />
<br />
Inside of the zip is a small 'how to' called : Raison d'e&#770;tre<br />
<br />
However if you open the solution/project you will soon see how it is done.<br />
<br />
Enjoy!<br />
<br />
Cheers,<br />
<br />
Ant<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2635"  title="Name:  
Views: 
Size:  ">Attachment 2635</a></div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2635&amp;d=1366939084">MartrixPopupMenus.zip&lrm;</a> 
(1.04 MB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?14-Tech-Tips-amp-Workarounds"><![CDATA[Tech Tips & Workarounds]]></category>
			<dc:creator>Ant</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4644-Popup-Menus-in-a-Wakanda-Matrix</guid>
		</item>
		<item>
			<title>How to solve his problem - folders and subfolders</title>
			<link>http://forum.wakanda.org/showthread.php?4643-How-to-solve-his-problem-folders-and-subfolders&amp;goto=newpost</link>
			<pubDate>Thu, 25 Apr 2013 23:19:41 GMT</pubDate>
			<description>Hello, 
 
I am relatively new to Wakanda as well as web development, and I have a problem I would like to present. 
 
Our clients are self-storage...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I am relatively new to Wakanda as well as web development, and I have a problem I would like to present.<br />
<br />
Our clients are self-storage facilities.  I want them to be able to log in using the address format <a href="http://www.domain.com/facilityname" target="_blank">www.domain.com/facilityname</a> which takes them to a login page.  When they log in they are directed to <a href="http://www.domain.com/faclityname/reportspage" target="_blank">www.domain.com/faclityname/reportspage</a> to access reports.<br />
I have been reading up on httpRequestHandlers and this seems to be a solution, but at the moment I'm unclear how to use it exactly.<br />
Can someone please give an example of how to return specific pages for these URLs?  It would be dynamic.  <br />
I.e. if there are three facilities that can log in at<br />
<a href="http://www.domain.com/123" target="_blank">www.domain.com/123</a><br />
<a href="http://www.domain.com/abc" target="_blank">www.domain.com/abc</a><br />
<a href="http://www.domain.com/zyx" target="_blank">www.domain.com/zyx</a><br />
<br />
they all open a single login page.  Then after they are authenticated they are directed to the main page, i.e.<br />
<a href="http://www.domain.com/123/reportspage" target="_blank">www.domain.com/123/reportspage</a>.<br />
So this will become the &quot;root&quot; for them.<br />
I hope this makes sense.<br />
<br />
Can someone please point me in the right direction for doing this in Wakanda?</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>Jernz</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4643-How-to-solve-his-problem-folders-and-subfolders</guid>
		</item>
		<item>
			<title>Async execution problems</title>
			<link>http://forum.wakanda.org/showthread.php?4641-Async-execution-problems&amp;goto=newpost</link>
			<pubDate>Thu, 25 Apr 2013 15:13:01 GMT</pubDate>
			<description><![CDATA[Hi everybody, 
 
i'm new to wakanda world and i'm training myself. 
 
I've built a little application with a simply data model. 
 
I'm trying to run...]]></description>
			<content:encoded><![CDATA[<div>Hi everybody,<br />
<br />
i'm new to wakanda world and i'm training myself.<br />
<br />
I've built a little application with a simply data model.<br />
<br />
I'm trying to run this script behind a &quot;onClick&quot; event of a button.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; statistiche = ds.Stats.allEntities();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; categorie = ds.Categoria.allEntities();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; statistiche.toArray(&quot;&quot;,{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'onSuccess':function(evento)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; arrayStatistiche = evento.result;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var num = arrayStatistiche.length;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for(i=0;i&lt;num;i++)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; collezione = ds.Categoria.query(&quot;ID= :1&quot;,arrayStatistiche[i].linkCategoria);&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //alert(arrayStatistiche[i].linkCategoria);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //collezione = ds.Categoria.query(&quot;ID=1&quot;);&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //debugger;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; collezione.toArray(&quot;&quot;,{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'onSuccess':function(evt)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; arrayCategorie=evt.result;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; indice=evt.userData;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; prova=prova+(arrayCategorie[0].Nome_Categoria+&quot; - &quot;+ String(arrayStatistiche[indice.index].counter));<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },userData:{index:i}<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });</code><hr />
</div> My goal is to place in prova variable two strings, a name of a category and the number rapresenting how many items there are in that category.<br />
<br />
Well, when i run this code what I obtain is that like this<br />
<br />
&quot;Category 1 - 1 Category 1 - 22&quot;<br />
<br />
even if the right result should be &quot;Category 1 -1 Category 2 -22&quot;<br />
<br />
It seems not upgrading the array containing the name of category.<br />
<br />
Another thing is that if I uncomment the row<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">//alert(arrayStatistiche[i].linkCategoria);</code><hr />
</div> The program gets the right result. And this is suggesting some &quot;timing problem&quot; during asyn execution.<br />
<br />
Am I right or I'm missing something?<br />
<br />
Thanks<br />
<br />
Marcello</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>lordwhiskey</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4641-Async-execution-problems</guid>
		</item>
		<item>
			<title>Why Wakanda download some api from youtub.com at runtime</title>
			<link>http://forum.wakanda.org/showthread.php?4640-Why-Wakanda-download-some-api-from-youtub.com-at-runtime&amp;goto=newpost</link>
			<pubDate>Thu, 25 Apr 2013 12:56:09 GMT</pubDate>
			<description>Hi, 
 
Why Wakanda download some api from youtub.com at run-time causing this error as we are forbidden to download from external web-sites. 
...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Why Wakanda download some api from youtub.com at run-time causing this error as we are forbidden to download from external web-sites.<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2624"  title="Name:  
Views: 
Size:  ">Attachment 2624</a><br />
<br />
How to prevent this. Wakanda can not include these api in the build?<br />
<br />
Regards,<br />
Hung</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2624&amp;d=1366894532" target="_blank">api_download.JPG&lrm;</a> 
(22.8 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>nguyenhung77478</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4640-Why-Wakanda-download-some-api-from-youtub.com-at-runtime</guid>
		</item>
		<item>
			<title>Git issue - Why I get this error resulting in unable to save my changes</title>
			<link>http://forum.wakanda.org/showthread.php?4639-Git-issue-Why-I-get-this-error-resulting-in-unable-to-save-my-changes&amp;goto=newpost</link>
			<pubDate>Thu, 25 Apr 2013 12:40:35 GMT</pubDate>
			<description><![CDATA[Hi Git experts, 
 
Can you indicate what's wrong: 
 
  * why I got this error and how to resolve it. 
  * I created a local repository but it caused...]]></description>
			<content:encoded><![CDATA[<div>Hi Git experts,<br />
<br />
Can you indicate what's wrong:<br />
<br />
  * why I got this error and how to resolve it.<br />
  * I created a local repository but it caused me this issue with some DEV version so I remove Git settings and remove git folder from my solution folder, but I still get this error with Wakanda Studio Dev build 0.132113.<br />
<br />
<a href="http://forum.wakanda.org/attachment.php?attachmentid=2623"  title="Name:  
Views: 
Size:  ">Attachment 2623</a><br />
<br />
Thanks and Best regards,<br />
Hung</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2623&amp;d=1366893504" target="_blank">git_issue.JPG&lrm;</a> 
(34.7 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>nguyenhung77478</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4639-Git-issue-Why-I-get-this-error-resulting-in-unable-to-save-my-changes</guid>
		</item>
		<item>
			<title><![CDATA[Matrix selection mode "multiple" and reduceToSelected()]]></title>
			<link>http://forum.wakanda.org/showthread.php?4635-Matrix-selection-mode-quot-multiple-quot-and-reduceToSelected()&amp;goto=newpost</link>
			<pubDate>Thu, 25 Apr 2013 08:11:43 GMT</pubDate>
			<description><![CDATA[Hi, 
 
similar to the dataGrid it would be useful to have a "multiple" selection mode in the matrix to select several entities. Furthermore the...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
similar to the dataGrid it would be useful to have a &quot;multiple&quot; selection mode in the matrix to select several entities. Furthermore the method reduceToSelected() is required in the multiple selection mode.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?6-Feature-Requests">Feature Requests</category>
			<dc:creator>Michael Hong</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4635-Matrix-selection-mode-quot-multiple-quot-and-reduceToSelected()</guid>
		</item>
		<item>
			<title>How to implement model relationships using a grid?</title>
			<link>http://forum.wakanda.org/showthread.php?4633-How-to-implement-model-relationships-using-a-grid&amp;goto=newpost</link>
			<pubDate>Thu, 25 Apr 2013 00:06:30 GMT</pubDate>
			<description>Everyone, 
 
Just starting with Wakanda and have hit an issue that I am struggling with.. Hopefully someone out there can point me in the right...</description>
			<content:encoded><![CDATA[<div>Everyone,<br />
<br />
Just starting with Wakanda and have hit an issue that I am struggling with.. Hopefully someone out there can point me in the right direction!<br />
<br />
I have a few simple model (see attached), that defines three classes.. <br />
<br />
1. Order Class - Contains header information about a work order.<br />
2. Item Class - Contains information about an item.<br />
3. OrderItem Class - Contains information about the qty required/produced for a given item and order..<br />
<br />
So the relationships are easy - <br />
<br />
Order Class contains a 1-&gt;N relationship to OrderItem Class.<br />
OrderItem Class contains a N-&gt;1 relationship to Item Class.<br />
Item Class is freestanding..<br />
<br />
Basically I have an order record that is related to one or more OrderItem records which has a &quot;foreign key&quot; to a single item record..<br />
<br />
Now my trouble is I thought this would be easy! Just drop a grid, connect this to the Order Class (which works).. Drop another grid and drop the 1-&gt;N relationship to the OrderItem class.. and all would be well.. But alas NOT SO!<br />
<br />
When I associate the 2nd grid I DO get a list of OrderItems entities, BUT the orderItemNumber (the &quot;foreign key&quot;) to the OrderItem class is missing? If I create a new record in the grid then I am unable to enter the lineItemNumber. The field is missing..<br />
<br />
I must be doing something basically wrong.. Anyone out there that can so me the error of my ways?<br />
<br />
Thanks in advance,<br />
<br />
Chris Aiken<br />
AikenDev/AikenControls</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2620&amp;d=1366848289" target="_blank">Snap 2013-04-24 at 20.04.15.jpg&lrm;</a> 
(15.2 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>aikendev</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4633-How-to-implement-model-relationships-using-a-grid</guid>
		</item>
		<item>
			<title>Querying on date issues</title>
			<link>http://forum.wakanda.org/showthread.php?4632-Querying-on-date-issues&amp;goto=newpost</link>
			<pubDate>Wed, 24 Apr 2013 20:13:30 GMT</pubDate>
			<description>Hello. I am wanting to query on date and I am confused why its not working. 
 
This is my code: 
 
Code: 
--------- 
today = formatter.formatDate(new...</description>
			<content:encoded><![CDATA[<div>Hello. I am wanting to query on date and I am confused why its not working.<br />
<br />
This is my code:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">today = formatter.formatDate(new Date());<br />
var theLocationInventoryHistory = ds.LocationInventoryHistory.query('issueDate = :1', today);</code><hr />
</div> The debugger shows the 'today' variable to be &quot;04/24/13&quot; which is correct, but the query path is being shown to be &quot;LocationInventoryHistory.issueDate == 12/31/02 12:00 AM&quot;}<br />
<br />
Why is the query path &quot;12/31/02&quot; and not &quot;04/24/13&quot;?    Thank you!</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>HansA</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4632-Querying-on-date-issues</guid>
		</item>
		<item>
			<title>setTimeout in SharedWorker has problems under Windows</title>
			<link>http://forum.wakanda.org/showthread.php?4629-setTimeout-in-SharedWorker-has-problems-under-Windows&amp;goto=newpost</link>
			<pubDate>Wed, 24 Apr 2013 15:13:10 GMT</pubDate>
			<description>Hi, 
 
the latest WAK4 release (4.131311) fixed the issue with the sharedworker behaving nuts after being started in the bootstrap. But in this fix,...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
the latest WAK4 release (4.131311) fixed the issue with the sharedworker behaving nuts after being started in the bootstrap. But in this fix, a SharedWorker has problems with setTimeout. We use setTimeout to call a function at a regular base. (we use setTimeout by intention, but setInterval has the same problem)<br />
The function is called several times, but then it stops.<br />
Under Mac OSX it works fine as expected, but not under Windows (7 Ultimate), neither 64bit nor 32bit (also tested on different machine).<br />
<br />
To reproduce this, I have attached a sample solution. Just start the server, open the debugger (or open the logs) and you should see a &quot;beep&quot;-string every second. In OSX it does, but in Windows the worker stops working... pretty lazy worker eh :RpS_wink:?</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://forum.wakanda.org/attachment.php?attachmentid=2617&amp;d=1366815707">worker.zip&lrm;</a> 
(1,003.5 KB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>Michael Hong</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4629-setTimeout-in-SharedWorker-has-problems-under-Windows</guid>
		</item>
		<item>
			<title>External Databases</title>
			<link>http://forum.wakanda.org/showthread.php?4627-External-Databases&amp;goto=newpost</link>
			<pubDate>Wed, 24 Apr 2013 13:31:57 GMT</pubDate>
			<description>Very new to wakanda so some things I only understand like a 5 year old. 
 
I am trying to figure out what options are available to connect to...</description>
			<content:encoded><![CDATA[<div>Very new to wakanda so some things I only understand like a 5 year old.<br />
<br />
I am trying to figure out what options are available to connect to external databases. Like many people I have apps that are using MySQL and MSSQL databases. I have been reading through the posts here trying to discern the options available.<br />
<br />
I don't necessary want to import the data rather just do a query against the existing database. For example, a customer has a crm application that stores a client list in MSSQL (or it might be mySQL depending on the scenario). I would like to create an app with Wakanda that references that client list.<br />
<br />
I see a new module for MySQL so the query listed above _I think_ is 'built-in' to Wakanda.  What options are available to connect to a MSSQL database? (I saw one post about system workers + php) Is that the way to go? Create another application to handle the data interaction to SQL and return a json string? Seems like a big performance hit especially in light of how fast Wakanda seems to be.<br />
<br />
Thanks.</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>leroy</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4627-External-Databases</guid>
		</item>
		<item>
			<title><![CDATA[Model : addAttribute & default value]]></title>
			<link>http://forum.wakanda.org/showthread.php?4626-Model-addAttribute-amp-default-value&amp;goto=newpost</link>
			<pubDate>Wed, 24 Apr 2013 11:03:31 GMT</pubDate>
			<description>Hi, 
 
From Model API, when I am creating a new attritube with addAttitrbute command, there is no option for default value. How I will pass a default...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
From Model API, when I am creating a new attritube with addAttitrbute command, there is no option for default value. How I will pass a default value for a specific database field ?<br />
<br />
For example : City-&gt; not null, default value:'Paris'</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?4-Troubleshooting-forum">Troubleshooting forum</category>
			<dc:creator>avac2005</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4626-Model-addAttribute-amp-default-value</guid>
		</item>
		<item>
			<title>Michigan, USA User Group:  Are You Interested?</title>
			<link>http://forum.wakanda.org/showthread.php?4625-Michigan-USA-User-Group-Are-You-Interested&amp;goto=newpost</link>
			<pubDate>Tue, 23 Apr 2013 23:45:00 GMT</pubDate>
			<description>Are you interested in participating in a Michigan Wakanda User Group?  Please review the information below, and let us know if you are interested. 
...</description>
			<content:encoded><![CDATA[<div>Are you interested in participating in a Michigan Wakanda User Group?  Please review the information below, and let us know if you are interested.<br />
<br />
<u>Purpose</u><div style="margin-left:40px">Accelerate development productivity through sharing of non competitive best practices that are of common interest amongst developers leveraging the Wakanda platform.<br />
</div><u><br />
Approach</u><div style="margin-left:40px">Teleconferences (monthly) and face to face (quarterly) meetings, focusing on:</div><ul><li style="margin-left: 40px">Agreed topics of common value</li>
<li style="margin-left: 40px">Roundtable updates on key learnings (save us all time)</li>
<li style="margin-left: 40px">Group think / brainstorming on challenges (help each other)</li>
<li style="margin-left: 40px">Update from the Wakanda team</li>
</ul><div style="margin-left:40px">Agreement to avoid any discussion on business / market related topics that could be considered anti-competitive.  Focus only on best practices that steer clear of intellectual property or proprietary information of any form for the companies that we work for.<br />
<br />
</div><b><u>If you are interested, and are &quot;within driving range&quot; of the Detroit / Lansing, Michigan area, please send an email to Kirk Royster   (kirk.royster@gmail.com) </u></b><br />
<br />
Based upon the feedback received, we'll decide if we have critical mass to proceed.<br />
<br />
Kirk Royster</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>Kirk</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4625-Michigan-USA-User-Group-Are-You-Interested</guid>
		</item>
		<item>
			<title>Get the catalog from the extension APIs</title>
			<link>http://forum.wakanda.org/showthread.php?4623-Get-the-catalog-from-the-extension-APIs&amp;goto=newpost</link>
			<pubDate>Tue, 23 Apr 2013 21:31:26 GMT</pubDate>
			<description>Hello, 
Is there a way to get the catalog from the extension APIs. If not, how the GUI Designer get it ? 
 
Regards!</description>
			<content:encoded><![CDATA[<div>Hello,<br />
Is there a way to get the catalog from the extension APIs. If not, how the GUI Designer get it ?<br />
<br />
Regards!</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?27-Studio-Extensions">Studio Extensions</category>
			<dc:creator>Srinivasa Ramanujan</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4623-Get-the-catalog-from-the-extension-APIs</guid>
		</item>
		<item>
			<title>Solved Grids, Arrays and Components</title>
			<link>http://forum.wakanda.org/showthread.php?4622-Grids-Arrays-and-Components&amp;goto=newpost</link>
			<pubDate>Tue, 23 Apr 2013 19:16:07 GMT</pubDate>
			<description>Can somebody provide me with a basic example showing an array being filled in code and then displaying in a grid.  I can see the rows of the grid...</description>
			<content:encoded><![CDATA[<div>Can somebody provide me with a basic example showing an array being filled in code and then displaying in a grid.  I can see the rows of the grid being added, but my data is never displayed.  Also, say I create an Array in the datasources called myarray  in code I can load myArray[0] with stuff and nothing shows.  I can see that I have sources.myarray also exists.   Then through both the array datasouce / grid into a component.<br />
<br />
Guess I am just confused on getting these to interact properly.  I can display stuff from my model in the grid no problem and all is happy.  <br />
<br />
Thanks!</div>

 ]]></content:encoded>
			<category domain="http://forum.wakanda.org/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>lweidig</dc:creator>
			<guid isPermaLink="true">http://forum.wakanda.org/showthread.php?4622-Grids-Arrays-and-Components</guid>
		</item>
	</channel>
</rss>
