Firemonkey TListview linked to dataset refresh issue
In Delphi 12.0, I'm using Firemonkey TListview.I link a dataset to it so the contents show the dataset correctly.However if I modify a record it will not update the changed row in...
View ArticleWhite Column in List View of My Fiori App
I'm having a problem with my Fiori app. In the list view, there's always a white column on the right that I can't remove. I've tried various layout options, but nothing has helped so far.here is the...
View ArticleFlutter ListView lazy loading in both directions (up, down)
I would like to have a ListView in flutter which provides lazy loading in both directions (up, down).Example: There are 60000 items in the backend database which can be theoretically displayed.First I...
View ArticleHow to initialize listview inside fragment in activity
I am new to android. I am trying to initialize listview in fragment using a custom adapter but I have problem with using the custom adapter constructor.Here is my custom adapter code.public class...
View ArticleCalling a ListView from a separate dart file--do I have to define my list as...
In my app, I have a ListView that I would like to populate with Firebase data. I successfully did it, but now, I would like to separate my ListView in another dart filemain.dartclass _MyHomePageState...
View ArticleApply custom border to each row in a List with SwiftUI
So, I want a List in SwiftUI, where the border of each row depends on some function of the contents of the row. Normally I can do this easily with .border() but List seems to take care of the styling...
View ArticleWhy is my ListView custom drawing not applying row background colors in Win32...
I'm trying to apply custom row background colors to a ListView in a dialog-based Win32 application using WM_NOTIFY and NM_CUSTOMDRAW.However, the colors are not being applied correctly, and the...
View ArticleJavaFX: Wrapping text in ListView
I am trying to build a text editor. I'm using a ListView for storing comments. I want the string to be wrapped automatically without me having to scroll through it horizontally so that long string...
View Articleadding header to multicolumn listview in android
I tried the following question in this forum Adding Header in Listviewbut the problem is same I've used a linearlayout having three textview as header to my multicolumn listview but the problem is that...
View ArticleHow to populate a ListBox in windows forms in C++/CLI
How can I add items std::strings to a ListBox in a for loop in C++/CLI ? Is it even possible?It's a Windows Desktop CLR project in C++/CLI (Not C#) with Forms.
View ArticleDisplay empty text when there are no items in ListView Windows forms
I'm trying to display an empty text message inside a listview when I have no items inside it (that's when the form is initialized).I've tried searching different method out of which one is using the...
View ArticleCustom ListViewItem in ListView
possible ways to show item in ListViewItem WPFUpdate:that's the control i need to add to the ListView, in here i only need to display the Computer Name, still the item should hold the Computer...
View ArticleListViewBuiler inside Row flutter
i am trying to add a listview inside a row , but i got this ErrorI have in the row Two widgets the first one with a column , the second widget is the listview builder that return another widget .I am...
View ArticlePassing volley response to listview using an ArrayAdapter
I'm unable to figure out how to pass the volley response to the listview using the adapter(myadapter). Do I use myadapter.add() and pass it what? I read tutorials and after weeks trying, I think it's...
View ArticleC#/WPF: Make a GridViewColumn Visible=false?
Is there an option to hide a GridViewColumn somehow like this:<ListView.View><GridView><GridViewColumn Header="Test" IsVisible="{Binding Path=ColumnIsVisible}"...
View ArticleIs it possible to 'freeze panes' in SharePoint lists?
I need to keep my columns header, so people can see what data is displayed there, but I can not find if it is possible, or how to do it. Also will be nice to add a navigation bar to the list. Any...
View ArticleHow to retrieve data from sql server db in android
this is the first time I am developing an android application. I want to bind some data with grid view or list view based employee id provided on the text box. How can I do that. Please help me to find...
View ArticleAdd Items to a ListView from a database
I am a Vb nooby and I have trouble to add specific Items to my Listview from a database.I would like to compare the value of a combobox with a column value of a table.To proof if they are equal like...
View ArticleListView Multiselection
I tried to implement the multiselection on Android ListView. I want to select/deselect more than one item and these items should keep highlighted or not.I don't want to use CheckBoxs for selecting the...
View ArticleBind two textfields and a ListView to activate a button in JavaFX
I try to find a solution for my problem, but I'm at a dead end of my attempt and my small JavaFX skills.Long story short, I want to activate a Button when two TextFields contains valid values and a...
View ArticleFlutter - Container BoxShadow disappears on scroll in a ListView
This is what my Container looks like:new Container( width: 500.0, height: 250.0, padding: new EdgeInsets.fromLTRB(20.0, 40.0, 20.0, 40.0), decoration: new BoxDecoration( color: const Color(0xFF66BB6A),...
View ArticleFlutter Statefulwidget update error in ListView
Steps to reproduceA ListView widget with stateful widgets in itInsert a new stateful widget into ListView (And the new widget should be of the same type as the original widget in the ListView at the...
View ArticleAndroid set single item background color in listview
I need to change color on selected item in list view, i know how to do that in click method, but the thing is that I want to set it then i load new activity. In that activity I'm creating listview and...
View ArticleHow can I set the maximum height on a ListView?
I would like to create a UI where half of the screen is a ListView and the bottom half is another view. Not sure how to specify the maximum height for the ListView.<?xml version="1.0"...
View ArticleC# Refreshable ListView Binding Issue
I have a ResourceDictionary called Document. In it, I have a DataTemplate with it assigned x:Key="AnimalsDataTemplate".The document is registered in my App.xamlApplication.ResourcesResourceDictionaryIn...
View ArticleSwiftUI: Why is my view pushed and popped immediately when being called from...
I have recently started working with iOS and SwiftUI. I ported a simple solitaire-type game over from Android and I have it mostly working, but now I'm trying to implement a view that renders previous...
View ArticleHow can I customize the fields displayed in "Recently Viewed Contacts" list...
I'm working in Salesforce and trying to customize the fields that appear in the "Recently Viewed Contacts" list view for the Contact object.I understand that for the generic "Recently Viewed" view, you...
View ArticleUpdate composable when list changes
I've got a composable on a Screen which shows a list of Track items (favourites):var favourites: MutableList<Track> by mutableStateOf(mutableListOf())@ExperimentalFoundationApi@Composableprivate...
View ArticleGetting reference for a inner control in a ListView
I am new in Android and I have read some tutorialss about custom ListView and I am doing an app to manipulate data I resume my problem with this little app. the screen is this:in this there are a...
View Article