<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic The Ionics keyboard doc page in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089258#M64674</link>
    <description>&lt;P&gt;The Ionics keyboard doc page can be found by locating the github repo for it. Since it is written by a third-party, they provide the documentation, not the XDK. You can also search StackOverflow for others who have used the plugin. Here are some links:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;&lt;A href="https://github.com/Telerik-Verified-Plugins/Keyboard" target="_blank"&gt;https://github.com/Telerik-Verified-Plugins/Keyboard&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="https://github.com/Telerik-Verified-Plugins/Keyboard/network" target="_blank"&gt;https://github.com/Telerik-Verified-Plugins/Keyboard/network&lt;/A&gt; (alternative forks of the plugin)&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="https://search.yahoo.com/yhs/search?p=stackoverflow+ionics+keyboard+plugin+cordova&amp;amp;ei=UTF-8&amp;amp;hspart=mozilla&amp;amp;hsimp=yhs-002" target="_blank"&gt;https://search.yahoo.com/yhs/search?p=stackoverflow+ionics+keyboard+plugin+cordova&amp;amp;ei=UTF-8&amp;amp;hspart=mozilla&amp;amp;hsimp=yhs-002&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Mon, 29 Feb 2016 19:31:28 GMT</pubDate>
    <dc:creator>PaulF_IntelCorp</dc:creator>
    <dc:date>2016-02-29T19:31:28Z</dc:date>
    <item>
      <title>[ASK] about intel xdk</title>
      <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089249#M64665</link>
      <description>&lt;P&gt;sory if i make a mistake...&lt;/P&gt;

&lt;P&gt;i just wanna ask to you, master!!&lt;/P&gt;

&lt;P&gt;i am trying to develope android app with intel xdk, but i got a problem when i installed it on my android device, the problem is like this, when i my keyboard openned, the input field are stacked (behind the keyboard so i cant see what i type on there).&lt;/P&gt;

&lt;P&gt;can you give me some trick to fix it up please?? i need it, thank...&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2016 06:37:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089249#M64665</guid>
      <dc:creator>Hyuga__Avos</dc:creator>
      <dc:date>2016-02-26T06:37:04Z</dc:date>
    </item>
    <item>
      <title>Please try using the Ionics</title>
      <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089250#M64666</link>
      <description>&lt;P&gt;Please try using the Ionics keyboard plugin. You'll find it in the featured plugins list. From that list you can find the documentation for it. This usually resolves the problems that most people have with the Android keyboard.&lt;/P&gt;

&lt;P&gt;Also, please build your app with Crosswalk for Android, you'll get much better results.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2016 16:47:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089250#M64666</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-02-26T16:47:20Z</dc:date>
    </item>
    <item>
      <title>If not using a third party</title>
      <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089251#M64667</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;If not using a third party framework or library, you can invoke a scroll of the page with the following snippet of code:&lt;/SPAN&gt;&lt;/P&gt;

&lt;PRE class="brush:xml;"&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;style&amp;gt;
body {
width:100%;
height: 100vh;
}
&amp;lt;/style&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;

&amp;lt;p&amp;gt;Click the button to scroll the document window to 500 pixels horizontally.&amp;lt;/p&amp;gt;

&amp;lt;button onclick="scrollWin()"&amp;gt;Click me to scroll!&amp;lt;/button&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;

&amp;lt;script&amp;gt;
function scrollWin() {
    window.scrollTo(0, 100);
}
&amp;lt;/script&amp;gt;

&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/PRE&gt;

&lt;P&gt;If you are using a third party framework or library, i recommend reviewing it's documentation since libraries tend to have there own method of invoking scrolling of the page.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2016 16:50:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089251#M64667</guid>
      <dc:creator>Elroy_A_Intel</dc:creator>
      <dc:date>2016-02-26T16:50:38Z</dc:date>
    </item>
    <item>
      <title>thank you for your answer,</title>
      <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089252#M64668</link>
      <description>&lt;P&gt;thank you for your answer,&lt;/P&gt;

&lt;P&gt;I'll try it one by one....... I'll tell you if it works..&lt;/P&gt;</description>
      <pubDate>Sat, 27 Feb 2016 01:32:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089252#M64668</guid>
      <dc:creator>Hyuga__Avos</dc:creator>
      <dc:date>2016-02-27T01:32:05Z</dc:date>
    </item>
    <item>
      <title>O Aplicativo não esta abrindo</title>
      <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089253#M64669</link>
      <description>&lt;P&gt;O Aplicativo não esta abrindo no windows 10, alguém pode me ajudar?&lt;BR /&gt;
	The application does not open in Windows 10, you can help me&lt;/P&gt;</description>
      <pubDate>Sat, 27 Feb 2016 01:35:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089253#M64669</guid>
      <dc:creator>Djalma_G_</dc:creator>
      <dc:date>2016-02-27T01:35:00Z</dc:date>
    </item>
    <item>
      <title>Quote:Djalma G. wrote:</title>
      <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089254#M64670</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Djalma G. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;O Aplicativo não esta abrindo no windows 10, alguém pode me ajudar?&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;can you speak english please?? i can't speak portuguese or spanish.. if you mean i am using windows 10 or somewhat, my answer is I am using android.. thank&lt;/P&gt;</description>
      <pubDate>Sat, 27 Feb 2016 01:46:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089254#M64670</guid>
      <dc:creator>Hyuga__Avos</dc:creator>
      <dc:date>2016-02-27T01:46:35Z</dc:date>
    </item>
    <item>
      <title>Quote:Avos H. wrote:</title>
      <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089255#M64671</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Avos H. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&lt;STRONG class="quote-header"&gt;Quote: Sorry, so...&amp;nbsp;&lt;/STRONG&gt;the application does not open in Windows 10, you can help me&lt;/P&gt;

&lt;BLOCKQUOTE class="quote-msg quote-nest-1 odd"&gt;
	&lt;DIV class="quote-author"&gt;&lt;EM class="placeholder"&gt;Djalma G.&lt;/EM&gt; wrote:&lt;/DIV&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;O Aplicativo não esta abrindo no windows 10, alguém pode me ajudar?&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;can you speak english please?? i can't speak portuguese or spanish.. if you mean i am using windows 10 or somewhat, my answer is I am using android.. thank&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Feb 2016 01:57:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089255#M64671</guid>
      <dc:creator>Djalma_G_</dc:creator>
      <dc:date>2016-02-27T01:57:11Z</dc:date>
    </item>
    <item>
      <title>Quote:Paul F. (Intel) wrote:</title>
      <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089256#M64672</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Paul F. (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Please try using the Ionics keyboard plugin. You'll find it in the featured plugins list. From that list you can find the documentation for it. This usually resolves the problems that most people have with the Android keyboard.&lt;/P&gt;

&lt;P&gt;Also, please build your app with Crosswalk for Android, you'll get much better results.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hi, it's works. I've build it by crosswalk and my input doesn't hide behind the keyboard, but I've to scroll it up manually. how to make it scroll automatic when android launch its keyboard..&lt;/P&gt;

&lt;P&gt;I am add the ionic keyboard plug-in already, but I am not understand how to use it. can you give me link to the tutorial page?&lt;/P&gt;</description>
      <pubDate>Sat, 27 Feb 2016 02:36:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089256#M64672</guid>
      <dc:creator>Hyuga__Avos</dc:creator>
      <dc:date>2016-02-27T02:36:30Z</dc:date>
    </item>
    <item>
      <title>Quote:Djalma G. wrote:</title>
      <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089257#M64673</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Djalma G. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&lt;STRONG class="quote-header"&gt;Quote:&lt;/STRONG&gt;&lt;/P&gt;

&lt;BLOCKQUOTE class="quote-msg quote-nest-1 odd"&gt;
	&lt;DIV class="quote-author"&gt;&lt;EM class="placeholder"&gt;Avos H.&lt;/EM&gt; wrote:&lt;/DIV&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;&lt;STRONG&gt;Quote: Sorry, so...&amp;nbsp;&lt;/STRONG&gt;the application does not open in Windows 10, you can help me&lt;/P&gt;

	&lt;BLOCKQUOTE&gt;
		&lt;P&gt;&lt;EM&gt;Djalma G.&lt;/EM&gt; wrote:&lt;/P&gt;

		&lt;P&gt;&amp;nbsp;&lt;/P&gt;

		&lt;P&gt;O Aplicativo não esta abrindo no windows 10, alguém pode me ajudar?&lt;/P&gt;

		&lt;P&gt;&amp;nbsp;&lt;/P&gt;
	&lt;/BLOCKQUOTE&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;can you speak english please?? i can't speak portuguese or spanish.. if you mean i am using windows 10 or somewhat, my answer is I am using android.. thank&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;intel xdk application or another aplication..&lt;/P&gt;

&lt;P&gt;if another aplication is better you update your windows, because windows 10 is not stable enough&lt;/P&gt;</description>
      <pubDate>Sat, 27 Feb 2016 02:46:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089257#M64673</guid>
      <dc:creator>Hyuga__Avos</dc:creator>
      <dc:date>2016-02-27T02:46:20Z</dc:date>
    </item>
    <item>
      <title>The Ionics keyboard doc page</title>
      <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089258#M64674</link>
      <description>&lt;P&gt;The Ionics keyboard doc page can be found by locating the github repo for it. Since it is written by a third-party, they provide the documentation, not the XDK. You can also search StackOverflow for others who have used the plugin. Here are some links:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;&lt;A href="https://github.com/Telerik-Verified-Plugins/Keyboard" target="_blank"&gt;https://github.com/Telerik-Verified-Plugins/Keyboard&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="https://github.com/Telerik-Verified-Plugins/Keyboard/network" target="_blank"&gt;https://github.com/Telerik-Verified-Plugins/Keyboard/network&lt;/A&gt; (alternative forks of the plugin)&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="https://search.yahoo.com/yhs/search?p=stackoverflow+ionics+keyboard+plugin+cordova&amp;amp;ei=UTF-8&amp;amp;hspart=mozilla&amp;amp;hsimp=yhs-002" target="_blank"&gt;https://search.yahoo.com/yhs/search?p=stackoverflow+ionics+keyboard+plugin+cordova&amp;amp;ei=UTF-8&amp;amp;hspart=mozilla&amp;amp;hsimp=yhs-002&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Mon, 29 Feb 2016 19:31:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089258#M64674</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-02-29T19:31:28Z</dc:date>
    </item>
    <item>
      <title>Quote:Paul F. (Intel) wrote:</title>
      <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089259#M64675</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Paul F. (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;The Ionics keyboard doc page can be found by locating the github repo for it. Since it is written by a third-party, they provide the documentation, not the XDK. You can also search StackOverflow for others who have used the plugin. Here are some links:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;&lt;A href="https://github.com/Telerik-Verified-Plugins/Keyboard"&gt;https://github.com/Telerik-Verified-Plugins/Keyboard&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="https://github.com/Telerik-Verified-Plugins/Keyboard/network"&gt;https://github.com/Telerik-Verified-Plugins/Keyboard/network&lt;/A&gt; (alternative forks of the plugin)&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="https://search.yahoo.com/yhs/search?p=stackoverflow+ionics+keyboard+plugin+cordova&amp;amp;ei=UTF-8&amp;amp;hspart=mozilla&amp;amp;hsimp=yhs-002"&gt;https://search.yahoo.com/yhs/search?p=stackoverflow+ionics+keyboard+plug...&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;ok, i'll try it then...&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 04:18:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089259#M64675</guid>
      <dc:creator>Hyuga__Avos</dc:creator>
      <dc:date>2016-03-01T04:18:37Z</dc:date>
    </item>
    <item>
      <title>Since the Ionic Keyboard</title>
      <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089260#M64676</link>
      <description>&lt;P&gt;Since the Ionic Keyboard &amp;nbsp;plugin provides methods that are triggered when keyboard is shown or hidden, you can execute a scroll action at that specific time. The mechanism for scrolling the page is dependent on the UI framework that you are using as all frameworks' have their own way of scrolling their pages.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 07:56:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089260#M64676</guid>
      <dc:creator>Elroy_A_Intel</dc:creator>
      <dc:date>2016-03-01T07:56:11Z</dc:date>
    </item>
    <item>
      <title>Quote:Elroy Ashtian Jr (Intel</title>
      <link>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089261#M64677</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Elroy Ashtian Jr (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Since the Ionic Keyboard &amp;nbsp;plugin provides methods that are triggered when keyboard is shown or hidden, you can execute a scroll action at that specific time. The mechanism for scrolling the page is dependent on the UI framework that you are using as all frameworks' have their own way of scrolling their pages.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;me and&amp;nbsp; my friend using bootstrap framework, can you give me example??&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2016 01:06:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/ASK-about-intel-xdk/m-p/1089261#M64677</guid>
      <dc:creator>Hyuga__Avos</dc:creator>
      <dc:date>2016-03-02T01:06:25Z</dc:date>
    </item>
  </channel>
</rss>

