thank you for this amazing framework !
I'm trying to change the default multiple behavior.
I want to have a select element and a button below.
When i click on the button ("Ajouter"), the current selected element is appended to a div element below the button.
I implemented the mechanism with the framework, it works well:
But there is no connection with the model. The data binding is not occuring.
I changed those lines:
Line 119:
if (!(angular.isDefined(field.multiple) && field.multiple !== false)) {
newElement.attr('ng-model', bracket(field.model, attrs.ngModel));
// Build parent in case of a nested model
setProperty(model, field.model, {}, null, true);
}
Hi,
thank you for this amazing framework ! I'm trying to change the default multiple behavior. I want to have a select element and a button below. When i click on the button ("Ajouter"), the current selected element is appended to a div element below the button. I implemented the mechanism with the framework, it works well:
But there is no connection with the model. The data binding is not occuring. I changed those lines:
Line 119:
Line 214:
Line 308:
Is there something else to change to have data-binding with the div ?