ZeroCharistmas
Repeater not saving pivot relationship
So the model function did end up being a pretty big part of it, which is a little weird because I thought I tested it out pretty thoroughly before. I'm just experiencing problems with the fullcalendar widget being unable to load the relationship for the create modal now.
9 replies
Text input with partially obfuscated data.
Got a version of it working thanks to you guys and @Chris Reed!
Because this is a field of a one-to-one relationship, the data didn't seem to be showing up in the edit page's mutateFormDataBeforeSave callback. Putting a before function on the input seems to be similar enough though, so I used that to disable dehydration on the component if it's null.
34 replies
Text input with partially obfuscated data.
So your implementation is cool but it hits the same problem that mine is hitting. If the record is saved and the obfuscated input is left obfuscated, the secret field is overwritten with asterisks in the db(before encryption)
34 replies
Text input with partially obfuscated data.
The only time I ever want the value to be fully visible to a user is at the time it is entered fresh either in a create or edit action(when replacing the value). It should be obfuscated on the server side such that the original value doesn't show up in the html. After it is set, I want it to be partially obfuscatedbsuch that a user can infer that it is accurate. I don't want the method of obfuscation to change the saved value to its obfuscated version when other parts of the record are changed.
34 replies
Dynamically creating chart widgets, or creating a custom multi-chart widget?
Sure. The idea is to have a dashboard full of customizable charts backed by a model holding the chart configuration.
Currently I just want to show a line chart widget for each chart configuration record featuring a count of newly created records over time.
7 replies