<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>SharpKit Support Google Group</title>
  <link>http://groups.google.com/group/sharpkit</link>
  <description>SharpKit is a C#/JavaScript cross-compiler. </description>
  <language>en</language>
  <item>
  <title>Re: apply JsType to entire assembly</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/6c9d613a4cc5252a/768e1dbe6477a2fd?show_docid=768e1dbe6477a2fd</link>
  <description>
  That did not fix it. I&#39;m still seeing the same behavior.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/6c9d613a4cc5252a/768e1dbe6477a2fd?show_docid=768e1dbe6477a2fd</guid>
  <author>
  rful...@gmail.com
  (Ryan Fuller)
  </author>
  <pubDate>Wed, 15 May 2013 19:14:43 UT
</pubDate>
  </item>
  <item>
  <title>Re: apply JsType to entire assembly</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/6c9d613a4cc5252a/09f4fc4f12d2963e?show_docid=09f4fc4f12d2963e</link>
  <description>
  Hi Ryan, &lt;br&gt; &lt;p&gt;It sounds like a bug, but try this: &lt;br&gt; [assembly: JsExport(DefaultFilename= &amp;quot;~/../MyProject/Scripts/MyScri pts.js&amp;quot;)] &lt;br&gt; &lt;p&gt;This is a more general way of saying the same thing. &lt;br&gt; &lt;p&gt;Cheers &lt;br&gt; Dan-el
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/6c9d613a4cc5252a/09f4fc4f12d2963e?show_docid=09f4fc4f12d2963e</guid>
  <author>
  danelk...@gmail.com
  (Dan-el Khen)
  </author>
  <pubDate>Wed, 15 May 2013 19:05:36 UT
</pubDate>
  </item>
  <item>
  <title>apply JsType to entire assembly</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/6c9d613a4cc5252a/dc7de2e8e198ac46?show_docid=dc7de2e8e198ac46</link>
  <description>
  I&#39;m using [assembly: JsType(JsMode.Prototype, Filename = &lt;br&gt; &amp;quot;~/../MyProject/Scripts/MyScri pts.js&amp;quot;)] in my AssemblyInfo.cs class. I&#39;m &lt;br&gt; trying to apply that attribute to every class in the assembly so that every &lt;br&gt; class is output to the specified file. However it&#39;s not working. Classes &lt;br&gt; that do not have the JsType attribute applied directly to them do not
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/6c9d613a4cc5252a/dc7de2e8e198ac46?show_docid=dc7de2e8e198ac46</guid>
  <author>
  rful...@gmail.com
  (Ryan Fuller)
  </author>
  <pubDate>Wed, 15 May 2013 18:52:18 UT
</pubDate>
  </item>
  <item>
  <title>Re: How to create properly event and callback: should I use EventListener ?</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/adcea4a72ce25cc7/8d4bc824773a4df2?show_docid=8d4bc824773a4df2</link>
  <description>
  Hi, &lt;br&gt; It should go something like this: &lt;br&gt; [JsType(JsMode.Prototype)] &lt;br&gt; public class Document &lt;br&gt; { &lt;br&gt; public void addEventListener(JsString name, &lt;br&gt; JsAction&amp;lt;MyFrameworkEventArgs&amp;gt; handler) &lt;br&gt; { &lt;br&gt; } &lt;br&gt; } &lt;br&gt; &lt;p&gt; [JsType(JsMode.Prototype)] &lt;br&gt; public class MyFrameworkEventArgs
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/adcea4a72ce25cc7/8d4bc824773a4df2?show_docid=8d4bc824773a4df2</guid>
  <author>
  danelk...@gmail.com
  (Dan-el Khen)
  </author>
  <pubDate>Wed, 15 May 2013 08:12:16 UT
</pubDate>
  </item>
  <item>
  <title>How to create properly event and callback: should I use EventListener ?</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/adcea4a72ce25cc7/a6fba668975c7b81?show_docid=a6fba668975c7b81</link>
  <description>
  Hi, &lt;br&gt; &lt;p&gt;I use a javascript framework wich use events like this : &lt;br&gt; &amp;quot; &lt;br&gt; document.addEventListener(&#39;con tacts_choose&#39;, onChooseContact); &lt;br&gt; function onChooseContact(evt) {...} &lt;br&gt; &amp;quot; &lt;br&gt; What is the correct implementation in C# (in order to make a wrapper) ? If &lt;br&gt; I use addEventListener, I must use EventListener, but how ?
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/adcea4a72ce25cc7/a6fba668975c7b81?show_docid=a6fba668975c7b81</guid>
  <author>
  revo...@gmail.com
  </author>
  <pubDate>Tue, 14 May 2013 15:47:32 UT
</pubDate>
  </item>
  <item>
  <title>Re: Generic jQuery &#39;each&#39; function</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/b6e43d974ebe7243?show_docid=b6e43d974ebe7243</link>
  <description>
  Hi, &lt;br&gt; &lt;p&gt;I&#39;m not sure how to answer this, but the general idea is that you can use &lt;br&gt; SharpKit to generate any type of code, as well as to use any library. While &lt;br&gt; it&#39;s allowing you to maintain your code in C#, which have many advantages &lt;br&gt; over writing code directly in JavaScript. &lt;br&gt; &lt;p&gt;Cheers &lt;br&gt; Dan-el &lt;br&gt; &lt;p&gt;On Wed, May 8, 2013 at 8:24 AM, pushpendra kumar &amp;lt;
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/b6e43d974ebe7243?show_docid=b6e43d974ebe7243</guid>
  <author>
  danelk...@gmail.com
  (Dan-el Khen)
  </author>
  <pubDate>Sun, 12 May 2013 16:17:52 UT
</pubDate>
  </item>
  <item>
  <title>Re: Generic jQuery &#39;each&#39; function</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/424527a009c59876?show_docid=424527a009c59876</link>
  <description>
  Hi Dan, &lt;br&gt; &lt;p&gt; Can you please explain the career scope in backbone. js. &lt;br&gt; As i am working on backboneJs with requireJs these days. &lt;br&gt; And want to make my career as javascript developer with &lt;br&gt; backbone.js. &lt;br&gt; &lt;p&gt;Regards, &lt;br&gt; Pushpendra
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/424527a009c59876?show_docid=424527a009c59876</guid>
  <author>
  pushpendra.program...@gmail.com
  (pushpendra kumar)
  </author>
  <pubDate>Wed, 08 May 2013 05:24:49 UT
</pubDate>
  </item>
  <item>
  <title>Re: Generic jQuery &#39;each&#39; function</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/67f127fda429b695?show_docid=67f127fda429b695</link>
  <description>
  No problem :-) &lt;br&gt; Cheers &lt;br&gt; &lt;p&gt;On Tue, May 7, 2013 at 10:50 AM, pushpendra kumar &amp;lt;
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/67f127fda429b695?show_docid=67f127fda429b695</guid>
  <author>
  danelk...@gmail.com
  (Dan-el Khen)
  </author>
  <pubDate>Tue, 07 May 2013 17:03:43 UT
</pubDate>
  </item>
  <item>
  <title>Re: Generic jQuery &#39;each&#39; function</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/35d53f88c26dbb35?show_docid=35d53f88c26dbb35</link>
  <description>
  Thank you so much Dan, &lt;br&gt; &lt;p&gt; Its working properly. &lt;br&gt; &lt;p&gt;Regards, &lt;br&gt; Pushpendra
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/35d53f88c26dbb35?show_docid=35d53f88c26dbb35</guid>
  <author>
  pushpendra.program...@gmail.com
  (pushpendra kumar)
  </author>
  <pubDate>Tue, 07 May 2013 07:50:56 UT
</pubDate>
  </item>
  <item>
  <title>Re: Generic jQuery &#39;each&#39; function</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/9fc646372513736b?show_docid=9fc646372513736b</link>
  <description>
  Well, the basic concept is that it&#39;s hard maintaining a complex / large &lt;br&gt; JavaScript project in pure JavaScript since you can&#39;t compile / refactor / &lt;br&gt; cleanup / modify your code. SharpKit allows you to generate the exact same &lt;br&gt; code, but maintain the code in C#, thus gaining *all *of your IDE&#39;s and &lt;br&gt; tools features.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/9fc646372513736b?show_docid=9fc646372513736b</guid>
  <author>
  danelk...@gmail.com
  (Dan-el Khen)
  </author>
  <pubDate>Tue, 07 May 2013 06:48:36 UT
</pubDate>
  </item>
  <item>
  <title>Re: Generic jQuery &#39;each&#39; function</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/a285f0701da5e907?show_docid=a285f0701da5e907</link>
  <description>
  Thank you so much Dan-el Khen. &lt;br&gt; &lt;p&gt;Can you explain please, how can use sharpkit code in C# with javascript. &lt;br&gt; &lt;p&gt;Thanks and Regards, &lt;br&gt; Pushpendra
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/a285f0701da5e907?show_docid=a285f0701da5e907</guid>
  <author>
  pushpendra.program...@gmail.com
  (pushpendra kumar)
  </author>
  <pubDate>Sun, 05 May 2013 02:19:43 UT
</pubDate>
  </item>
  <item>
  <title>Re: Kendo UI Sample</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/043f82a96dec7be7/f3ad5655abb1d3d6?show_docid=f3ad5655abb1d3d6</link>
  <description>
  Hi, sorry for the late response. &lt;br&gt; &lt;p&gt;Have you looked at this one? &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;https://code.google.com/p/sharpkit/source/browse/trunk/samples/KendoUISamples&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; &lt;p&gt;Cheers &lt;br&gt; Dan-el
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/043f82a96dec7be7/f3ad5655abb1d3d6?show_docid=f3ad5655abb1d3d6</guid>
  <author>
  danelk...@gmail.com
  (Dan-el Khen)
  </author>
  <pubDate>Mon, 29 Apr 2013 13:50:04 UT
</pubDate>
  </item>
  <item>
  <title>Re: Generic list as an array</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/23c1e9e69ebfef0b/3109f85d9e10010f?show_docid=3109f85d9e10010f</link>
  <description>
  Done, thanks! &lt;br&gt; &lt;p&gt;Dan-el
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/23c1e9e69ebfef0b/3109f85d9e10010f?show_docid=3109f85d9e10010f</guid>
  <author>
  danelk...@gmail.com
  (Dan-el Khen)
  </author>
  <pubDate>Sun, 28 Apr 2013 10:03:28 UT
</pubDate>
  </item>
  <item>
  <title>Re: Generic jQuery &#39;each&#39; function</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/46ef6b79eb67143d?show_docid=46ef6b79eb67143d</link>
  <description>
  Hi, &lt;br&gt; &lt;p&gt;Ok, what you need to do is to either use JavaScript attribute access using &lt;br&gt; brackets: obj[&amp;quot;prop&amp;quot;], or use create a new jQuery object for each element &lt;br&gt; and use the jQuery attr(&amp;quot;attributeName&amp;quot;) / prop(&amp;quot;propertyName&amp;quot;) method: &lt;br&gt; &lt;p&gt;var properyToMatch = &amp;quot;value&amp;quot;; &lt;br&gt; var q = $(&amp;quot;A&amp;quot;); &lt;br&gt; var valueToMatch = &amp;quot;Hello&amp;quot;;
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/46ef6b79eb67143d?show_docid=46ef6b79eb67143d</guid>
  <author>
  danelk...@gmail.com
  (Dan-el Khen)
  </author>
  <pubDate>Sun, 28 Apr 2013 09:59:12 UT
</pubDate>
  </item>
  <item>
  <title>Re: Generic jQuery &#39;each&#39; function</title>
  <link>http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/b4e510b1f61ef743?show_docid=b4e510b1f61ef743</link>
  <description>
  HI Dan-el, &lt;br&gt; &lt;p&gt; Actually i want to search the elements on the basis of &lt;br&gt; different properties dynamically. Like value,label,group etc. &lt;br&gt; So in the var propertyToMatch i have value,label string and then search in &lt;br&gt; array on the basis of that. &lt;br&gt; Also i am not using sharpkit and have no idea of same.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/sharpkit/browse_thread/thread/f4a9b09f9bd1b0f1/b4e510b1f61ef743?show_docid=b4e510b1f61ef743</guid>
  <author>
  pushpendra.program...@gmail.com
  (pushpendra kumar)
  </author>
  <pubDate>Sat, 27 Apr 2013 09:44:32 UT
</pubDate>
  </item>
  </channel>
</rss>
