tagged [refresh]
ServiceStack RedisAuthRepository not storing anything
ServiceStack RedisAuthRepository not storing anything I have this problem where I'm trying to use ServiceStack RedisAuthRepository to store user information so I can use it to rehydrate the User Sessi...
- Modified
- 25 Oct at 13:4
Using Polly to retry after HttpStatusCode.Unauthorized
Using Polly to retry after HttpStatusCode.Unauthorized I'm making calls to an external API and want to deal with the event that a call returns an `Unauthorized` `HttpResponseMessage`. When this happen...
- Modified
- 25 Sep at 06:51
Best Way to Refresh Adapter/ListView on Android
Best Way to Refresh Adapter/ListView on Android My book, "Hello Android" gives this as a way of using a custom db helper, setting up a cursor, and then setting up an adapter as follows: With this howe...
JTable How to refresh table model after insert delete or update the data.
JTable How to refresh table model after insert delete or update the data. This is my jTable ``` private JTable getJTable() { String[] colName = { "Name", "Email", "Contact No. 1", "Contact No. 2", ...
- Modified
- 14 Apr at 11:26
Is there a better way to refresh WebView?
Is there a better way to refresh WebView? Ok. I have looked EVERYWHERE and my little brain just can't understand a better way to refresh an activity. Any suggestions that I can understand would be gre...
Refresh Token using Polly with Named Client
Refresh Token using Polly with Named Client I have a policy that looks like this ``` var retryPolicy = Policy .Handle() .OrResult(resp => resp.StatusCode == HttpStatusCode.Unauthorized) .WaitAnd...
- Modified
- 25 Sep at 06:50
Angular + Material - How to refresh a data source (mat-table)
Angular + Material - How to refresh a data source (mat-table) I am using a [mat-table](https://material.angular.io/components/table/overview) to list the content of the users chosen languages. They ca...
- Modified
- 31 Jul at 07:53
Refresh problems with databinding between Listview and ComboBox
Refresh problems with databinding between Listview and ComboBox I am wrestling with a binding problem in WPF/Silverlight. I have a Listview witch is filled by a DataContext form an EF linq query. In t...
- Modified
- 9 Jan at 12:24
Why won't control update/refresh mid-process
Why won't control update/refresh mid-process I have a windows form (C#.NET) with a statusLabel that I can not seem to get to update in the middle of a process in event handler methods. My code looks l...
How to refresh or show immediately in datagridview after inserting?
How to refresh or show immediately in datagridview after inserting? After entering data into all the textbox, and after clicking the submit button, it won't immediately show in the datagridview, I nee...
- Modified
- 27 Jan at 07:24