ui.data.ActiveList.insert
Inserts an element at the specified index and shifts the rest of the list. If the specified index is greater than the length of the list, the element will be appended to the list.
Returns this ui.data.ActiveList.
Usage | Returns |
---|
ActiveList.insert(index, el) | ui.data.ActiveList |
Argument | Type | Details |
---|
this: ui.data.activelist | ui.data.ActiveList | The ui.data.ActiveList instance. |
index | Number | The index at which to insert the element. |
el | Object | The element to insert. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["The `insert` method adds an element to a `ui.data.ActiveList` at a specific index, shifting existing elements if necessary."],["If the provided index exceeds the list's length, the element is appended to the end."],["This method returns the original `ui.data.ActiveList` instance, enabling method chaining."],["It accepts the insertion index and the element to be inserted as arguments."]]],["The `insert(index, el)` method adds an element (`el`) to a list (`ui.data.ActiveList`) at a given index. If the `index` exceeds the list's length, the element is added to the end. It shifts existing elements to accommodate the new one. The method returns the modified `ui.data.ActiveList` instance. The index and element are specified as arguments when calling the method.\n"]]