﻿<?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 - DatePicker</title><link>http://www.intersoftsolutions.com/Community/Tags/DatePicker/</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>Crosslight Android DatePicker</title><link>http://www.intersoftsolutions.com/Community/Tags/DatePicker/</link><pubDate>Sat, 12 Jul 2014 10:13:43 GMT</pubDate><dc:creator>thomas.albert@tea-net.ch</dc:creator><category>android</category><category>DatePicker</category><category>Crosslight</category><description>&lt;p&gt;Hello Crosslight Support,&lt;/p&gt;&lt;p&gt;I am on the Android platform and I am using a FormActivity. The item to be displayed contains a DatePicker. Using this picker I have to questions.&lt;/p&gt;&lt;p&gt;1. In the manifest&amp;nbsp;I say use theme Holo.Light, but the DatePicker (date text view) has a dark background as with Holo.Dark (see attached screenshot 1). How can I change the background to be white?&amp;nbsp;Shouldn't this change with the theme?&lt;/p&gt;&lt;p&gt;2. I click on the date text view and the date picker shows up. I change the date in the picker and the date in the date text view changes accordingly. Then I say "Cancel" in the date picker, but the date in the date text view&amp;nbsp;remains changed. How can I handle the "Cancel" of the date picker? Shouldn't this be handled by the date picker itself?&lt;/p&gt;&lt;p&gt;You can see the described behavior in the MyInventory samples.&lt;/p&gt;&lt;p&gt;Thanks for your suppport.&lt;/p&gt;&lt;p&gt;Thomas&lt;br&gt;&lt;/p&gt;</description></item><item><title>Unable to Integrating WebInput in Webgrid for date time input is not working</title><link>http://www.intersoftsolutions.com/Community/Tags/DatePicker/</link><pubDate>Mon, 19 Sep 2011 07:08:00 GMT</pubDate><dc:creator>interfung</dc:creator><category>WebGrid</category><category>WebInput</category><category>Date</category><category>DateTimePicker</category><category>DatePicker</category><category>Picker</category><category>Unable</category><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I am trying to input date time in a WebGrid with a Masked WebInput as DateTime picker. But after I changed the date value, the cell become &lt;b&gt;empty.&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;I don't know if had made wrong settings for the WebGrid/ WebInput, I have attached Code below and the way to reproduce the issue (png file) for your reference. Please kindly assist. Thanks&lt;/p&gt;
&lt;p /&gt;&lt;pre&gt;ASPX Code:
&amp;lt;%@ Page Language="vb" AutoEventWireup="false" CodeBehind="DateInGrid.aspx.vb" Inherits="IntersoftTeseting.DateInGrid" %&amp;gt;
&amp;lt;%@ Register Assembly="ISNet.WebUI.WebInput" Namespace="ISNet.WebUI.WebControls"
    TagPrefix="ISWebInput" %&amp;gt;
&amp;lt;%@ Register Assembly="ISNet.WebUI.WebGrid" Namespace="ISNet.WebUI.WebGrid" TagPrefix="ISWebGrid" %&amp;gt;
&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&amp;gt;
&amp;lt;html&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;ISWebGrid:WebGrid ID="WebGrid1" runat="server" Height="250px" UseDefaultStyle="true"
            Width="500px"&amp;gt;
            &amp;lt;LayoutSettings AllowEdit="Yes"&amp;gt;
            &amp;lt;/LayoutSettings&amp;gt;
        &amp;lt;/ISWebGrid:WebGrid&amp;gt;
        &amp;lt;ISWebInput:WebInput ID="WebInput1" runat="server"&amp;gt;
            &amp;lt;HighLight IsEnabled="True" Type="Phrase" /&amp;gt;
            &amp;lt;EditFormat Format="dd MMM yyyy" IsEnabled="true" Type="DateTime"&amp;gt;
                &amp;lt;MaskInfo MaskExpression="00 LLL 0000"&amp;gt;
                &amp;lt;/MaskInfo&amp;gt;
            &amp;lt;/EditFormat&amp;gt;
            &amp;lt;DisplayFormat&amp;gt;
                &amp;lt;ErrorWindowInfo IsEnabled="False"&amp;gt;
                &amp;lt;/ErrorWindowInfo&amp;gt;
            &amp;lt;/DisplayFormat&amp;gt;
            &amp;lt;DateTimeEditor DateInputLink="" IsEnabled="True"&amp;gt;
                &amp;lt;DropDownYearFrameStyle BackColor="#FFFFFF" BorderColor="Black" BorderStyle="Solid"
                    BorderWidth="1px"&amp;gt;
                &amp;lt;/DropDownYearFrameStyle&amp;gt;
                &amp;lt;DropDownMonthFrameStyle BackColor="#FFFFFF" BorderColor="Black" BorderStyle="Solid"
                    BorderWidth="1px"&amp;gt;
                &amp;lt;/DropDownMonthFrameStyle&amp;gt;
            &amp;lt;/DateTimeEditor&amp;gt;
            &amp;lt;CultureInfo CultureName="en-US"&amp;gt;
            &amp;lt;/CultureInfo&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;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;VB Code:
Imports ISNet.WebUI.WebGrid
Public Class DateInGrid
    Inherits System.Web.UI.Page
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    End Sub
    Public Function GetDiffData() As DataTable
        Dim dt As New DataTable
        dt.Columns.Add("Str", GetType(String))
        dt.Columns.Add("Int", GetType(Integer))
        dt.Columns.Add("DateTime", GetType(Date))
        For i As Integer = 1 To 100
            dt.Rows.Add(i &amp;amp; "_" &amp;amp; i, i, Now.AddDays(i).Date)
        Next
        Return dt
    End Function
    Private Sub WebGrid1_InitializeDataSource(ByVal sender As Object, ByVal e As ISNet.WebUI.WebGrid.DataSourceEventArgs) Handles WebGrid1.InitializeDataSource
        e.DataSource = GetDiffData()
    End Sub
    Private Sub WebGrid1_PrepareDataBinding(ByVal sender As Object, ByVal e As ISNet.WebUI.WebGrid.DataSourceEventArgs) Handles WebGrid1.PrepareDataBinding
        Dim wg As WebGrid = sender
        If Not IsPostBack Then
            wg.RetrieveStructure()
        End If
        For Each wgcol As WebGridColumn In wg.RootTable.Columns
            Select Case wgcol.Name.ToLower
                Case "datetime"
                    wgcol.EditType = EditType.Custom
                    'wgcol.DataFormatString = "dd MMM yyyy"
                    wgcol.CustomEditorName = "WebInputNET"
                    wgcol.CustomEditorServerId = "WebInput1"
            End Select
        Next
    End Sub
End Class&lt;/pre&gt;
&lt;p&gt;  &lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p /&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Fung&lt;/p&gt;</description></item></channel></rss>