An object, created by built-in programming language prototypes.
Questions tagged [embedded-object]
20 questions
6
votes
4 answers
How to add JavaScript onClick handler to an embedded html object?
I'm trying to add an onClick handler to an embedded object. The handler needs to execute a function which is in an external .js file which is linked to the current html file via
The javascript file contains something like this:
document.write('
2
votes
2 answers
symfony form - delete embedded form object
I have a two Symfony forms:
ShoppingListForm
ShoppingListItemForm
I'm embedding the ShoppingListItemForm inside the ShoppingListForm many times. i.e. A shopping list contains many items.
So the ShoppingListItemForm consists of two widgets:
item_id…

Antony
- 69
- 3
- 5
2
votes
8 answers
Prevent an element from "capturing" the mouse using jQuery?
I'm trying to resize an embedded object. The issue is that when the mouse hovers over the object, it takes "control" of the mouse, swallowing up movement events. The result being that you can expand the div containing the object, but when you try…
user1228
2
votes
1 answer
JavaScript native objects with extended prototype and "for-in" loop
I have extended Array prototype:
if(typeof Array.prototype.filter === 'undefined') Array.prototype.filter = function(fun /*, thisp*/){
var len = this.length;
if(typeof fun != "function") throw new TypeError();
var res = [], thisp =…

Rustam
- 1,875
- 2
- 16
- 33
1
vote
0 answers
Viewing IP camera via embedded VLC
Hey all i am having some problems with viewing a stream from the IP camera via its CGI commands:
http://192.168.1.99:99/videostream.cgi?user=UNhere&pwd=PWhere&resolution32=&rate=0
When creating the HTML page for the embedded code it looks like…

StealthRT
- 10,108
- 40
- 183
- 342
1
vote
0 answers
Realm sync not working for embedded objects in react native
This is my collection schema on realm -
{
"title": "testnote",
"properties": {
"_id": {
"bsonType": "objectId"
},
"_syncPartition": {
"bsonType": "string"
},
"title": {
"bsonType": "string"
},
…

Gaurav Raj
- 699
- 6
- 21
1
vote
0 answers
Excel Object: Impossible to open an embedded object
I'm new and have a question. Hoping that someone can help. I have received an Excel Document with embedded PDF Objects (first picture).
Embedded Adobe Acrobat PDF:
I can't open it, because Acrobat Reader isn't installed and i have not the rights to…

Patrik
- 11
- 2
1
vote
1 answer
Angularjs 1.5 component modal with callback function that is called multiple times by embedded Object in IE11 not updating Angular binding
In IE 11, I have an Angularjs 1.5 modal component as below. The modal opens and on render event it calls a function outside of the angular app with a callback function contained in this component. This outside function initiates a install process…

user1906451
- 83
- 6
1
vote
0 answers
Saving Visio drawing after update an embedded Excel object in VBA
I have a problem with my VBA code.
My task is to create VBA script which will scan directory for Visio drawings, update an embedded Excel object, save it and close it.
So I developed a VBA sub:
Dim m_visioApp as Object
Set m_visioApp =…

Jacek
- 36
- 6
1
vote
3 answers
How to list all embedded files from a microsoft office document, using Apache POI?
is there any opportunity to list all embedded objects (doc, ..., txt) in a office file (doc, docx, xls, xlsx, ppt, pptx, ...)?
I am using Apache POI (Java) Library, to extract text from office files. I don't need to extract all the text from…

Nicola
- 385
- 1
- 5
- 15
1
vote
0 answers
Form for embed object array in ember
I am new to Ember JS and even JS in general. My app has a field object which can have one of two types: either free text entry or a list of options to select from. In my form I am trying to make it so that when the type is 'Select Menu' a set of…

Brian H
- 1,033
- 2
- 9
- 28
0
votes
1 answer
MongoDB Map/Reduce Count of First Occurrence in Embedded Objects
The data structure I'm working with consists of an object which has many embedded objects in MongoDB. The catch is that an object may contain 2 or more of the same embedded object (they have the same ID). Using map/reduce, I'd like to get an…

Mitch Kett
- 66
- 2
0
votes
1 answer
MongoDB Realm cannot update user embedded object in Swift
I'm trying to add to an embedded "Conversation" object within my user collection (for a chat app) in Mongo Realm. I would like to create a "default" conversation when the user account is created, such that every user should be a member of at least…

David Carney
- 1
- 1