Ejemplo n.º 1
0
 protected virtual void SetTextFieldText()
 {
     if (_ubbEnabled)
         _textField.htmlText = UBBParser.inst.Parse(XMLUtils.EncodeString(_text));
     else
         _textField.text = _text;
 }
Ejemplo n.º 2
0
 void __onFocusOut(EventContext context)
 {
     _text = _textField.text;
     if (string.IsNullOrEmpty(_text) && !string.IsNullOrEmpty(_promptText))
     {
         _textField.displayAsPassword = false;
         _textField.htmlText          = UBBParser.inst.Parse(XMLUtils.EncodeString(_promptText));
     }
 }
Ejemplo n.º 3
0
 virtual protected void UpdateTextFieldText()
 {
     if (_ubbEnabled)
     {
         _textField.htmlText = UBBParser.inst.Parse(XMLUtils.EncodeString(_text));
     }
     else
     {
         _textField.text = _text;
     }
 }
Ejemplo n.º 4
0
 override protected void UpdateTextFieldText()
 {
     if (string.IsNullOrEmpty(_text) && !string.IsNullOrEmpty(_promptText))
     {
         _textField.displayAsPassword = false;
         _textField.htmlText          = UBBParser.inst.Parse(XMLUtils.EncodeString(_promptText));
     }
     else
     {
         _textField.displayAsPassword = _displayAsPassword;
         _textField.text = _text;
     }
 }
Ejemplo n.º 5
0
        public override void Setup_AfterAdd(XML xml)
        {
            base.Setup_AfterAdd(xml);

            if (string.IsNullOrEmpty(_text))
            {
                if (!string.IsNullOrEmpty(_promptText))
                {
                    _textField.displayAsPassword = false;
                    _textField.htmlText          = UBBParser.inst.Parse(XMLUtils.EncodeString(_promptText));
                }
            }
        }
Ejemplo n.º 6
0
        virtual protected void SetTextFieldText()
        {
            string str = _text;

            if (_templateVars != null)
            {
                str = ParseTemplate(str);
            }

            if (_ubbEnabled)
            {
                _textField.htmlText = UBBParser.inst.Parse(XMLUtils.EncodeString(str));
            }
            else
            {
                _textField.text = str;
            }
        }
Ejemplo n.º 7
0
 void UpdateAlternativeText()
 {
     if (!_editing && !string.IsNullOrEmpty(_promptText) && this.text.Length == 0)
     {
         textField.SetAlternativeText(UBBParser.inst.Parse(XMLUtils.EncodeString(_promptText)), true);
     }
     else
     {
         if (_displayAsPassword)
         {
             textField.SetAlternativeText(EncodePasswordText(this.text), false);
         }
         else
         {
             textField.SetAlternativeText(null, false);
         }
     }
 }