-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Load Dynamic Data #172
Comments
Hi @saravananraj21, |
Hi @ISchwarz23. |
To make the SortableTableView SortableTableView, you have to set a comparator for each column that should be sortable, by using the SortableTableView#setColumnComparator() method. |
In my case I don't know how many columns and rows of data will be there.I have to set everything dynamically.Is it possible to do that? |
Hi @ISchwarz23 |
Hi @saravananraj21, |
Hi @ISchwarz23 Can you help me regarding this issue! |
Hi, this is notan TableView issue. The SimpleTableDataAdapter dataAdapter = new SimpleTableDataAdapter(getActivity(), lstrarr_data);
dataAdapter.setTextSize(10);
dynamic_grid(lint_i).setDataAdapter(dataAdapter); |
Hi @ISchwarz23
Is there any solution for the above? |
You can add the data to your TableDataAdapter and then trigger a new rendering by calling the notifyDataChanged() method. |
Hi @ISchwarz23 |
Please read the section about showing custom data and showing sortable data. |
Hi! I need to load dynamic data from database. How to do that ?
I want to reduce the text size of headers and table view.
Can you help me regarding this.
The text was updated successfully, but these errors were encountered: