92 questions
0
votes
0
answers
112
views
How Camunda8 form-js handles dynamic lists
I wanted to create my own version of the default dynamic list, but with a maximum of 5 elements.
But i'm not sure how adding new elements to a dynamic list is handled.
The default dynamic list can add ...
0
votes
1
answer
90
views
Dynamic list which adds selected items into a single cell on new rows
I have students, teachers and teacher planning worksheets and need to find a neat and dynamic solution to the following in the 'Scheduling' table:
lookup teacher names - this I can do!
based on ...
0
votes
1
answer
51
views
Can't call javascript function from a anchor element in innerhtml - undefined
I have a list of collapsible divs that is populated with data from a geoJson file and updated dynamically when you zoom in and out of a map, to reflect the markers that are within the bounds of the ...
0
votes
0
answers
37
views
Info or help on creating SwiftUI array that uses a model for data and user input for number of items in array?
I need to create a view with a list. The number of items in the list is called here "Number of Stands"
import Foundation
import SwiftUI
struct Stand: Codable, Identifiable, Hashable {
...
0
votes
1
answer
95
views
Create specified number of items in a list detailed by array
I am wanting to enter a few details on one view.
click a button "Let's go"
and it take me to my next view. In the next view i am passing some this information along with doing some ...
2
votes
1
answer
341
views
How to make a dynamic clustering
I have a nested list that represents dynamic image data, with each inner list containing a number and the x-center coordinate of a bounding box.I need to clustering and get approximate bounding box x ...
1
vote
2
answers
2k
views
Angular: Improve performance for multiple re-rendering large list
So i have that casual problem of rendering large lists with ngFor, but my application being extremely laggy and taking too long to finish rendering.
My actual case:
I have multiple lists of mat-cards, ...
0
votes
0
answers
43
views
how to create a dynamic list in a loop where all combinations are tried from 1 to 360 is inserted and removed
I want to create a dynamic List i Python that will go in to a loop.
The loop will be like.
for t in range(360):
list = [?]
# "more code to come"
The list will be dynamic and will ...
0
votes
2
answers
57
views
Dynamic and unlimited RecycleView of EditText
I'm trying to create a RecycleView of EditText that update on the spot as you add EditText with a Button.
For reference, I'd like to have something that works like a checkbox question editing on a ...
0
votes
1
answer
37
views
How can I find the end of a dynamically populating list?
Scenerio is that we are having a page in which the whole data will load in a single page, at a time limited data is there on the screen but as we scroll down the scroll bar other data will populated ...
0
votes
1
answer
95
views
Elasticsearch equivalent of NOT IN (SELECT ..)
We have something like this (we save an item for each episode, show and user. And all items are saved on the same index.):
and we need to list all episodes from a show, but we need to filter the ...
1
vote
1
answer
252
views
How to count the specific item in dynamic list?
@Published var storedMedicines: [Medicine] = [
Medicine(Title: "Medicine 1", Description: "Lower blood sugar", date: .init(timeIntervalSince1970: 1664779248), isTaken: false),
...
0
votes
2
answers
893
views
Filter columns based on a matched row
I basically want to achieve the following:
Find the row based on a cell value
Output the column names, however
Filter the column names based on the cell values in the row
So I have a list of clients ...
0
votes
0
answers
581
views
Using the UNIQUE() function in a dynamic dropdown list with Excel
I am trying to make a dynamic dependent drop-down list without taking into consideration zeros or empty cells with the UNIQUE() function in Excel. However, whenever i write the UNIQUE() command in the ...
0
votes
2
answers
1k
views
Using Python to Dynamically Pass Lists into String Representation of an SQL
I am querying an Oracle Database via a python script.
The python script will:
Select one large list of 'ITEM_ID's. The list will be dynamic. Sometimes it could contain a few ITEM_ID's, other times it ...
0
votes
0
answers
65
views
Show lable/text if the combo box contains only a single value
I have a combo box that contains a dynamic list of values.
I would like to do this:
if there is only single value - the combo box will be displayed as text only (maybe: will be replaced with a "...
0
votes
1
answer
261
views
Tkinter dynamically changing option menus
I'm creating an application with a tkinter-based GUI where a user can manually or automatically control a set of 16 solenoid valves with raspberry pi GPIO pins.
I want there to be an option where the ...
2
votes
1
answer
827
views
Cypress select item from growing list (q-select)
To do some tests, I need to set fields to a value. I'm having some trouble to set a droplist the best way. Other suites seem to already start before a suite with the droplist is done. I'm looping ...
2
votes
2
answers
2k
views
How to dynamically change data shown on the v-list in vuejs?
I want to dynamically display data on list depending upon the key I select. The list of items can have multiple keys. I want to dynamically choose the data that I want to display onto the list without ...
0
votes
3
answers
456
views
Flutter : Generate List of total sales for each month from another list of DateTime
I have a list of daily sales which includes "DateTime" & "Int" for each entry.
final data = [
DailySales(2022-03-10 00:00:00.000, 200),
DailySales(2022-03-09 00:00:...
0
votes
1
answer
2k
views
Flutter : How insert dynamic list to sqflite
I have an app in flutter want to add list of data to sqlite database at initializing the database ,I have problem with the type of model.
I have this model for data :
import 'dart:convert';
List<...
-4
votes
3
answers
1k
views
How to update a dynamic list in python? [closed]
I had a list that has Business = ['Company name','Mycompany',Revenue','1000','Income','2000','employee','3000','Facilities','4000','Stock','5000'] , the output of the list structure is shown below:
...
0
votes
2
answers
223
views
type 'List<dynamic>' is not a subtype of type 'List<Attachment>'
I use the flutter form builder to get image with camera/gallery and then I want to attach them to an email(I use mailer for this) but when I try to send the email I get the following error:
type 'List&...
0
votes
0
answers
222
views
Ranking Information Chart using Dynamic List Called Linked List using C++ Language
Problem Statement:
Suppose you are asked to make a Ranking information chart of students in a dynamic list called linked list using C++ language. The data will be stored in this list in order i.e. the ...
0
votes
1
answer
115
views
How to multiselect group items in Angular?
<div class="col-4" style="display: block; padding-top: 10px;">
<div class="list-group" id="listDetails" *ngFor="let filter of filters&...
1
vote
1
answer
1k
views
Deleting items from dynamic list ASP Core MVC
I'm trying to remove or hide items from a list and I'm facing two problems, 1- the newly cannot be removed, 2- Tried to tag the deleted items as isDeleted = true using Javascript then later delete ...
4
votes
3
answers
13k
views
How to dynamically add items from different entities to lists in ASP.NET Core MVC
This is my first experience with lists in general and I have kinda complex scenario. I want to add an object of type Story that has a list of Sentences that can be added dynamically. Sentence has a ...
1
vote
1
answer
78
views
Assigning output of for loop as variables in dynamic list [duplicate]
Is there a way to assign the output from a for loop as variables for the output from a method? Both outputs will be lists of the same length.
Below, I am performing the .pages method in pdfplumber on ...
0
votes
0
answers
114
views
(python)how can i find consecutive number set in a list that consisting of interger [duplicate]
I am trying to find subset of consequent numbers in a list(consisting of interger)type data by using python code.
but, it was not easy for me. So, I came here for advice.
Here is example. It is a part ...
1
vote
2
answers
1k
views
I want to render a dynamic list of images all of them inside one carousel
Hello Stack overflow community,
Thank you in advance for the help I am a rather new to react native.
For this project i have imported the library nuka-carousel.
So what I am trying to do is to take ...
1
vote
0
answers
222
views
How to select a specific row of a listview in C# WPF?(Not selected row.)
I am making a point of sale program which has basically a listview and product entrance. When the person enter the same product, this program should increase the quantity of the existing product on ...
0
votes
1
answer
388
views
How do I show dynamic and dependable list of values of model field on Front End using Django Forms?
I have a Detail Model which has a ForeignKey() of User Model. I want to show the list of subject (which is a field of Detail Model) associated with a single user, at the Front End in Template. It ...
0
votes
1
answer
841
views
How to set css style to local storage for dynamically created list using Javascript?
I've just started a Udemy course on Javascript, and the first project is to create a task list. I created it fine according the the tutorial but I wanted to add some features to it. when a new task ...
0
votes
0
answers
86
views
C - warning: comparison between pointer and integer ('struct V_LISTE *' and 'int')
for simple chained (dynamic) list I want to write a function which deletes the first element which contains the char 'k'.
I´ve written the following function:
char popIfK(struct V_LISTE **kopf)
{
...
0
votes
2
answers
3k
views
How to prevent loading all fragments data at once using TabLayout
I've implemented android.support.design.widget.TabLayout in my application. The tab contains dynamic data that comes from the API and also the dynamic content in a fragment.
I'm calling the Tab wise ...
0
votes
0
answers
78
views
Get class members dynamically while reading list member value
using System;
using System.Collections.Generic;
public class Program
{
public class student
{
public string name {get;set;}
public string age {get;set;}
}
public ...
0
votes
1
answer
122
views
Can't Ctrl+Z (undo) with ComboBox referring to dynamic list with named range, rename to array? How?
I have a ComboBox whose list refers to a named range that creates a dynamic list based on the matches with the linked text to the ComboBox (linked with a cell). The list has the length of the amount ...
0
votes
1
answer
208
views
PHP dynamic list retrieval returning Undefined index
I've been testing and playing around as part of personal practice, however, I got stuck in the below point where I want to add a list of items via javascript and upon submission, I want to verify and ...
0
votes
1
answer
2k
views
How to build a list of dynamic strings in Flutter?
I'm coding an app/game where user inputs his own rules on textfields stored in a SQFLite database.
Rules are related to a friend, so it's in a class Friend, with an id, name, rule0, rule1, rule2......
0
votes
1
answer
25
views
How to Update List On Html Component in Angular5
I have component named "Alarms" in which i am calling this.getNotifications(); Function to get all notifications and binding those notifications as a list on my template. There is an option to clear ...
0
votes
1
answer
946
views
google sheet dynamic drop-down dependent list
I was able to create a dynamic drop down list in google sheets where for example: If a user selects something in Column A (Make of car: Toyota); Column B Auto populates with the models for that make (...
2
votes
1
answer
573
views
Using *ngFor to loop over data fetched from server
I am very new to Angular.
I am fetching the list of posts on the server using the following code:
loadPosts():boolean{
if (!LoginService.authenticated){
console.log('not auth');
return false;
}
/...
0
votes
3
answers
851
views
Trying to create a dynamic list in EXCEL
I am trying to create a dynamic list that returns a variable number of items.
I want to be able to enter a CLLI code in row M2 and have the associated PowerPlants be returned in cells M5 to M...
Can ...
0
votes
1
answer
48
views
How to make jquery.dynamiclist run with newer version of jquery?
I would like to use jquery.dynamiclist library in my procject.
In the demo page that's running smoothly there is a jquery library in version 1.8.2.
In my project I use version 1.11.1 and this makes ...
0
votes
0
answers
73
views
How to create listview in android with mixed of checkbox and edittext along with textview?
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 15px;
}
</style>
<...
0
votes
1
answer
1k
views
Macro to Run Through List of Variables
I have a macro that runs a series of other macros. The macro runs automatically when I change the value of a specific cell (B1). The macro generates a project report for the project number specified ...
0
votes
2
answers
1k
views
How to combine ASP with Bootstrap with dynamic lists
My job is to maintain an ASP site, and Bootstrap is great, but there seems to be a fundamental problem with creating a list of items from code-behind, with plain html elements to be displayed nicely ...
0
votes
0
answers
854
views
SQL Query to generate an output table
I have two tables, One is employee registration where the data is provided of the employees (Name, ID, Phone, State etc) and the other is the Data Collected by Employees or Prospects Table (Whenever, ...
1
vote
1
answer
1k
views
SAS EG: Prompts with Dynamic List on Metaserver
I'm trying to develop a SAS Prompt that has a drop down with values pulled from a field on a table I'm storing in the Work library.
When I click "Browse" in the "Data Source" area, ...
0
votes
1
answer
774
views
Joomla How to get a dynamic list of files from a folder as options in a xml file
I'm working on a Joomla 3.6 extension and the xml file which contains the options for a form in the plugin for users to select should be filled dynamically according to all the file names in a ...