AlekseyMartynov

Results 55 comments of AlekseyMartynov

Current code: https://github.com/DevExpress/AjaxControlToolkit/blob/0a365c6fcf34c465c5ffb5bf2b1577debc6901ce/AjaxControlToolkit/Scripts/MaskedEdit.js#L1072-L1088 `_ShowModalClipBoardInput` is intentionally used in all browsers except IE. Relevant SO thread: https://stackoverflow.com/q/2176861 I'm tagging this ticket as a possible enhancement for one of the future releases.

I confirm the difference in the initial cursor position. Interestingly, when the text box is not empty or when `ClearMaskOnLostFocus="false"` is specified, Chrome provides better usability.

I confirm the issue. It's specific to Android soft keyboard (not reproduced with a connected physical keyboard and in a Chrome DevTools remote debugging session). Technical details: - https://stackoverflow.com/q/36753548 -...

Consider conditionally disabling `MaskedEditExtender` based on `Request.UserAgent`. For example: ```c# protected void Page_Load(object sender, EventArgs e) { if(Request.UserAgent.Contains("Android")) { MaskedEditExtender2.Enabled = false; MaskedEditValidator2.Enabled = false; TextBox2.Attributes["type"] = "number"; } }...

I suggest that you use the workaround. Support for Android soft keyboard is not a trivial task. We cannot promise that we'll add it to the Toolkit.

@ColinEberhardt, I'd name it "scroll to load more" or "infinite scrolling" rather than "pull". As for the end of scrolling, usually the content is considered fully loaded when the the...

Guys, can we clarify the terminology. To my understanding, infinite scrolling and pull-down-to-refresh are two separate UI idioms with different purpose, and should not be counterposed. Infinite scrolling is loading...

How about replacing empty `IN` with `WHERE 0` in this particular case? With a warning as you suggest. This wouldn't break existing apps.

@daslicht I implemented this using [throuhg2](https://www.npmjs.com/package/through2). Code: [throttle.js](https://github.com/AlekseyMartynov/cafe-content/blob/master/server/throttle.js). Usage: see [server.js](https://github.com/AlekseyMartynov/cafe-content/blob/master/server/server.js).

Hello, The app uses the default recording device selected in the OS mixer. On Windows, try one of the following: - [Stereo Mix](https://superuser.com/q/753061) device - [VB-CABLE](https://vb-audio.com/Cable/) Virtual Audio Device -...