Force an init of the fields form in the ThingyRecord when the Edit form is loaded.
This commit is contained in:
parent
b7358fbceb
commit
c96b3d6bc0
2 changed files with 6 additions and 0 deletions
|
|
@ -9,6 +9,7 @@
|
||||||
- fixed #10612: strange i18n, with regard to label
|
- fixed #10612: strange i18n, with regard to label
|
||||||
- fixed #9935: German characters in Collaboration System
|
- fixed #9935: German characters in Collaboration System
|
||||||
- fixed #10610: editing a page and editing goes away
|
- fixed #10610: editing a page and editing goes away
|
||||||
|
- fixed #10518: ThingyRecord edit page - Fields to Edit not filled in
|
||||||
|
|
||||||
7.7.13
|
7.7.13
|
||||||
- fixed #10574: Creating Calendar Entry
|
- fixed #10574: Creating Calendar Entry
|
||||||
|
|
|
||||||
|
|
@ -207,6 +207,11 @@ sub getEditForm {
|
||||||
$self->session->url->extras('yui-webgui/build/thingyRecord/thingyRecord.js'),
|
$self->session->url->extras('yui-webgui/build/thingyRecord/thingyRecord.js'),
|
||||||
{ type => "text/javascript" },
|
{ type => "text/javascript" },
|
||||||
);
|
);
|
||||||
|
$self->session->style->setRawHeadTags(<<EOSCRIPT);
|
||||||
|
<script type="text/javascript">
|
||||||
|
YAHOO.util.Event.onDOMReady( function () { var thingForm = YAHOO.util.Dom.get('thingId_formId'); WebGUI.ThingyRecord.getThingFields(thingForm.options[thingForm.selectedIndex].value,'thingFields_formId')} );
|
||||||
|
</script>
|
||||||
|
EOSCRIPT
|
||||||
return $self->SUPER::getEditForm;
|
return $self->SUPER::getEditForm;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue