Jon Mason
Help with custom field
I was able to do this and at least get the ID on the input to match the absolute state path, so it's no longer just like
my-field
, now it's mountedTableActionsData.0.lines.my-field
I think it's a step in the right direction, but it didn't resolve the issue.4 replies
Persisting repeater changes to DB (TableRepeter)
turns out I am dumb. I didn't realize that $get() would work on data that's not an actual field. The ID of my row isn't an input field...I just tried it on a whim and it returns my id, so I learned something new today.
3 replies
Using Flux UI on Custom Page
@rubendn Following up on this to see if you've seen any issues going this route? I'm interested in plugging in flux to use it in a couple of places and was curious what your experience has been so far?
I mainly have a unique use-case where I need a searchable select blade component, and I know flux has a searchable select, so wondering if this would be pretty easy to incorporate or if you've run into headaches.
6 replies
multiple dashboards
I added a
getWidgets
method to each class so I could get the right widgets included on each dashboard. Now, despite having fully gutted my new Dashboard class, and having getWidgets()
return an empty array, it's still returning the widget.15 replies
multiple dashboards
ok, so I didn't do a good job explaining what I was trying to do, I was running into an issue with the first step, but didn't describe the end goal.
I have a class I've been using for the dashboard. It needs to stay like a dashboard, but I need to move it, and have it not be the main page anymore, and I need to create a new dashboard. So I moved the old one to the pages directory and tried to make it extend the
Page
class, which I was able to do by adding a couple of methods., and copying the markup from the stock dashboard view.
So I've almost got everything at this point, the old dashboard functions like I intend it to when I navigate to that page, but the new dashboard that's supposed to replace it as the true dashboard for the panel doesn't work. It's trying to access the widgets from the old dashboard. I feel like I've fixed all the references and anything that would cause it to do that.15 replies