﻿<?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 - WebInput - IE8 Horizontal Cursor lost when HorizontalAlign is Right</title><link>http://www.intersoftsolutions.com/Community/WebInput/IE8-Horizontal-Cursor-lost-when-HorizontalAlign-is-Right/</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>IE8 Horizontal Cursor lost when HorizontalAlign is Right</title><link>http://www.intersoftsolutions.com/Community/WebInput/IE8-Horizontal-Cursor-lost-when-HorizontalAlign-is-Right/</link><pubDate>Wed, 29 Sep 2010 23:17:59 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>&lt;p&gt;In my test by putting the script section at the end of the html code, we could run the snippet without any issue. HTML snippet:&lt;/p&gt;&lt;pre&gt;&amp;lt;html xmlns="http://www.w3.org/1999/xhtml"&amp;gt;&lt;br /&gt;&amp;lt;head runat="server"&amp;gt;&lt;br /&gt;    &amp;lt;title&amp;gt;Untitled Page&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body id="body" runat="server" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0"&amp;gt;&lt;br /&gt;    &amp;lt;form id="form1" runat="server"&amp;gt;&lt;br /&gt;    &amp;lt;div style="margin-left:10px; margin-top: 25px;"&amp;gt;&lt;br /&gt;        &amp;lt;ISWebInput:WebInput ID="WebInput1" runat="server" MaxLength="5" Width="40px" NumericInput="True" Text="1.2"&amp;gt;&lt;br /&gt;            &amp;lt;CultureInfo CultureName="en-US"&amp;gt;&lt;br /&gt;            &amp;lt;/CultureInfo&amp;gt;&lt;br /&gt;            &amp;lt;DisplayFormat ErrorMessage="Enter a Valid Quantity" ErrorText="Enter a Valid Quantity"&lt;br /&gt;                IsEnabled="True" Type="Number" Format="#,###.0"&amp;gt;&lt;br /&gt;            &amp;lt;/DisplayFormat&amp;gt;&lt;br /&gt;            &amp;lt;TextBoxStyle&amp;gt;&lt;br /&gt;                &amp;lt;Normal Font-Names="Times New Roman" Font-Size="10pt" HorizontalAlign="Right"&amp;gt;&lt;br /&gt;                    &amp;lt;BorderSettings&amp;gt;&lt;br /&gt;                        &amp;lt;Bottom Width="0px" /&amp;gt;&lt;br /&gt;                        &amp;lt;Left Width="0px" /&amp;gt;&lt;br /&gt;                        &amp;lt;Right Width="0px" /&amp;gt;&lt;br /&gt;                        &amp;lt;Top Width="0px" /&amp;gt;&lt;br /&gt;                    &amp;lt;/BorderSettings&amp;gt;&lt;br /&gt;                &amp;lt;/Normal&amp;gt;&lt;br /&gt;                &amp;lt;Over BaseStyle="Normal" /&amp;gt;&lt;br /&gt;                &amp;lt;Active BaseStyle="Normal"&amp;gt;&lt;br /&gt;                &amp;lt;/Active&amp;gt;&lt;br /&gt;            &amp;lt;/TextBoxStyle&amp;gt;&lt;br /&gt;        &amp;lt;/ISWebInput:WebInput&amp;gt;&lt;br /&gt;    &amp;lt;/div&amp;gt;&lt;br /&gt;    &amp;lt;script type="text/javascript" language="javascript"&amp;gt;&lt;br /&gt;        function initLoad()&lt;br /&gt;        {&lt;br /&gt;            var input = ISGetObject("WebInput1");&lt;br /&gt;&lt;br /&gt;            input.GetControlElement().style.width = "36px";&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        initLoad();&lt;br /&gt;    &amp;lt;/script&amp;gt;&lt;br /&gt;    &amp;lt;/form&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/pre&gt;&lt;p&gt;In summary, there is still 2 issue based on the test, border and width.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>IE8 Horizontal Cursor lost when HorizontalAlign is Right</title><link>http://www.intersoftsolutions.com/Community/WebInput/IE8-Horizontal-Cursor-lost-when-HorizontalAlign-is-Right/</link><pubDate>Wed, 29 Sep 2010 08:34:08 GMT</pubDate><dc:creator>DJBadin</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;When I tried you code, ISGetObject was not an object yet.&lt;/p&gt;
&lt;p&gt;I had to call it after the window loaded.&lt;/p&gt;&lt;pre&gt;	function initLoad()
	{
		var input = ISGetObject("WebInput1");
		input.GetControlElement().style.width = "36px";
	}

	//initLoad();
	window.onload = initLoad;
&lt;/pre&gt;

&lt;p&gt;So the 2 issues are:&lt;/p&gt;
&lt;p&gt;- border&lt;/p&gt;
&lt;p&gt;- width&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;</description></item><item><title>IE8 Horizontal Cursor lost when HorizontalAlign is Right</title><link>http://www.intersoftsolutions.com/Community/WebInput/IE8-Horizontal-Cursor-lost-when-HorizontalAlign-is-Right/</link><pubDate>Wed, 29 Sep 2010 06:07:34 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>&lt;p&gt;Thank you for the detail description of the issue. Using the snippet i have sucessfully replicate the issue on my environment. I have added these findings to the earlier feature request to indicate the feature has not been fully applied.&lt;/p&gt;&lt;p&gt;In the mean time, in my test, in order to resolve the first load issue you will need to set the width of the internal input element to a smaller size than the one defined in tthe WebInput. From my analysis the difference seems to be 4px. Here is the snippet:&lt;/p&gt;&lt;pre&gt;&amp;lt;script type="text/javascript" language="javascript"&amp;gt;&lt;br /&gt;    function initLoad()&lt;br /&gt;    {&lt;br /&gt;        var input = ISGetObject("WebInput1");&lt;br /&gt;        input.GetControlElement().style.width = "36px";&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    initLoad();&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;  &lt;/p&gt;</description></item><item><title>IE8 Horizontal Cursor lost when HorizontalAlign is Right</title><link>http://www.intersoftsolutions.com/Community/WebInput/IE8-Horizontal-Cursor-lost-when-HorizontalAlign-is-Right/</link><pubDate>Tue, 28 Sep 2010 12:39:56 GMT</pubDate><dc:creator>DJBadin</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am using WebInput 4.0.7200.5 and WebUI Framework 3.0.5000.755.&lt;/p&gt;
&lt;p&gt;Add Text="1.2" to the WebInput.&lt;/p&gt;&lt;pre&gt;		&amp;lt;ISWebInput:WebInput
			ID="_WebInput"
			runat="server"
			MaxLength="5"
			Width="40px"
			NumericInput="True"
			Text="1.2"
		&amp;gt;&lt;/pre&gt;

&lt;p&gt;Before typing in anything into WebInput, the 2 is chopped off&lt;br /&gt; &lt;br /&gt;After typing in 1.2 all of the number can be seen&lt;br /&gt; &lt;/p&gt;
&lt;p&gt;After adding borders:&lt;/p&gt;
&lt;p&gt;Before typing in anything into WebInput, the 2 is chopped off but not as much&lt;br /&gt; &lt;br /&gt;After typing in 1.2 all of the number can be seen.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;See attached file.&lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item><item><title>IE8 Horizontal Cursor lost when HorizontalAlign is Right</title><link>http://www.intersoftsolutions.com/Community/WebInput/IE8-Horizontal-Cursor-lost-when-HorizontalAlign-is-Right/</link><pubDate>Tue, 28 Sep 2010 02:39:03 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>&lt;p&gt;Based on my test, the digit is diplayed fine. In my test environment I am using WebInput 4 and WebUI Framework 3 build  5 and 755 respectively and the provided snippet code in the first post. If you already use the latest build for WebInput and WebUI Framework do you mind providing a screesnhot or detail for this issue so I could analyze further?&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Regarding the extra border, you will need to set the border width to 0. Here is the snippet:&lt;/p&gt;&lt;pre&gt;&amp;lt;Normal Font-Names="Times New Roman" Font-Size="10pt" HorizontalAlign="Right"&amp;gt;&lt;br /&gt;    &amp;lt;BorderSettings&amp;gt;&lt;br /&gt;        &amp;lt;Bottom Width="0px" /&amp;gt;&lt;br /&gt;        &amp;lt;Left Width="0px" /&amp;gt;&lt;br /&gt;        &amp;lt;Right Width="0px" /&amp;gt;&lt;br /&gt;        &amp;lt;Top Width="0px" /&amp;gt;&lt;br /&gt;    &amp;lt;/BorderSettings&amp;gt;&lt;br /&gt;&amp;lt;/Normal&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>IE8 Horizontal Cursor lost when HorizontalAlign is Right</title><link>http://www.intersoftsolutions.com/Community/WebInput/IE8-Horizontal-Cursor-lost-when-HorizontalAlign-is-Right/</link><pubDate>Fri, 24 Sep 2010 05:14:19 GMT</pubDate><dc:creator>DJBadin</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;It looks like the feature request was attempted however it create more problems.&lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;</description></item><item><title>IE8 Horizontal Cursor lost when HorizontalAlign is Right</title><link>http://www.intersoftsolutions.com/Community/WebInput/IE8-Horizontal-Cursor-lost-when-HorizontalAlign-is-Right/</link><pubDate>Fri, 24 Sep 2010 03:33:55 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Glenn is not available until Tuesday, September 28&lt;sup&gt;th&lt;/sup&gt;, 2010.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;I will check the progress status of the feature request and will contact you as soon as I get any news regarding the feature request. &lt;/span&gt;&lt;/p&gt;</description></item><item><title>IE8 Horizontal Cursor lost when HorizontalAlign is Right</title><link>http://www.intersoftsolutions.com/Community/WebInput/IE8-Horizontal-Cursor-lost-when-HorizontalAlign-is-Right/</link><pubDate>Thu, 23 Sep 2010 14:59:22 GMT</pubDate><dc:creator>DJBadin</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have just tried 4.0.7200.5 and the workaround is no longer needed.&lt;/p&gt;
&lt;p&gt;BUT, initially everything is shifted to the Right and some of the right digit can not be seen.  Additionally, there is an extra Inside Top and Left Border.&lt;/p&gt;
&lt;p&gt;After typing, everything is shifted to the Left and the Left Inside Border goes away and all of the right digit can be seen but the Top Inside Border is still there.  After that, the Left Inside Border remains gone until the page is refreshed.&lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;</description></item><item><title>IE8 Horizontal Cursor lost when HorizontalAlign is Right</title><link>http://www.intersoftsolutions.com/Community/WebInput/IE8-Horizontal-Cursor-lost-when-HorizontalAlign-is-Right/</link><pubDate>Wed, 13 Jan 2010 01:27:09 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>&lt;p&gt;A feature request has been submitted to handle such scenario automatically. Currently, for feature request you will need to create a thread in the forum and let the support member submit the feature request to the developer.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>IE8 Horizontal Cursor lost when HorizontalAlign is Right</title><link>http://www.intersoftsolutions.com/Community/WebInput/IE8-Horizontal-Cursor-lost-when-HorizontalAlign-is-Right/</link><pubDate>Tue, 12 Jan 2010 08:05:21 GMT</pubDate><dc:creator>DJBadin</dc:creator><description>&lt;p&gt;How do I submit a Feature Request with this interface since I can no longer do it in the Developer Network?&lt;/p&gt;
&lt;p&gt;I would like a Server Control Property to handle this rather than the Client Side OnFocus Event workaround.&lt;/p&gt;</description></item><item><title>IE8 Horizontal Cursor lost when HorizontalAlign is Right</title><link>http://www.intersoftsolutions.com/Community/WebInput/IE8-Horizontal-Cursor-lost-when-HorizontalAlign-is-Right/</link><pubDate>Sat, 09 Jan 2010 08:50:14 GMT</pubDate><dc:creator>DJBadin</dc:creator><description>&lt;p class="MsoNormal" style="margin: 0in 0in 10pt"&gt;&lt;span style="font-family: calibri; font-size: 15px"&gt;When I set the TextBoxStyle-Normal-HorizontalAlign="Right", I can not see the Cursor when focus is put to the control and nothing is in the Textbox or the Cursor is positioned all the way to the right.&lt;span style="mso-spacerun: yes"&gt;  &lt;/span&gt;It seems it is under the border.&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 0in 0in 10pt"&gt;&lt;span style="font-family: calibri; font-size: 15px"&gt;I can see it with FireFox, Chrome and Safari.&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 0in 0in 10pt"&gt;&lt;span style="font-family: calibri; font-size: 15px"&gt;Is there a way to add more spacing between the TextBox and the Border to reveal the Cursor?&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default3.aspx.cs" Inherits="_Test_InterSoft_WebInput_Default3" %&amp;gt;

&amp;lt;%@ Register Assembly="ISNet.WebUI.WebInput" Namespace="ISNet.WebUI.WebControls" TagPrefix="ISWebInput" %&amp;gt;

&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&amp;gt;

&amp;lt;html xmlns="http://www.w3.org/1999/xhtml"&amp;gt;
&amp;lt;head runat="server"&amp;gt;
	&amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
	&amp;lt;form id="form1" runat="server"&amp;gt;
	&amp;lt;div&amp;gt;

		&amp;lt;ISWebInput:WebInput
			ID="WebInput1"
			runat="server"
			MaxLength="5"
			Width="40px"
			NumericInput="True"
		&amp;gt;
			&amp;lt;CultureInfo CultureName="en-US"&amp;gt;&amp;lt;/CultureInfo&amp;gt;
			&amp;lt;DisplayFormat
				ErrorMessage="Enter a Valid Quantity"
				ErrorText="Enter a Valid Quantity"
				IsEnabled="True"
				Type="Number"
				Format="#,###.0"
			&amp;gt;
			&amp;lt;/DisplayFormat&amp;gt;
			&amp;lt;TextBoxStyle&amp;gt;
				&amp;lt;Normal
					Font-Names="Times New Roman"
					Font-Size="10pt"
					HorizontalAlign="Right"
				&amp;gt;
				&amp;lt;/Normal&amp;gt;
				&amp;lt;Over BaseStyle="Normal" /&amp;gt;
				&amp;lt;Active BaseStyle="Normal" &amp;gt;
				&amp;lt;/Active&amp;gt;
			&amp;lt;/TextBoxStyle&amp;gt;
		&amp;lt;/ISWebInput:WebInput&amp;gt;

	&amp;lt;/div&amp;gt;
	&amp;lt;/form&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;
</description></item></channel></rss>