Questions tagged [components]

A component in the Unified Modeling Language "represents a modular part of a system, that encapsulates its content and whose manifestation is replaceable within its environment. A component defines its behavior in terms of provided and required interfaces". The best example of component can be found in ActionScript- Flash,Flex sdks. There you have UI components like buttons, labels, DataGrids, charts those are reusable, distributable etc.

11658 questions
3
votes
2 answers

Ember editable recursive nested components

I'm currently trying to build a component that will accept a model like this "values": { "value1": 234, "valueOptions": { "subOption1": 123, "subOption2": 133, "subOption3": 7432, …
J T
  • 584
  • 1
  • 6
  • 10
3
votes
1 answer

Delphi Environment Setup for Package / Component Development

After reading some mailing lists and bbs, I couldn't find a proper way to setup my development environment for package and component development. Perhaps we can collect some tipps here for a good setup. For component development it is suggested to…
Christian Metzler
  • 2,971
  • 5
  • 24
  • 30
3
votes
1 answer

Splitting React components into separate files

This seems to be a common question, I'm finding a lot of people asking it and the responses are all very different and seem to be a bit hit and miss. I've watched various video tutorials, read plenty of tutorials, and the documentation. But alas it…
Andrew
  • 141
  • 2
  • 11
3
votes
1 answer

Access child view model in Knockout

Is there a way to access a child view model from any of its parents? My use case is i have some custom knockout components. I have a base definition for each component in a separate file. I would like to be able to customize them in different ways…
user3619165
  • 380
  • 1
  • 2
  • 13
3
votes
2 answers

How can I call parent method when not all parameters are passed in?

I have a ColdFusion parent component with a function that looks something like this: public numeric function myFunction(var1, var2, var3, var4, var5){ ... function code ... } Then I have a child component that extends this component and has…
froadie
  • 79,995
  • 75
  • 166
  • 235
3
votes
1 answer

Why does my React Native bridged iOS component not work?

I want to create a simple UIView subclass and then make it available as a React Native JavaScript component via bridging to React Native. I have followed these directions and thumbed through lots of the react source code:…
Aaron
  • 7,055
  • 2
  • 38
  • 53
3
votes
1 answer

Clean way to render and re-use RactiveJS components/templates

Alright. I'm burdened by SEO reasons to amend an app done in expressjs/Ractive to support server-side rendering. The front end side of things is packaged up using gulp and everything's organized into a clean nested component structure. Is there any…
user1835017
  • 353
  • 3
  • 10
3
votes
1 answer

In React.js, how would I render a component from a string representation of a component?

My problem specifically is that I would like to be able to create dynamic templates, depending on the type of item contained in a certain record. I would like to store these components as strings in the database and render them dynamically as the…
meesterguyperson
  • 1,726
  • 1
  • 20
  • 31
3
votes
1 answer

Docker container granularity: SOA or monoliths?

Currently I have a Java web app that is backed by half-a-dozen-or-so microservices, where each microservice communicates with 1+ backing resources (DBs, 3rd party REST services, CRMs, legacy systems, JMS, etc.). Each one of these components lives on…
smeeb
  • 27,777
  • 57
  • 250
  • 447
3
votes
1 answer

Castle Windsor RemoveComponent False

I am calling Kernel.RemoveComponent on my Windsor container and it is returning false. I know the component is present (I have verified by calling GetHandler with the same key and it returns the expected info)...so why can't I remove my component…
Jeff
  • 35,755
  • 15
  • 108
  • 220
3
votes
2 answers

Difference between behavior and -ms-behavior

I don't understand the difference between behavior and -ms-behavior. I thought behavior was already only for Microsoft's Internet Explorer, so why is there a vendor prefix version? Does it make any sense to use both or just -ms-behavior?
3
votes
1 answer

How to include container into another container dynamically in Hippo CMS, by drag'n'dropping them from catalog toolbar?

I'm using Hippo CMS 10. Through console, in hst:catalog I've created hst:containeritemcomponent with hst:xtype, hst:referencecomponent, hst:iconpath, hst:label. hst:referencecomponent references to hst:containercomponentfolder at…
Nur4I
  • 183
  • 4
  • 19
3
votes
2 answers

VHDL OR logic with 32 bit vector

zero <= result_i(31) OR result_i(30) OR result_i(29) OR result_i(28) OR result_i(27) OR result_i(26) OR result_i(25) OR result_i(24) OR result_i(23) OR result_i(22) OR result_i(21) OR result_i(20) OR result_i(19) OR…
VHDL_
  • 31
  • 1
  • 4
3
votes
1 answer

Calling controller action from action in component

I'm having some issues getting this to work. I thought I had done it correctly but it seems that's not the case. index.hbs {{#if image}} {{image-cropper imageToCrop=image setCroppedImage=setCroppedImage}}
{{/if}} {{file-input…
Jordan
  • 2,393
  • 4
  • 30
  • 60
3
votes
1 answer

How to destroy the Tchromium (Delphi) component dynamically created?

How to destroy the Tchromium component dynamically created ? I'm using in a DLL , the component necessary to create and destroy it several times without deallocate the DLL, the problem is that is not releasing memory and is unable to clear the cache…