You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we click on one of the filters, we'll see that it modifies `is_public` URL's parameter to respective value. Our component tracks these changes and sends server requests to get filtered data. We return to this topic later when will be creating additional filters ourselves.
157
+
If we click on one of the filters, we'll see that it modifies `is_public` URL's parameter to respective value. Our component tracks these changes and sends server requests to get filtered data.
158
+
159
+
> In the future, you will often be able to observe similar behavior in many front-end components. All because, we have such a concept as the `page's state`, implemented through the `GET` parameters which are used to update the data based on their values. We return to this topic later when will be creating additional filters ourselves.
158
160
159
161
Moving on, we can see one more very useful component - `context menu`, which in this case, controls the ordering of our leads by their names.
160
162
@@ -347,7 +349,7 @@ as you can see we've added `sort` property to a respective table column, this wi
0 commit comments