﻿<?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 - WebGrid Enterprise - webgird7 r2 VistaCalendar visual day appear  </title><link>http://www.intersoftsolutions.com/Community/WebGrid/webgird7-r2-VistaCalendar-visual-day-appear/</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>webgird7 r2 VistaCalendar visual day appear  </title><link>http://www.intersoftsolutions.com/Community/WebGrid/webgird7-r2-VistaCalendar-visual-day-appear/</link><pubDate>Thu, 14 Jan 2010 23:30:52 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;How if the status bar of the grid is set to have ‘ltr’ direction instead of ‘rtl’ direction, so that the classic paging UI no longer turning the face each other. If this workaround is acceptable for your scenario, please try to add following script into WebGrid page.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;script type="text/javascript"&amp;gt;
    &amp;lt;!--
    window.onload = function() {
        var WebGrid1 = ISGetObject("WebGrid1");
        var rowElStatusBarObj = WebGrid1.GetElement(WG40.STATUSBAR, WG40.HTMLROW);
        var divElStatusBarObj = rowElStatusBarObj.parentNode.parentNode.parentNode;
        divElStatusBarObj.style.direction = "ltr";

        return true;
    }
    --&amp;gt;
&amp;lt;/script&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;This script access the ‘DIV’ element of WebGrid status bar and then set the ‘direction’ of ‘style’ property to “ltr”.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt; mso-themecolor: text2; mso-fareast-font-family: simsun; mso-fareast-language: zh-cn; mso-ansi-language: en-us; mso-bidi-language: ar-sa"&gt;Please let Please let me know your response.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>webgird7 r2 VistaCalendar visual day appear  </title><link>http://www.intersoftsolutions.com/Community/WebGrid/webgird7-r2-VistaCalendar-visual-day-appear/</link><pubDate>Thu, 14 Jan 2010 10:14:47 GMT</pubDate><dc:creator>YANIV</dc:creator><description>&lt;p&gt;hi yudi&lt;/p&gt;&lt;p&gt;i tried your solution but only the cell change not the structure of the webgrid , we prefer that the webgrid will be on the right of page beacuse hebrew is rtl .&lt;/p&gt;
&lt;p&gt;hope u can find another solution for me .&lt;/p&gt;
&lt;p&gt;thx&lt;br /&gt;&lt;/p&gt;</description></item><item><title>webgird7 r2 VistaCalendar visual day appear  </title><link>http://www.intersoftsolutions.com/Community/WebGrid/webgird7-r2-VistaCalendar-visual-day-appear/</link><pubDate>Wed, 13 Jan 2010 23:09:36 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;Have you tried to use and set the CellStyle-HorizontalAlign property to “Right” instead of using &amp;lt;div dir=”rt”&amp;gt;?&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’ve tested that by using HorizontalAlign property set to “Right”, it will not causing the classic paging turn the face each other and remain in the right way.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Below is the snippet code.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;RootTable DataKeyField="CustomerID"&amp;gt;
    &amp;lt;Columns&amp;gt;
        &amp;lt;ISWebGrid:WebGridColumn Caption="CustomerID" DataMember="CustomerID" Name="CustomerID"
            Width="100px"&amp;gt;
            &lt;span style="color: #c00000"&gt;&amp;lt;CellStyle HorizontalAlign="Right"&amp;gt;
            &amp;lt;/CellStyle&amp;gt;
&lt;/span&gt;        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
        &amp;lt;ISWebGrid:WebGridColumn Caption="CompanyName" DataMember="CompanyName" Name="CompanyName"
            Width="100px"&amp;gt;
            &lt;span style="color: #c00000"&gt;&amp;lt;CellStyle HorizontalAlign="Right"&amp;gt;
            &amp;lt;/CellStyle&amp;gt;
&lt;/span&gt;        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
&lt;/pre&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>webgird7 r2 VistaCalendar visual day appear  </title><link>http://www.intersoftsolutions.com/Community/WebGrid/webgird7-r2-VistaCalendar-visual-day-appear/</link><pubDate>Wed, 13 Jan 2010 02:11:47 GMT</pubDate><dc:creator>YANIV</dc:creator><description>&lt;p&gt;thx yudi.&lt;/p&gt;&lt;p&gt;i had another problem with the webgrid if u can addressed it to the team regarding the dir="rtl"&lt;/p&gt;
&lt;p&gt;when u put a webgird in a div and put dir="rtl" the arrows of the classic paging turn the face each other and not the right way.&lt;/p&gt;
&lt;p&gt;thx in advance.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>webgird7 r2 VistaCalendar visual day appear  </title><link>http://www.intersoftsolutions.com/Community/WebGrid/webgird7-r2-VistaCalendar-visual-day-appear/</link><pubDate>Wed, 13 Jan 2010 01:57:25 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;Thank you for your valuable input.&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’ve forwarded this to WebGrid development team (as work item #551). I’ll let you know any news I heard from the team regarding this.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>webgird7 r2 VistaCalendar visual day appear  </title><link>http://www.intersoftsolutions.com/Community/WebGrid/webgird7-r2-VistaCalendar-visual-day-appear/</link><pubDate>Tue, 12 Jan 2010 03:27:57 GMT</pubDate><dc:creator>YANIV</dc:creator><description>&amp;nbsp;
&lt;p&gt;hi &lt;br /&gt;&lt;/p&gt;
&lt;p&gt;there is a problem with how the day appear in VistaCalendar , the problem is that the day display connected beacuse the name of the day is too long for it .&lt;/p&gt;
&lt;p&gt;it should be like this :&lt;/p&gt;
&lt;p&gt;ש ו ה ד ג ב א&lt;/p&gt;
&lt;p&gt;or&lt;/p&gt;
&lt;p&gt;שבת שישי חמישי רביעי שלישי שני ראשון&lt;/p&gt;
&lt;p&gt;but this will not fit&lt;/p&gt;
&lt;p&gt;the day appear today :&lt;/p&gt;
&lt;p&gt;שבת יום ו יום ה יום ד יום ג יום ב יום א &lt;br /&gt;&lt;/p&gt;
&lt;p&gt;too long&lt;/p&gt;
&lt;p&gt;my ? is there an option to widen the layout the box of the VistaCalendar or hotfix for correcting the day appear&lt;/p&gt;
&lt;p&gt;thx&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>