Roman Sachse
Roman Sachse
Habe noch Problem mit Grafiken im Css
Same Origin Policy etc? http://www.webdeveloper.com/forum/showthread.php?t=203049 http://stackoverflow.com/questions/1663242/calling-a-function-inside-an-iframe-from-outside-the-iframe http://stackoverflow.com/questions/2161388/iframe-function-calling-from-iframe-to-parent-page-javascript-function http://www.roseindia.net/java/pass-value-example/pass-value-from-iframe-parent.shtml
Auf den Parent können sie mit parent.xyz zugreifen. Es geht aber nur wenn host und port übereinstimmen!
Es können auch aus den Child Controllern (Angular) auf Funktionen aus dem Parent zugegriffen werden parent.test();
Interessant wäre auch zu prüfen, ob parents auf den offline storage des childs zugreifen können
Also ein einfacher Zugriff über parent.function funktioniert nicht, da die Widgets von Wookie ausgeliefert werden. Es gibt dann wieder cross-origin Probleme. Vielversprechend sieht die postmessage html5 Api aus: http://www.w3.org/TR/2009/WD-html5-20090212/comms.html#crossDocumentMessages https://developer.mozilla.org/en-US/docs/DOM/window.postMessage...
https://groups.google.com/forum/?fromgroups=#!topic/angular/X8vNMsj30ac http://postmessage.freebaseapps.com/
So, Cache geleert und in der config_dev.yml die folgenden Einstellungen: ``` assetic: use_controller: false bundles: ['CorujaPlesyndBundle', 'CorujaTodoBundle'] ``` außerdem so das dumpen starten `php app/console assetic:dump --env=dev --watch` damit scheint...
my 2 cents: We are currently in the process of moving away from having mutable command objects (and from using them as a data-source for Symfony forms) Reasons (all imho...
Hey @webdevilopers. Sorry had some busy days. Concerning validation: We are using commands with a payload array and not with multiple properties. To validate this we use the collection constraint....