The uicomponents tag has no wiki summary.
0
votes
0answers
31 views
Can a bind instance of a JSF component be replaced by another instance of the same component?
Is it valid to have a bind component (i.e. p:dataTable) and then recreate the whole component (not just change some properties) with a new instance of the same UIComponent so the new instance will be ...
0
votes
1answer
56 views
How to add Scroll bars to UIComponent in Flex
I have following situation.
<mx:Canvas id="canvas" height="100%" width="100%">
<mx:UIComponent id="chart" width="100%" height="100%"/>
</mx:Canvas>
Now there is one SVGDocument ...
1
vote
1answer
38 views
Where can I find an explanation/documentation of how each JSF component interacts with the page-lifecycle
Often when using a UI component of JSF or one of it's 3rd party component libraries, I have a hard time finding the documentation that explains where in the lifecycle the attributes of these tags will ...
6
votes
4answers
2k views
Find component by ID in JSF
I want to find some UIComponent from managed bean by the id that I have provided.
I have written the following code:
private UIComponent getUIComponent(String id) {
return ...
0
votes
2answers
470 views
Which UI frameworks are recommended to use with Backbone.js?
Is there a recommended framework with UI widgets (like grids, trees. etc.), to use with Backbone?
I saw questions about integrating Kendo with Backbone.
Do you know other (and also free) frameworks ...
0
votes
1answer
32 views
Applying gradient coloring with one parameter
I have differnet boxes that have a certain double parameter. This parameter should determine what color the box has. The coloring should start with one color for the double value 0.0 (perhaps blue) ...
0
votes
1answer
223 views
UIComponent seems to have “padding/margins” set (Flex 3 to Flex 4 migration issue?)
I have a Flex application that has a single UIComponent, which contains a single Bitmap object. In Flex 3 everything was good. In Flex 4, the same code results in an offset of the children within the ...
1
vote
1answer
238 views
Flex DataGrid does not sort correctly if a column contains custom UIComponent
I have a DataGrid with the first column being strings ("Red", "Blue", etc) and the second column being a circle (custom UIComponent) of the corresponding color. If I click on the first column to sort, ...
2
votes
1answer
236 views
Adding external CSS file to a BoilerplateJS project
I'm trying to incorporate some UI components to a BoilerplateJS project that I'm currently working on, to be specific I want to implement this ...
1
vote
1answer
163 views
How to set the labels (LabelTable) of an uicomponent slider (jslider)?
I created a slider using uicomponent which can be found on File Exchange
handles.slid=uicomponent('style','slider',0,90,5);
handles.slid.MajorTickSpacing=10;
handles.slid.MinorTickSpacing=10;
...
0
votes
1answer
170 views
How to get the value of an uicomponent slider on Matlab when a key is pressed?
How to get the value of a uicomponent slider on Matlab when a key is pressed?
I'm using this in the GUI code:
% --- Executes just before teste is made visible.
function teste_OpeningFcn(hObject, ...
0
votes
2answers
130 views
What is the difference between put and add method in statehelper in JSF 2
What is the difference between:
Object put(Serializable key, Object value)
void add(Serializable key, Object value)
methods in StateHelper in JSF?
0
votes
0answers
105 views
setting mouse cursor for hdividedbox divider in flex
I want to set the mouse cursor position for HdividedBox divider from where we could start dragging the divider. Now I have set its properties of DividerAffordance to 3 and horizontalGap to 3 as well. ...
0
votes
1answer
103 views
ActionScript 3: UIScrollBar bug(?) - width of container returns +85px
Using Flash CS5 I came across something odd today.
The UIScrollBar component has the rigid width of 15px. When you add it to a container such as a Sprite, you'd expect the width of the sprite to ...
0
votes
0answers
180 views
Action not being called when adding JSFunction to datatable programatically
I´m trying to add a a javascript function above the datatable programatically. To expand information, this function would be called whenever you click a columns header, to perform sorting for certain ...
0
votes
1answer
515 views
JSF: When to add ClientBehavior to own component
I am developing a component containing an AJAX client behavior. The behavior depends on the parameters provided to the component (e.g. render and execute targets). Due to performance reasons I do not ...
2
votes
1answer
187 views
Adding Matlab components to Java JWindow
I have to create a Matlab figure window with custom maximize/minimize and close buttons. For it, I use a JWindow window. I have had to add a JPanel to it because this is the only way with I can get to ...
0
votes
0answers
53 views
How to select the area of an UIComponent to display in an other UIComponent in flex4?
How to select the area of an UIComponent to display in an other UIComponent in flex4?
just like the small map of the warcraft , who use the example ?
0
votes
2answers
951 views
how to get all rows of jsf or primeface datatable programmatically
i am using an datatable and every row has a selectonemenu as an column.
There is a button on my page.When it is clicked,i want to check every rows of datatable,find the selected item of selectone ...
1
vote
1answer
516 views
Pass UIComponent in Action MethodExpression
Is there a possibility to pass an UIComponent in action's MethodExpression?
xHTML
<p:menuitem id="test" value="Test" action="#{controller.test(this)}" update="test" />
Java
public String ...
1
vote
2answers
195 views
Is it possible to generate facelets code from UiComponent Object in JSFManagedBean
I want to generate facelets code from UIComponent,
Eg:
org.primefaces.component.commandbutton.CommandButton;
CommandButton btn=new CommandButton();
btn.setValue("Click");
for this code, the ...
0
votes
2answers
1k views
JSF2 + IceFaces 2 - Retrieve UIComponent from ViewRoot
I've got hard time resolving the following. My problem is quite simple : I would like to highlight in red the forms fields that triggered validation errors. The error messages are placed correctly in ...
0
votes
2answers
427 views
s:list of UIComponent is not rendering well by custom ItemRenderer
I created a custom ItemRenderer for a s:list, for it to contain a list of UIComponent which contains a MovieClip. When I scroll some of the items are not shown/rendered, although their parent/x/y ...
1
vote
1answer
807 views
JSF 2: Change rendered atribute of a component on phase listener
Hy guys,
In JSF 2 How can I change the rendered atribute of a h:InputText component using a PhaseListener.
Before the jsf page be rendered I have to verify all id of the h:inputtexts, and after that ...
1
vote
1answer
556 views
mock facescontext and uicomponent in seam
I am trying to write unit test for the following method in seam.
To do this…I need to mock both facesContext and UIComponent and pass it to method getAsObject .
I tried using Jmock and seam but ...
3
votes
1answer
215 views
Is there a C++Builder component that mix a Listbox and a treeview?
I need to display some hierarchical data with columns.
So A kind of listbox mixed with a treeview.
I've look at the standard components and JCL/JVCL, but nothing similar. Any idea ?
EDIT
I'm using ...
0
votes
2answers
947 views
Flex 4 UIComponent width and height remains zero after addChild is called
I have a component ObjectHolder which extends UIComponent that holds many children UIComponents. However, after using addChild() to add these children to ObjectHolder, its width and height remain ...
1
vote
1answer
2k views
Difference between value and binding tag for UIComponents in JSF
I am learning JSF and am confused in these two attributes. What difference will it make if I will use:
<h:inputText value="#{myBean.myProperty}/>"
rather than using:
<h:inputText ...
1
vote
1answer
515 views
Access value binding of UIComponent
I use <t:inputFileUpload> for uploading files in my application. The selected file (represented as a UploadedFile object) is only saved to its binding (the member in the backing bean) upon form ...
10
votes
2answers
4k views
Embed XNA in WinForms
Is it possible to embed an XNA game in a C# WinForm or a C++ Window. If yes then How.
I want to use normal UI controls & have a windowed interface of the game for more interactive & dynamic ...
2
votes
3answers
845 views
How do I create a custom floating Swing component without a JFrame?
I'd like to create a custom swing component such as a desktop widget which does not require a JFrame (or to extend it) to be printed on the screen.
I don't want to extend the JFrame because my ...
2
votes
2answers
772 views
How to update screen in blackberry?
i am developing one app. and i am facing a problem related to updating the screen,which is already in stack.I tried to use myappscreen.invalidate() on button click,but it doesn't update screen.
...
5
votes
1answer
451 views
Android components for displaying a graph (nodes and edges, in 2D)?
I'm at the starting point of developing an android app similar to a "mindmap" program (like Thinking Space). It shows some graph nodes (containing text, maybe images) and edges that connecting them. I ...
0
votes
5answers
1k views
Handle MouseEvent.CLICK, MOUSE_DOWN in subclasses
I'm building a panel of buttons, that are enclosed in Canvas container. For this purpose I created a MyButton class, which is a subclass of UIComponent. MyButton class has 2 other subclasses: ...
3
votes
1answer
777 views
Custom Facelets-Tag with multiple Child-Components in h:panelGrid
I have written a custom tag extending UIComponentBase.
It adds multiple Child-Components (UIComponent) during the encodeBegin method.
For layouting purposes, I'd like to nest this Child-Components ...
0
votes
2answers
469 views
fl.controls.TextArea not scrolling all the way down
I have a TextArea control, and sliding the scrollbar all the way down always doesn't show all the text.
I think it has something to do with me changing the typeface, because I noticed that when I do ...
1
vote
3answers
223 views
Problem retriving components of AlertDialog - android
I am tring to build an alertdialog with a view and access a TextView to set its text value. Here's the code :
private void ShowLogDialog() {
AlertDialog ad = new ...
0
votes
2answers
436 views
Flash UIComponent… not working… again
I keep getting this error:
TypeError: Error #1006: setSize is not a function.
at circles::SpiroUI/doSliders()[/Users/wakemana/Documents/Adobe Flash Builder 4/SpiroPaint/src/circles/SpiroUI.as:74]
...
0
votes
3answers
2k views
Scaling and resizing flex component
I have custom flex component inherited from UIComponent (compiled, no source code access). It has fixed width-to-height proportions and it's scalable. If I set its width and height to 100%, it's ...
0
votes
1answer
50 views
What component is this that Visual Studio uses?
Does anyone know what component this is? (The expanded option toolbox, where I can click on it and it opens a lot of options, I can put in the left side of the form or the right.)
I don't think it's ...
8
votes
4answers
159 views
Designing Application that can accept add ins
Like there are many Applications which are just basic but you can have install add-ins for it which extends its functionality in that Application. For example:
Fire Bug in Mozilla Firefox.
How ...
9
votes
3answers
7k views
How to add progress bar control to Matlab gui?
Is there a ready made progress bar uicontrol that can be added to Matlab gui,
either uicontrol or ActiveX component?
[edit] I know about the waitbar function, I meant a component that can be ...
0
votes
2answers
410 views
is it possible to change number of rows or fontsize of datepicker in titanium appcelerator?
if so how?
birthday_picker = Ti.UI.createPicker({
type:Ti.UI.PICKER_TYPE_DATE,
minDate:minDate,
maxDate:maxDate,
value: new Date(),
top:200
});
2
votes
1answer
714 views
uicomponent tree memory usage
Greetings,
I have rich faces application (3.3.2.SR1). The application uses ModelPanel to view entities. All modal panels are not rendered until I want to show them (rendered = false). Application ...
1
vote
1answer
998 views
Date and Time in picker view in android for titanium
Here I need to generate the date and time picker for android in Titanium,
The Titanium.UI.Picker is used for iphone only
12
votes
1answer
6k views
How to pass custom component parameters in java and xml
When creating a custom component in android it is often asked how to create and pass through the attrs property to the constructor.
It is often suggested that when creating a component in java that ...
2
votes
2answers
6k views
JSF 2.0: How to add UIComponents and their contents to view root?
I am building a custom UIComponent and adding elements (and other stock UIComponents) inside it. The component renders ok, however it cannot be found from the ViewRoot.
Let's say I have:
...
0
votes
1answer
754 views
Adding JSF UIComponent as composite component child renders nothing
I have a custom UIComponent, which renders ok when called directly from the base facelet template (I guess this makes it a direct child of UIComponentBodyTag). However, when it is called within a ...
0
votes
0answers
911 views
flex error: 'a subClass of UIComponent does not implement 'mx.core.IUIComponent'", when surely it does
i have created an MXML component
but i get this error:
'TextArea' declaration must be contained within the < Declarations > tag since it does not implement 'mx.core.IUIComponent'
when checking ...
1
vote
2answers
37 views
Recommendations for ajax component libraries
If I were to pick an AJAX component library to focus on for general web development, with good grid support and wide range of components, which would you recommend and why?
I started with the ...



