vpekarek
vpekarek
Hi, I have the same problem on any mobile browsers, but also with jQuery UI 1.10.3. I figure it out by removing `event.preventDefault();` from _touchStart function in jQRangeSliderMouseTouch.js. This could...
Can you post some example? You could probably change z-index on .ui-rageSlider-label in classic.css, line 72.
Hi, I made two functions to make this work: ```js reset: function() { this.inputNode.next().remove(); this.options.value = this.inputNode.val() || (this.options.isRange ? this.options.from + ',' + this.options.from : '' + this.options.from); this.domNode...
Hi, you can use the `NumericType ` property on `Error` with `ErrorType.Custom`. Then you can have your enum with other types of errors, like `Cancelled`, etc. Then you can check...
Hi, you can use the `NumericType ` property on `Error` with `ErrorType.Custom`. Then you can have your enum with other types of errors, like `Domain`, `BusinessRule`, etc. Then you can...
Have the same problem here. We had to return `SELECT NULL` for each collection, that we expected to be returned. But for SP with more tables it is a pain....
Check the @tuliopaim solution: _You can go to Options -> Environment -> Keyboard, remove the shortcut of "AddQuickFile", and assign "Shift+ F2" to "NewEmptyFile"_
The error is still on. There is no solution? My configuration is: ``` axios: { proxy: true, headers: { common: { Accept: 'application/json, text/plain, */*', 'Access-Control-Allow-Origin': '*', }, }, },...