Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / Adapters / WmlSelectionListAdapter.cs / 1305376 / WmlSelectionListAdapter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Globalization; using System.IO; using System.Web; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.MobileControls; using System.Collections.Specialized; using System.Text.RegularExpressions; using System.Collections; using System.Text; using System.Diagnostics; using System.Security.Permissions; #if COMPILING_FOR_SHIPPED_SOURCE namespace System.Web.UI.MobileControls.ShippedAdapterSource #else namespace System.Web.UI.MobileControls.Adapters #endif { /* * WmlSelectionListAdapter provides the wml device functionality for SelectionList controls. * * Copyright (c) 2000 Microsoft Corporation */ ///[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] public class WmlSelectionListAdapter : WmlControlAdapter { private String _ivalue = null; private const String ClientPrefix = "__slst_"; /// protected new SelectionList Control { get { return (SelectionList)base.Control; } } /// public override void OnInit(EventArgs e) { } /// public override void OnPreRender(EventArgs e) { int firstSelectedIndex; MobileListItemCollection items = Control.Items; int count = items.Count; for(firstSelectedIndex = 0; firstSelectedIndex < count; firstSelectedIndex++) { if(items[firstSelectedIndex].Selected) { break; } } if(firstSelectedIndex < count) { StringBuilder ivalue=new StringBuilder(); ivalue.Append((firstSelectedIndex + 1).ToString(CultureInfo.InvariantCulture)); if(Control.IsMultiSelect) { for(int i = firstSelectedIndex + 1; i < count; i++) { if(items[i].Selected) { ivalue.Append(";"); ivalue.Append((i + 1).ToString(CultureInfo.InvariantCulture)); } } } _ivalue = ivalue.ToString(); } else { String defaultValue = null; if (!Control.IsMultiSelect) { // 1 is the first index of a single selection list defaultValue = "1"; } else if (Device.CanRenderSetvarZeroWithMultiSelectionList) { // 0 means no items have been selected, for MultiSelect case defaultValue = "0"; } if (defaultValue != null) { _ivalue = defaultValue; } } } /// public override void Render(WmlMobileTextWriter writer) { MobileListItemCollection items = Control.Items; int count = items.Count; if (count == 0) { return; } writer.EnterLayout(Style); bool crossPagePost = !String.IsNullOrEmpty(Control.Form.Action); if (crossPagePost) { if (_ivalue != null) { String formVariable = ClientPrefix + Control.ClientID; writer.AddFormVariable (formVariable, _ivalue, false); // does not render _ivalue if null or form variables written. writer.RenderBeginSelect(Control.ClientID, formVariable, _ivalue, Control.Title, Control.IsMultiSelect); } else // _ivalue == null { writer.RenderBeginSelect(Control.ClientID, null, null, Control.Title, Control.IsMultiSelect); } } else // !crossPagePost { if (_ivalue != null) { writer.AddFormVariable (Control.ClientID, _ivalue, false); } // does not render _ivalue if null or form variables written. writer.RenderBeginSelect(null, Control.ClientID, _ivalue, Control.Title, Control.IsMultiSelect); } foreach (MobileListItem item in items) { if (crossPagePost) { writer.RenderSelectOption(item.Text, item.Value); } else { writer.RenderSelectOption(item.Text); } } writer.RenderEndSelect(Control.BreakAfter); writer.ExitLayout(Style); } // Parse the WML posted data appropriately. /// public override bool LoadPostData(String key, NameValueCollection data, Object controlPrivateData, out bool dataChanged) { int[] selectedItemIndices; String[] selectedItems = data.GetValues(key); Debug.Assert (String.IsNullOrEmpty(Control.Form.Action), "Cross page post (!IsPostBack) assumed when Form.Action nonempty." + "LoadPostData should not have been be called."); // Note: controlPrivateData is selectedIndices from viewstate. int[] originalSelectedIndices = (int[])controlPrivateData; dataChanged = false; if (selectedItems == null) { // This shouldn't happen if we're posting back from the form that // contains the selection list. It could happen when being called // as the result of a postback from another form on the page, // so we just return quietly. return true; } if (Control.Items.Count == 0) { return true; } // If singleselect && nothing was selected, select // first elt. (Non-mobile DropDown does same by getting SelectedIndex). if(!Control.IsMultiSelect && originalSelectedIndices.Length == 0 && Control.Items.Count > 0) { Control.Items[0].Selected = true; originalSelectedIndices = new int[]{0}; } // Case where nothing is selected. if(selectedItems == null || (selectedItems.Length == 1 && (selectedItems[0] != null && selectedItems[0].Length == 0)) || (selectedItems.Length == 1 && selectedItems[0] == "0")) // non-selected MultiSelect case { selectedItems = new String[]{}; } // WML multiselect case with more than one selection. if(selectedItems.Length == 1 && selectedItems[0].IndexOf(';') > -1) { String selected = selectedItems[0]; // Eliminate trailing semicolon, if there is one. selected = Regex.Replace(selected, ";$", ""); selectedItems = Regex.Split(selected, ";"); } selectedItemIndices = new int[selectedItems.Length]; for(int i = 0; i < selectedItems.Length; i++) { // WML iname gives index + 1, so subtract one back out. selectedItemIndices[i] = Int32.Parse(selectedItems[i], CultureInfo.InvariantCulture) - 1; } // Do not assume posted selected indices are ascending. // We do know originalSelectedIndices are ascending. Array.Sort(selectedItemIndices); // Check whether selections have changed. if(selectedItemIndices.Length != originalSelectedIndices.Length) { dataChanged = true; } else { for(int i = 0; i < selectedItemIndices.Length; i++) { if(selectedItemIndices[i] != originalSelectedIndices[i]) { dataChanged = true; } } } for (int i = 0; i < Control.Items.Count; i++) { Control.Items[i].Selected = false; } for(int i = 0; i < selectedItemIndices.Length; i++) { Control.Items[selectedItemIndices[i]].Selected = true; } return true; } /// protected override String GetPostBackValue() { // Optimization - if viewstate is enabled for this control, and the // postback returns to this page, we just let it do the trick. if (Control.Form.Action.Length > 0 || !IsViewStateEnabled()) { return _ivalue != null ? _ivalue : String.Empty; } else { return null; } } private bool IsViewStateEnabled() { Control ctl = Control; while (ctl != null) { if (!ctl.EnableViewState) { return false; } ctl = ctl.Parent; } return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Vector3D.cs
- SystemTcpStatistics.cs
- Image.cs
- TreeViewImageIndexConverter.cs
- QueryCacheKey.cs
- TransformProviderWrapper.cs
- PreviewKeyDownEventArgs.cs
- IncrementalCompileAnalyzer.cs
- GroupQuery.cs
- PagerSettings.cs
- DataViewSettingCollection.cs
- ActionFrame.cs
- CngKey.cs
- WebPartConnectionCollection.cs
- SHA1CryptoServiceProvider.cs
- QueryTask.cs
- ProgressPage.cs
- Trigger.cs
- DelegateSerializationHolder.cs
- ReaderWriterLockWrapper.cs
- CopyAttributesAction.cs
- graph.cs
- ListViewItem.cs
- HuffCodec.cs
- OneWayElement.cs
- IssuedTokenParametersElement.cs
- StrongNameUtility.cs
- InkCanvasInnerCanvas.cs
- Throw.cs
- PartialCachingControl.cs
- CrossContextChannel.cs
- UIElementParaClient.cs
- Config.cs
- TextEndOfLine.cs
- CriticalFinalizerObject.cs
- EventWaitHandleSecurity.cs
- SqlFactory.cs
- CheckBox.cs
- AddInContractAttribute.cs
- MouseEvent.cs
- ShapingWorkspace.cs
- RefType.cs
- WriteTimeStream.cs
- KernelTypeValidation.cs
- TraceContext.cs
- RenameRuleObjectDialog.Designer.cs
- SerializationFieldInfo.cs
- ScrollItemPatternIdentifiers.cs
- JsonStringDataContract.cs
- ToolStripKeyboardHandlingService.cs
- SmtpSection.cs
- Evidence.cs
- ExcCanonicalXml.cs
- ResourceReader.cs
- ImportCatalogPart.cs
- DesignSurfaceServiceContainer.cs
- PropertyRecord.cs
- XmlAttributeHolder.cs
- DataColumnPropertyDescriptor.cs
- AuthorizationRule.cs
- IteratorFilter.cs
- LinkArea.cs
- XmlCharType.cs
- XPathNavigatorReader.cs
- DynamicValueConverter.cs
- CanonicalizationDriver.cs
- CodeDirectoryCompiler.cs
- DataGridViewRowConverter.cs
- Claim.cs
- ObjectConverter.cs
- TextTreeUndo.cs
- AspNetSynchronizationContext.cs
- ManagementScope.cs
- ListenerTraceUtility.cs
- XmlSignatureProperties.cs
- DataServiceBuildProvider.cs
- IOThreadTimer.cs
- PresentationSource.cs
- ColorTransformHelper.cs
- HtmlElementErrorEventArgs.cs
- RowBinding.cs
- IntPtr.cs
- DynamicEntity.cs
- DesignerContextDescriptor.cs
- WebDisplayNameAttribute.cs
- DnsPermission.cs
- GridEntry.cs
- SqlWriter.cs
- NamespaceDecl.cs
- OpenTypeLayoutCache.cs
- DataControlFieldCell.cs
- SpecularMaterial.cs
- Button.cs
- WebPartEditorCancelVerb.cs
- SoapExtensionStream.cs
- ReadWriteObjectLock.cs
- MiniConstructorInfo.cs
- XmlElement.cs
- ResourceReferenceKeyNotFoundException.cs
- FormsAuthenticationCredentials.cs