How to Keeps the checked Items On filtering ListGrid smartgwt - filtering

I am using the smartgwt 4.0, I have a listgrid showing many personal items
I want to implement Maintaining Check Box State of a personal item selected in listGrid while Search on the filter any body know please help me.

Related

Flutter tagging and filtering the data based on tags selected(Multi selection of Tag is possible)

I'm trying to create a new page in which people can view all the people which are providing the services on my platform but can be filtered by using tagging
The filter should happen in such a a way that people who are providing most of the services which are tagged should be on top and based on the number of tags hit the order of people will be maintained most tag hit on top and least tag hit to be on the below side of the search result
For this purpose i'm trying to use "https://pub.dev/packages/flutter_tagging/example" which is a library which helps with flutter tagging
but now i want to add this tag filter to filter my grid based on the tags selected
so basically a search button on top using which the tags can be added
a button to switch the grid to list (i have the code for both grid and list but they ar enot related to my data at the moment)
and finally the tag to filter the data
Step 1:- Once the user clicks on View ALl the user is redirected to next screen
Step 2:- Currently the second screen is just a grid however i want it to have the flutter tagging to filter all people and also a button to change from grid to list
I'm new to flutter so any guide reference will be great
for any question please feel free to ask

Xamarin.forms listview with pull to refresh and New itens on top

I'm kind new to Xamarin development.
I need to develop a crossplatform (Android, ios and Windows Phone) app like the iPhone email client app in which New emails are shown on top of other emails by pulling to refresh and getting new emails from Server or a Facebook news feed style app.
I have discovered that Listview of xamarin.forms has the pull to refresh feature, but New itens gets added to the bottom of the listview, I need these itens to be added to the top of the listview... Is kind of strange having to tap "pull to refresh" on top, while New itens gets added to the end (bottom) of the listview.
Does anyone knows how to achieve that? (Show New itens on top of the listview)?
I appreciate any help.
Thanks in advance,
Ana Carolina
The answer is quite simple..
I was adding new itens to the observableCollection by using list.add(obj)... That way the item gets added to the end of the list... I changed to list.insert(0,obj) and Now the new itens are shown at the top of the listview...
☺️

AG-Grid server side paging issues

I am looking for the below two features with AG-GRID pagination. Please let me know if it is possible with this grid.
I have successfully implemented service side pagination with AG-Grid. The pagination gives the options "First", "Previous", "Next" and "Last". Assume a situation that i am having 50 pages. If i want to go 40th page, i will have to press the "Next" button 40 times. This is really annoying. Is there any way that we can specify the page number using the pagination option?
Is there any way that i can go to a particular page during run-time or during grid on ready event?
gridOptions.api.paginationGoToPage(40);

Questions about Android listview

If I have more than 100 items in listview then is there any better solution than creating new 100 classes and XML files for staring new activity on click of each list item?
Using switch case and array of list items I can create but I am searching better solution than this
I am new to Android development
If any one having any idea please share it.
Thanks in advance.
You wrote:
"I am having predefined list of items in my project but it is having around 150 items in list and after clicking on item there must be new page which shows some text and images on next page"
So make only one new Activity and display text and images depending on the selected item. At the onCreate-Method of your Activity ask for the selected value from the list (you can transport this item/its name as a String with a Bundle). And depending on the selected item you generate your text and your images and - if needed - their functionality.

losing data stored in list when next page selected in pageablelistview with checkbox

How do I not lose stored data of selected items in a pageable list view with checkbox when I change the page. please view my earlier post for code.
Visit page:
checkbox in pageablelistview in wicket
You can either:
store the data using Ajax the moment the checkboxes are set/unset.
try to prevent the user from leaving the page by javascript. See here