Click here to Skip to main content
15,884,472 members
Articles / Web Development / ASP.NET

Utilizing SharePoint Form Controls (like OWSDateField)

Rate me:
Please Sign up or sign in to vote.
4.56/5 (6 votes)
3 Jan 20063 min read 66.5K   34  
This article discusses some ways to take advantage of the SharePoint client side controls (like the OWSDate Control) within the SharePoint web parts.
using System;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;

using Microsoft.SharePoint;
using Microsoft.SharePoint.WebControls;

namespace OWSControls
{
    public class OWSChoiceField : OWSBase
    {
        #region construction

        /// <summary>
        /// Default constructor
        /// </summary>
        public OWSChoiceField() { }

        #endregion

        #region internal members

        ListItemCollection _items = new ListItemCollection();

        #endregion

        #region public properties

        /// <summary>
        /// Indicates the choice format of the display
        /// </summary>
        public SPChoiceFormatType ChoiceFormat
        {
            get
            {
                if (ViewState["ChoiceFormat"] == null)
                    ChoiceFormat = SPChoiceFormatType.Dropdown;
                return (SPChoiceFormatType)ViewState["ChoiceFormat"];
            }
            set { ViewState["ChoiceFormat"] = value; }
        }

        /// <summary>
        /// Gets the list items. 
        /// </summary>
        public ListItemCollection Items
        {
            get { return _items; }
        }

        #endregion

        #region overridden properties

        /// <summary>
        /// Gets the text of the selected item.
        /// </summary>
        public override string Text
        {
            get 
            {
                ListItem item = null;
                for (int x = 0; x < Items.Count && item == null; x++)
                {
                    if (Items[x].Value == Value)
                        item = Items[x];
                }
                if (item == null)
                    return "";
                return item.Text;
            }
        }

        #endregion

        #region overridden methods

        /// <summary>
        /// Renders the OWS Control
        /// </summary>
        /// <param name="wtr">writes out the text control information</param>
        protected override void Render(HtmlTextWriter wtr)
        {
            wtr.Write(
                "<SCRIPT>" +
                "fld = new ChoiceField(frm, \"{0}\", \"{1}\", \"{2}\");" +
                "fld.format = \"{3}\";" +
                "{4};" +
                "fld.fRequired = {5};" +
                "fld.IMEMode=\"\";" +
                "fld.BuildUI();" +
                "</SCRIPT>",
                UniqueID,
                Display,
                JavaScriptValue,
                ChoiceFormat.ToString(),
                GetChoicesJScript(),
                Required.ToString().ToLower()
            );
        }

        #endregion

        #region helper methods

        /// <summary>
        /// Gets the javascript to add choice to the end user. 
        /// </summary>
        /// <returns>the choices javascript</returns>
        private string GetChoicesJScript()
        {
            string ret = "";
            foreach (ListItem item in _items)
            {
                ret += string.Format(
                    "fld.AddChoice(\"{0}\",\"{1}\");",
                    item.Text.Replace(@"\", @"\\").Replace("\"", "\\\""),
                    item.Value.Replace(@"\", @"\\").Replace("\"", "\\\"")
                );
            }
            return ret;
        }

        #endregion

    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions