﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - Crosslight - How to Use Crosslight to Enable Scroll to Visible on Text Fields</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Enable-Scroll-to-Visible-on-Text-Fields/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>How to Use Crosslight to Enable Scroll to Visible on Text Fields</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Enable-Scroll-to-Visible-on-Text-Fields/</link><pubDate>Thu, 05 Mar 2015 05:34:25 GMT</pubDate><dc:creator>Arief</dc:creator><description>I see thanks jimmy for your instructions, i successfully use autoscrolltovisible, look likes i forgot to add the scroll view</description></item><item><title>How to Use Crosslight to Enable Scroll to Visible on Text Fields</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Enable-Scroll-to-Visible-on-Text-Fields/</link><pubDate>Tue, 03 Mar 2015 17:18:15 GMT</pubDate><dc:creator>jtungol@silentpartnersoft.com</dc:creator><description>If you're using the samples provided by Crosslight then you will be having issues with LogoView. That's fine. I think the solution to this is by using the correct view. That is to use a &lt;span style="font-weight: bold;"&gt;ScrollView &lt;/span&gt;in order for &lt;span style="font-weight: bold;"&gt;AutoScrollToVisible &lt;/span&gt;to work.&lt;br&gt;</description></item><item><title>How to Use Crosslight to Enable Scroll to Visible on Text Fields</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Enable-Scroll-to-Visible-on-Text-Fields/</link><pubDate>Thu, 26 Feb 2015 02:45:57 GMT</pubDate><dc:creator>Arief</dc:creator><description>&lt;p&gt;Hello Jimmy,&lt;br&gt;&lt;br&gt;I'm unsuccessfully replicate your problem, i got no error except "&lt;span style="color: rgb(51, 51, 51); font-family: 'Lucida Grande', 'Lucida Sans Unicode', Helvetica, Arial, Verdana, sans-serif; font-size: 13px; line-height: 19.5px; background-color: rgb(255, 255, 255);"&gt;Object reference not set to an instance of an object" that caused by&amp;nbsp;&lt;/span&gt;&lt;span style="color: rgb(63, 63, 63); font-family: 'Courier New', Tahoma; font-size: 9pt; line-height: 18px; white-space: pre-wrap; background-color: rgb(255, 252, 225);"&gt;var p_LogoView &lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;giving me a null value but AutoScrollToVisible work normally&amp;nbsp;&lt;br&gt;&lt;br&gt;I'm using MVVM samples a&lt;/span&gt;nd i insert your code inside BindingProviderViewController.cs in view controller folder i attach the file in this message, could you replicate your problem using that samples and send it to me?&lt;/p&gt;</description></item><item><title>How to Use Crosslight to Enable Scroll to Visible on Text Fields</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Enable-Scroll-to-Visible-on-Text-Fields/</link><pubDate>Wed, 25 Feb 2015 17:35:23 GMT</pubDate><dc:creator>jtungol@silentpartnersoft.com</dc:creator><description>Here's how.&lt;br&gt;&lt;br&gt;&lt;pre&gt;        public UserLoginViewController()            : base("UserLoginView", null)
        {
        }

        public override bool HideKeyboardOnTap
        {
            get
            {
                return true;
            }
        }

        public override bool AutoScrollToVisible 
        {
            get 
            {
                return true;
            }
        }

        public override bool ShouldAutorotate()
        {
            return false;
        }

        protected override void InitializeView()
        {
            base.InitializeView();

            // Support pre-iPhone5 display
            // Get the control instance from the view controller.
            var p_BlurryView = this.View.ViewWithTag(101);
            var p_LogoView = this.View.ViewWithTag(102);

            // Support pre-iPhone5 display
            if (UIScreen.MainScreen.Bounds.Height &amp;lt;= 480)
            {
                p_LogoView.Frame = new CGRect(
                    p_LogoView.Frame.Left + 10, 
                    p_LogoView.Frame.Top,
                    p_LogoView.Frame.Width - 20, 
                    p_LogoView.Frame.Height - 35);

                p_BlurryView.Frame = new CGRect(
                    p_BlurryView.Frame.Left, 
                    p_BlurryView.Frame.Top - 40,
                    p_BlurryView.Frame.Width, 
                    p_BlurryView.Frame.Height);
            }

            // Needed in iOS 7.1
            p_BlurryView.SetNeedsDisplay();
            p_LogoView.SetNeedsDisplay();
        }&lt;/pre&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description></item><item><title>How to Use Crosslight to Enable Scroll to Visible on Text Fields</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Enable-Scroll-to-Visible-on-Text-Fields/</link><pubDate>Wed, 25 Feb 2015 10:07:41 GMT</pubDate><dc:creator>Arief</dc:creator><description>&lt;p&gt;Hello Jimmy,&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;&lt;br&gt;AutoScrollToVisible is exclusively only for IOS platform&lt;i&gt; &lt;/i&gt;due to built-in feature not exist inside IOS (Apple decide not to implement that feature for design flexibility &amp;amp; dynamic reasons), for other Platform that feature was already built-in and automatically applied so you don't need to use AutoScrollToVisible. You can read more about IOS &amp;amp; AutoScrollToVisible&amp;nbsp;&lt;/span&gt;&lt;a href="http://developer.intersoftpt.com/display/crosslight/Getting+Started+with+Crosslight+iOS+App" target="_blank" style="font-size: 10pt;"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;&lt;br&gt;If you want i can check your AutoScrollToVisible b&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;ut i need you tell me your AutoScrollToVisible implementation code or you can attach the error file&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;&lt;br&gt;But normally you only need to use this code inside your View Controller in IOS folder&lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;public override bool AutoScrollToVisible               {            get            {                return true;            }        }&lt;/pre&gt;&lt;p&gt;&lt;br&gt;Hope that answer your question :)&lt;br&gt;&lt;br&gt;Best Regards,&lt;br&gt;Arief&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;</description></item><item><title>How to Use Crosslight to Enable Scroll to Visible on Text Fields</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Enable-Scroll-to-Visible-on-Text-Fields/</link><pubDate>Wed, 25 Feb 2015 05:11:51 GMT</pubDate><dc:creator>jtungol@silentpartnersoft.com</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;How do we enable AutoScrollToVisible property for ALL platforms (iOS, Android, WinRT, WinPhone) without Crosslight getting a "Object reference not set to an instance of an object" error? Please advise.&lt;/p&gt;&lt;p&gt;Thanks!&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>