can I call up the edit panel from a link?
can I call up the edit panel from a link?
Sasori7
Posts: 26Questions: 10Answers: 0
in DataTables
is there a way to use _GET or _POST to call up the edit panel?
for example, https://admin.bingointl.com/apex/testing.php?id=59
Answers
You mean when you go to that URL you want it to show the Editor pane for editing that row? Yes, You can use the
URLSearchParams
API to get the value from your parameter and then calledit()
directly with the row id based on that.Allan
OK, I'm gonna try.