Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Focus bug on text-item with keyPressFilter

    Hi,
    We have detected a bug using TextItems with kexpress-filters.
    Adding a character between existing ones th cursor jumps to the end of the textitem. I think the cursor should stay in the choosen position like it happens if you delete the keyPressFilter.


    This happens with Firefox 34.0 and Chrome 39.0.2171.95 m. It doesn't happen in Internet Explorer 11.0.9600.17501. And the latest nightly build SmartClient_v100p_2014-12-13_Pro

    With this code you can reproduce it:
    Code:
    isc.DynamicForm.create({
    	"fields" : [{
    			"name" : "priceitem",
    			"title" : "price",
    			"type" : "text",
    			"keyPressFilter" : "[0-9.,]"
    		}
    	],
    	"values" : {
    		"priceitem" : "33,00"
    	}
    });
    Best Regards

    #2
    Thanks for reporting this - it was introduced in 10.0 as a consequence of a bug fix for a different problem. It's corrected in tomorrow's builds.

    Comment


      #3
      thanks, it's fixed in the latest release.

      Comment

      Working...
      X