Ignore:
Timestamp:
Jan 8, 2016, 2:35:52 PM (8 years ago)
Author:
coas-nagasima
Message:

メッセージバッファ領域がなくなったときにWebSocketパケットを誤って処理してしまうのを修正。
Ethernet送信バッファが取れないときにパケットが送信できなかったのを修正。
その他、処理の安定性の向上。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uKadecot/trunk/tools/EcnlControllerUI/EcnlControllerUI/Control.cs

    r108 r148  
    764764
    765765                private Type InputType { get { return FieldContain.Input.GetType(); } }
     766
    766767                private byte[] ToByteValue()
    767768                {
     
    935936                /// </summary>
    936937                public bool Changed { get { return !FieldContain.Input.Value.Equals(ToText(GetValue)); } }
     938
    937939                public void GrpBoxChange(Element ele, jQueryEvent ev)
    938940                {
     
    946948
    947949                public EventHandlerDevicePropertyInfo KadecotSet;
     950
    948951                public void SetGetValue(byte[] data)
    949952                {
     
    11101113                public Icon ButtonIcon { get { return getIcon(); } set { base.Object.ToggleClass(getClass(value), true); } }
    11111114                public string Href { get { return base.Object.GetAttribute("href"); } set { base.Object.Attribute("href", value); } }
     1115
    11121116                public enum Icon
    11131117                {
     
    12371241                public List<RadioInput> RadioList;
    12381242                private bool _ControlGroup;
     1243
    12391244                public bool ControlGroup
    12401245                {
     
    12561261
    12571262                private bool _Horizontal;
     1263
    12581264                public bool Horizontal
    12591265                {
     
    12751281                        public UIRadioInput Radio;
    12761282                        public UILabel Label;
     1283
    12771284                        public RadioInput(UILabel Label, UIRadioInput Radio)
    12781285                        {
     
    14131420
    14141421                public string Placeholder { get { return base.GetAttribute("placeholder"); } set { base.Attribute("placeholder", value); } }
     1422
    14151423                public JsDictionary DataOptions
    14161424                {
     
    15721580                        : base("<li>")
    15731581                {
    1574 
    15751582                }
    15761583
     
    16341641                        : base("<a>")
    16351642                {
    1636 
    16371643                }
    16381644
     
    16631669                        : base("<h" + i.ToString() + ">")
    16641670                {
    1665 
    16661671                }
    16671672
     
    16781683                        : base("<img>")
    16791684                {
    1680 
    16811685                }
    16821686
     
    18261830        {
    18271831                public DeviceController DeviceController;
     1832
    18281833                public class UIDeviceInfo
    18291834                {
     
    20002005                        info = new UIDiv();
    20012006                        string identifer = "";
     2007
    20022008                        foreach (var node in NodeList) {
    2003 
    20042009                                var profile = node.Profile;
    20052010
    20062011                                if (jQuery.Select("#" + "cl_node_" + identifer).Length > 0)
    20072012                                        continue;
     2013
    20082014                                UICollapsibleset col = new UICollapsibleset(node.Data.ToString());
    20092015                                col.Id = "cl_node_" + identifer;
     
    20132019
    20142020                                col.Append(listview);
     2021
    20152022                                foreach (var item in node.Devices) {
    2016 
    20172023                                        if (item.Profile)
    20182024                                                continue;
     
    20632069                public static string LoadingShow = "loading.show";
    20642070                public static string LoadingHide = "loading.hide";
    2065                 /// <summary>
    2066                 /// 機器検索開始
    2067                 /// </summary>
     2071                /// <summary>機器検索開始</summary>
    20682072                public static string SearchStart = "search.start";
    2069                 /// <summary>
    2070                 /// 機器検索終了
    2071                 /// </summary>
     2073                /// <summary>機器検索終了</summary>
    20722074                public static string SearchEnd = "search.end";
    2073                 /// <summary>
    2074                 /// 機器検索エラー
    2075                 /// </summary>
     2075                /// <summary>機器検索エラー</summary>
    20762076                public static string SearchError = "search.error";
    2077                 /// <summary>
    2078                 /// 入力画面作成開始
    2079                 /// </summary>
     2077                /// <summary>入力画面作成開始</summary>
    20802078                public static string PropertyWriteStart = "propertywrite.start";
    2081                 /// <summary>
    2082                 /// 入力画面作成終了
    2083                 /// </summary>
     2079                /// <summary>入力画面作成終了</summary>
    20842080                public static string PropertyWriteEnd = "propertywrite.end";
    20852081        }
Note: See TracChangeset for help on using the changeset viewer.