Daniel Plomp
(video demo) Strange form behaviour in chrome and ff under linux
@Soundmit @toeknee
I have a RichEditor inside a Builder. It seems that the behavior you described is fixed when I use the RichEditor outside of the builder (I copy content from another field to the RichEditor), but when inside the Builder, it is not showing the changes. But they are saved in the field.
This code is extracting the HTML and creates a Builder Block:
The next code is fired from a hintAction:
Can I update or refresh the Builder somehow?
16 replies
Update two fields after select value changes
Yeah, that is also what I intended. But I also want to update the
text_value_2
from the text_value_1
field. So I'll try to use your example, but I just wondered if there was a way to trigger events?4 replies
Self-Healing URL's
OK, if I make these changes it works:
In my Resource I added:
protected static ?string $recordRouteKeyName = 'id';
In the getPages
function I changed the edit method to this:
'edit' => Pages\EditModel::route('/{record:id}/edit'),
So now it handles both scenarios. 🙂11 replies