"custom component" is a generic term for a manually developed UI component for a component based UI framework. When using JSF, please don't confuse this with "composite component", where the component is definied by XHTML using cc:xxx tags instead of by a Java class extending UIComponent.
Questions tagged [custom-component]
1083 questions
-1
votes
1 answer
Why are classLoader magic values in defineClass() throwing an exception?
I want to write a classLoader that can help me implement customized classes and ultimately a whole component at run time. Right now I'm in process of loading the class.
I'm trying to load this role.java file. However when I get to this part of the…

Arifah Azhar
- 227
- 1
- 5
- 17
-1
votes
2 answers
Is there a button component with a transparent background or can you create one?
I'm looking for a button just like this (transparent background and when clicked it becomes gray):Image of the component

Mordechay
- 21
- 5
-1
votes
1 answer
React Native Switch
Are there some ways in react-native to create a switcher with this exact design?
I'm using this React Native Switch, it works perfect, but I need plus text 'on' and 'off', maybe custom component?
https://reactnative.dev/docs/switch
Thank you!

Manche
- 47
- 2
- 10
-1
votes
1 answer
How can I output print commands from other languages to the custom component console in react?
I'm trying to create a code editor in react. I'm alredy done with outputting console.log value to my custom console component. I did this by overriding the console.log but now i'm stuck how to output for example python print:…
-1
votes
1 answer
how to create a custom component with a xml file android
I have an xml file and I want to change it to a component by using a class which extends View.
how Can I do that ??
java code :
public class custom extends View {
public custom(Context context) {
super(context);
}
public custom(Context…

Mahdi nezam parast
- 563
- 4
- 9
-1
votes
1 answer
How to access standard component details inside custom component in salesforce
I am creating a community in the financial Services cloud where I have used a standard component(tab) and inside the tab I am placing my custom component that I have created. The name that I have given to the tab is Business Acocunt. Is it possible…
-1
votes
1 answer
Button with other components inside
I would like to create custom component in Android Studio. This should be a button but with other components like ImageView or ChceckBox inside. How to do this?
I'm already tried create a Compound Control (LinearView with components inside) but I…

Moses
- 5
- 2
-1
votes
2 answers
Using Tedit Inside of a FireMonkey component
I have created a component in Fire-monkey and also created a TEdit inside it.
My component has a String Property named Value that by pouting any string to it , My Component will show that in Tedit.
at design Time every thing is OK. but at Run time…

Fayyaz
- 199
- 2
- 13
-1
votes
1 answer
Custom Component in Android View
I have to create a custom component like this:
How to write its custom component?

androider
- 982
- 6
- 16
- 32
-1
votes
1 answer
ASP.NET API Controller method custom route - Include current URL
I am trying to create a custom route for an API Controller, that has the following structure:
/{currentUrl}/{methodName}
currentUrl does not come as a parameter.
Example:
/tool/compute/download
where "download" is the name of the method, and…

Marius Popa
- 564
- 1
- 5
- 22
-1
votes
1 answer
Create a list of Custom Views in Android
I want to create a custom list in which each item consists of a custom view and some other stuff like text views...
What should I do in adapter so that I can show the Custom Views of different coulours in the list ???
Below is the code I have so…

Hassan Ahmed
- 168
- 2
- 9
-1
votes
1 answer
Asynchronous list view
I have listview with images and its bottom has it's name. In list view each row has no'of images getting from server with left and right arrows are in each row I want see all the images in each row by clicking left and right arrows which are…

abhi
- 1
-1
votes
1 answer
How to define a custom (composite) layout in Android?
I want to learn - if there is a way - how to define a custom view type, and use it in XML layouts.
For example, I have a custom button that looks like this:
I know I can save this as…

jeff
- 13,055
- 29
- 78
- 136
-1
votes
1 answer
Monotouch: How to make reusable compound view
I've been trying to create a custom view, by extending from the UIView class. All the examples i find override the Draw method, but i don't need to draw anything I just need to fill the view with other views/controls, when done in the ViewDidLoad in…

Ben
- 706
- 7
- 11
-1
votes
1 answer
How can I use a canvas to make a custom view?
Possible Duplicate:
android component for audio volume
I am new to android and I am truly sorry if I am asking a rookie question but I am really stuck. Since now I used android built in components like android:button and etc. Now I want to make a…

Arash khangaldi
- 110
- 2
- 15