Micha

Results 10 comments of Micha

In my use case i have two interdependent fields. Say one for "vehicle makes" and on for "vehicle models". Each time the "make field" changes the "models field" gets erased,...

hi Brian, you're right, the attribute should be treated the same as allowBlank: ``` $scope.showPlaceholderForEmptyValues = $attributes.hasOwnProperty('showPlaceholderForEmptyValues'); ``` the behaviour i want for the select field is actually to display...

we could change the template for this to work. instead of ng-options, we would need: ``` {{option[labelAttribute]}} ``` and add the default flag to $scope.emptyOption ``` if ($scope.showPlaceholderForEmptyValues) $scope.emptyOption.default =...

my suggestion would be to extract the options list into an own directive, that you can override if wanted. I've done so for a list with an indicator for "......

Consider the following example: ``` Ext.define('myproject.view.Map', { extend: 'GeoExt.panel.Map', requires: [ 'myproject.view.MapToolbar' ], xtype: 'myproject-view-map', layers: undefined, // by overriding the parent class member with undefined instead of null the...

@bartvde Interesting that you found a null param in an extJS-class. There seems to be a different policy with cfg-params vs. private class members. The reference to the use of...

This is nothing really urgent. For me and my collegues this is now a known issue where we will use a workaround. Could be that only experienced extjs developers know...

Thanks bartvde, makes sense. so the schema is an xsd I asume. Therefor the model for the record is a GeoExt.data.AttributeModel?

this cries for an example. @bartvde do you have any example code for this - maybe similar to your FeatureEditor.js Class? Maybe some Example Data and a Schema?

I would suggest not using a range - but rather a fixed selectize version! I would like to choose angular-selectize and make sure that it's peer dependencies do not break...