sciter-js-sdk icon indicating copy to clipboard operation
sciter-js-sdk copied to clipboard

for date and time control always show $

Open toplinuxsir opened this issue 3 years ago • 0 comments

date and time control

    input:lang(zh) span.year:empty {
            content: "年";
        }

        input:lang(zh) span.month:empty {
            content: "月";
        }

        input:lang(zh) span.day:empty {
            content: "日";
        }

        /* Example: localization of input|time for zhssian language */
        input:lang(zh) span.hour:empty {
            content: "时";
        }

        input:lang(zh) span.minute:empty {
            content: "分";
        }

        input:lang(zh) span.second:empty {
            content: "秒";
        }
  <span><input type="date" /> <input type="time" /></span>

the date and time control after select ,show ¥ sign

toplinuxsir avatar May 12 '21 04:05 toplinuxsir