The angular-ui-select tag has no usage guidance.
0
votes
0answers
17 views
display ui-select dropdown after minimum input characters set
So i have this ui-select which works fine but I want the dropdown list to only show or be populated upon minimum 2 characters input hwo do i do this?
<ui-select name="organization_chosen" ...
0
votes
1answer
22 views
listening to on-select event of angularj ui select
I am creating an custom attribute which will send angular ui select data to the server. However, in my custom directive I need to bind to on-select event to achieve this.
Here is my html code for the ...
0
votes
0answers
17 views
angular UI-select set initial selected value
I have this template that has my ui-select
<script id="change-organization.html" type="text/ng-template">
<ui-select name="organization_chosen" ...
0
votes
1answer
57 views
useExternalPagination and rowselection in angular UIGrid
I'm working on AngularJS UI Grid and when I use useExternalPagination,useExternalSorting attributes are true, Rowselection is not working.
Below is my grid properties
$scope.gridOption = {
...
0
votes
1answer
32 views
angular-ui/ui-select dropdown start with
is that possible to show items in drodown as per start with?
i am using this https://github.com/angular-ui/ui-select , and from drop down, if i write "a" it show all words which have "a"
i wanted to ...
0
votes
1answer
34 views
Make a div to hide on click of outside it
I need to hide a div on click of outside it. So, I have created a directive which handles it(check if the target element is a child. If yes, it will not hide the div or else it hides the div). It is ...
1
vote
1answer
165 views
The <ui-select></ui-select> tag throws an error in browser
The tag is not being recognized in editor. I have included the script tags for angular select and bootstrap.
1
vote
2answers
67 views
How to find which column was sorted and in what order in angular ui.grid
How to find which column was sorted and in what order in angular ui.grid. Actually I want to set server based pagination. For this, I what to send data in params as {pageNumber, pageSize, column, ...
0
votes
1answer
16 views
ui-select selecticize templates not found
I am trying to use angular ui-select in my application, it worked just fine, except I wanted to change the theme from bootstrap to selecticize, that is when i got these errors:
I have no idea what ...
4
votes
1answer
55 views
Angular Bootstrap Ui-select
I am trying to use the ui-select directive in my angularjs but it is not displaying, i tried following the documentation and this is what i did:
<ui-select ng-model="form.gender" ...
0
votes
0answers
17 views
Prohibit ui-select's search-field to get ng-dirty
I want to prevent some elements -which use ng-model- to set 'ng-dirty' and 'ng-pristine'. Therefore I have a simple directive, which overrides some concerning functions, used by the ng-model-directive
...
0
votes
1answer
188 views
Angular UI-Grid Conditional Cell Template
I have a cell template that displays data from an external ui-select. However I only want the cell template to appear if the row(s) is/are selected. Here is my current code:
...
0
votes
1answer
24 views
angular ui-select search functionality for list is not needed how to hide that
angular ui-select search functionality.
I don't want to use search list option, how can I hide that option.
My Demo : LINK
> http://plnkr.co/edit/CKHbiSQ4tZXTjOyxpyBK?p=preview
I don't want ...
0
votes
1answer
29 views
angular ui-select is not working for array list and first o value
Angular ui-select is not working. If I select first option 0 it is coming like this..
<h3>New List 2</h3>
<p>Selected: {{panel.fill}}</p>
<ui-select id="viewSelector" ...
0
votes
1answer
29 views
normal select list to angular-ui-select is not working
How to convert normal select list code into angular-ui-select directive code.
My code html:
<select class="input-small tight-form-input" ng-model="panel.valueName" ng-options="f.value as f.text ...
0
votes
1answer
34 views
selected value is not coming in angular-ui-select
angular select ui is not working properly..
[http://plnkr.co/edit/CKHbiSQ4tZXTjOyxpyBK?p=preview][1]
Select lists are not working properly.
Not able to work with option.text and option.value.
I ...
-1
votes
1answer
32 views
UI sortable for Select Item in Angular
Below is my code,which I have tried
UI-sortable option is not working in this line
<select ng-model="selectedItem" ng-options="i.items as i.items for i in curItem" ...
2
votes
0answers
76 views
select box in not displaying properly
Select list is not displaying properly.
Please see the images..
some height is conflicting, I am using angular ui-select for select list.
<ui-select id="viewSelector" class="viewSelector ...
1
vote
1answer
42 views
angular ui select is not working
I am using angular ui select https://github.com/angular-ui/ui-select in my project. I am using ui-select directive
My code:
<select class="input-small" ng-model="dashboard.style" ng-options="f ...
1
vote
0answers
41 views
Testing UI select using Protractor.Net based on index?
I am testing the UI select using Protractor.NET. I had referred the following link for testing the UI select -
Testing with protractor using ui-select
My problem which I am running into is that the ...
4
votes
1answer
129 views
angular-formly issue with ui-select
I am trying to use Angular-Formly together with angular ui-select using $http for results.
The options should refresh as the user types in. When I set the model from another text input, the ...
0
votes
1answer
51 views
Complicated many-to-many relationship in dropdown search using AngularUI Select
Can't figure it out! What I'd like to achieve is to be able to filter the source so that another dropdown will use it but with fewer data.
For example, I typed in Adam on the first dropdown, the 2nd ...
0
votes
0answers
19 views
Angular-ui-select need to implement different behaviour on clear
My use case is that the models I connect angular-ui-select too need to allow a null option, even after a user has selected one he needs to return to null if desired.
I've used the allow-clear ...
3
votes
1answer
42 views
+50
UI select form property “touched” not set on first interaction
I'm trying to validate a multiple ui-select using ng-messages and angular 1.3. The $touched property is not being set on first interaction, i.e. click inside the select and then click outside. ...
0
votes
1answer
79 views
Not able to fetch the dropdown data on selecting angular ui-select
I need to fetch the current users list on selecting the ui-select. So, I have implemented it using the ng-focus and it is working in older version(0.8.3) of ui-select. But with the latest version of ...
1
vote
0answers
38 views
Using ui-tagging with single choice
i'm a newbie on angularjs and angular-ui and i have a problem with module ui-select.
I need to select single element from a list and if there isn't a value, the user can add manually, but the tagging ...
2
votes
1answer
207 views
add new values to bootstrap ui-select
Is there any way to add a value which is not present in the list to ui-select. Tagging is available in multi-select but doesn't work for ui-select.
If not, is there any other library I can make use ...
0
votes
1answer
27 views
ui-select: expected expression, got . (point)
I installed the latest angular-ui-select (v0.12) alongside angular v1.2.27. My page won't load. I get:
expected expression, got . (a point)
That refers to this context in my vendor.js:
...
0
votes
2answers
88 views
Value of Angular ui-select
In my application have ui-select:
<ui-select ng-model="flat.flatData.type_local" theme="bootstrap">
<ui-select-match placeholder="Type">
{{ $select.selected.type }}
...
0
votes
0answers
92 views
Add label or heading to ui-select with angular
Does somebody have a nicer way to add a label or heading to the result list of ui-select? In my current approach, I created a separate attribute that I add to the ul element and prepend an li element.
...
0
votes
0answers
8 views
Set a specific entry in ui multi select that cannot be edited by user
I have a multi select that gives five options. I want the multi select to have a default value that cannot be edited by the user i.e if five options are
...
0
votes
0answers
72 views
angular-ui/ui-select inside a custom directive
I am using angular-ui/ui-select inside a custom angular directive, when I first load the page, or do a full browser refresh, the dropdown menu does not appear when I click the dropdown arrow, however, ...
4
votes
1answer
268 views
Angular UI Select, Unique values pre-selected array
Lets say I have want to edit an existing entity that has an array of values that are also part of the selectable values. e.g.
var preSelectedLanguages = [
{id: 2, iso: "de"},
{id: 3, iso: ...
0
votes
0answers
41 views
Does angular-ui-select2 support aria-selected attribute?
Could you help me, I need to apply styles to selected item in select2 control. I'm using angular-ui-select2. In some examples I see that select2 indicates selected items with aria-selected=true ...
2
votes
3answers
305 views
Testing with protractor using ui-select
I am trying to test an ui-select with protractor. In this ui-select I have a list of countries.
My html looks like:
<ui-select ng-model="datiAnagrafici.countryOfBirth" name="countryOfBirth" ...
0
votes
3answers
348 views
angular- ui-select - how to bind object property to ng-model
i'm using the angular-ui-select in a simple user registration form:
<ui-select ng-model="user.countryCode" convert-to-string theme="selectize" class="dropdown">
<ui-select-match ...
2
votes
0answers
316 views
Angular UI Select remove item on click
I am using UI-Select, I noticed that clicking any of the tags makes them blue, which has no purpose for what I would like to do. I would like them removed if clicked. Upon inspection I noticed an 'x' ...
0
votes
1answer
56 views
angular-ui ui-select-choices is not taking 100 % of the width in IE 9
using the bootstrap theme the ul with class ui-select-choices is not taking 100 % of the width in IE 9. Any idea on how to fix this?
4
votes
1answer
479 views
AngularJS - How to clear query text in input of ui-select multiple options
I am using ui-select(version - 0.11.2), my HTML code follows:
<ui-select ng-model="staff.selected" ng-disabled="disabled" reset-search-input="false" multiple>
<ui-select-match ...
4
votes
1answer
150 views
Angular Directive with ui-select and transclude
I have a project where we are using a lot of angular ui-select directives. The usage of the ui-select is standardized and the only difference between the various points we use it is the ...
0
votes
1answer
281 views
angular ui - select: tagging without multiple - why isn't this working?
I use the following packages
$ bower list
bower check-new Checking for new versions of the project dependencies..
(...)
├── angular#1.3.15 (1.3.16-build.113+sha.3881831 available, latest is ...
0
votes
1answer
142 views
Angular-ui-select parent and child grouping
I have an array full of parent objects, and nested in each parent object I have an array with child objects. Without rebuilding my model I'm struggling to find the best way to use angular-ui-select ...
0
votes
1answer
62 views
How to remove double box - Angular UI Select
I get double boxes for drop down list in Chrome, Safari and Firefox. How can I remove the box below?
<ui-select ng-required="isPriceChoiceExist" name="size" ng-model="selected.productPriceId">
...
2
votes
1answer
2k views
Angular ui-select multi select: Dropdown is not getting updated on selecting some items from the controller
On click of "select yellow color" button, I want to add yellow to the selected list. Yellow is getting selected, but the dropdown is still showing yellow. In the same way, I want to deselect yellow on ...
1
vote
0answers
58 views
ui-select: The value change at the same time
Have two ui-select like these in my page:
The problem is that when a change the value for the first select, the second one change too!
This is what i have in the html page:
<div ...
0
votes
1answer
184 views
cannot get label to be inline with angular-ui-select object
I am trying to get a label to be to the left of an angular-ui-select dropdown but it keeps appearing below the label no matter what I try. I recently pulled down the latest angular-ui-select. I am ...
1
vote
1answer
366 views
Pressing enter for selection of a dropdown value directly submits form
I am working with ui-select, and whenever I press enter to select some searched results, the result is selected and the form directly goes on to submit. I cant figure it out, what is the problem.
...
0
votes
1answer
844 views
Multiple ui-select with separate selected values
I have use the following to create several ui-select drop-down based on server data. I like to select independent item from each drop-down. When I select an item in one drop-down, all drop-downs get ...
1
vote
1answer
145 views
angular-ui-select2 query function not defined when used within another directive
I'm trying to use the angular-ui-select2 module within another directive but I receive the following error:
query function not defined for Select2 undefined
When I place the following code in a ...
0
votes
2answers
644 views
ui select placeholder text with search disabled
I am using angular ui-select Selectize Theme. I want to disable search but would like to show place holder text so that user know what is this select field is used for.
I tried modifying ...