Questions tagged [custom-component]

"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.

1083 questions
0
votes
1 answer

how to create UISelectItems from a Database

We are in the need of populating UISelectOne- and UISelectMany-Components with SeletItems from a database. Instead of subclassing I decided to create a Child-Component element which is able to provide the SelectItems. This way we dont have to…
lostiniceland
  • 3,729
  • 6
  • 38
  • 50
0
votes
0 answers

JSF2 MetaRule and MethodBinding

Do I still have to care about MethodBinding in a subclass of MetaRule#applyRule? I would like to fully remove any deprecated APIs from my code and only support JSF2+ I have a MethodRule class that extends MetaRule like seen in some frameworks like…
Christian Beikov
  • 15,141
  • 2
  • 32
  • 58
0
votes
2 answers

How to get image/icon below form designer for my custom component when added on form in design mode?

I am using Visual Studio 2010, C# and WinForms and have created custom component like this: public partial class SlidePanel : Panel { some code here... } So it is a component class not a user control. What I want is when I drag my component on…
0
votes
1 answer

Custom event not firing in Flash Builder

I have 2 custom components in Flash Builder, A.mxml which contains B.mxml. B has a text input, and every time the text is changed I would like to call a "save()" function on A. The relevant code in B is: [Event(name="customChange",…
ario
  • 1,727
  • 4
  • 19
  • 28
0
votes
1 answer

Creating android custom view

I'm trying to create a custom view component which looks like this: a component will work as a menu - it has 4 imageviews inside which react to onClick event. I made a separate .xml with them and a class for it. Than i set the parent node class…
Graykos
  • 1,281
  • 3
  • 20
  • 31
0
votes
1 answer

SSIS Script task get all the variable names and values

I need to parse through all the user variables in my ssis packages. As of now, I am able to get the names and values of ALL the variables in my package. I need to grab the name and the value and dump them to a table. As of now, I can display the…
rvphx
  • 2,324
  • 6
  • 40
  • 69
0
votes
1 answer

Output variable name and value in SSIS package

I am trying to output the name of all the user variables and their values and then store the values in a table. I managed to get till the point of parsing the variables and their values, but right now it gives me all the variables (system and user).…
rvphx
  • 2,324
  • 6
  • 40
  • 69
0
votes
1 answer

How to have a select list pop out of an input box?

I'm creating an html5/js app for iPad via phonegap. I'd like to implement a search input box such that the results of the search appear in a select list that pops out of the box (sort of like the popover in ios sdk). I want it to work similarly to…
Anthony Tyler
  • 157
  • 2
  • 11
0
votes
1 answer

Performance with custom Gallery without pictures

I have implemented my custom Gallery using custom views instead of pictures. Reference was http://www.programmingmobile.com/2011/08/android-tutorial-gallery-view-without.html However now that I have about 8 custom views, containing complex layouts…
Niko
  • 8,093
  • 5
  • 49
  • 85
0
votes
2 answers

Adding Custom ImageButton to layout in Android causes error

I will start by saying this, while I have some Java training, is my first foray into development for Android. What I have done is created a custom ImageButton called MapCell that is basically an ImageButton that holds a few extra pieces of…
0
votes
1 answer

Flex nullable Combobox/Dropdownlist - how to customize it

Ok what I want is quite typical, I am sure alot of Flex developers want it at some point in their life too. Let's take an example: In user profile page, there is a combobox/dropdownlist for "current employer" which should have an item named "No…
Phung D. An
  • 2,402
  • 1
  • 22
  • 23
0
votes
1 answer

Pass a ViewModel to Reusable Knockout Control

I have a resusable control/custom binding & template designed to build a dynamic wizard based on a set of passed in config options and the ViewModel that is ultimately bound to the page. I've got the wizard building itself properly and displaying…
Brent Pabst
  • 1,156
  • 1
  • 15
  • 37
0
votes
1 answer

Why does h:selectOneRadio does not have a "name" attribute?

I want to do some crazy grouping with SelectOneRadio, so I decide to create my own custom component that allow me to specify the name attribute of the tag (as you know, same name means the radio buttons are in the same group). The renderer…
Thang Pham
  • 38,125
  • 75
  • 201
  • 285
0
votes
1 answer

KnockoutJS Wizard

I'm attempting to create a reusable wizard control that will display a data entry form based around Knockout. Essentially the template will never really change but will be completely dynamic. I envision being able to do the following: Define a…
Brent Pabst
  • 1,156
  • 1
  • 15
  • 37
0
votes
1 answer

Dynamic refresh of a composite

I have a tree viewer next to a specialized viewer. When something is selected in the tree viewer, details about this object are shown in the specialized viewer. TreeViewer tree, Composite control, and MySpecializedViewer viewer are instance…
Ethan Reesor
  • 2,090
  • 1
  • 23
  • 40