Questions tagged [uicomponents]
179 questions
0
votes
1 answer
MFC component defocus event handler
Is there a standard way to handle MFC Edit box defocus event? I mean if I click on the box enter something and then move on on the other component handling event gets fired? Thank you for any help!

faya
- 5,535
- 11
- 37
- 49
0
votes
1 answer
JSF UIData doesn't render a UIColumn children
I try understand how JSF UIData () works programaticaly in JSF. I have following code:
UIInput input = new UIInput();
UIInput input2 = new UIInput();
UIOutput header = new UIOutput();
header.setValue("Header");
UIColumn column…

Michał Ziembiński
- 1,124
- 2
- 10
- 31
0
votes
1 answer
how to modularise or extend component in sapui5
I am trying to build a mobile application and i am using navigation and routing for switching between my views.
since my app has many view using single component becomes bulky.So i want to modularise that by loading additional routes to my component…

akris
- 57
- 1
- 3
- 11
0
votes
2 answers
Flex: How to resize DisplayObject to fit panel in Flex application
I am trying to attach some of my actionscript class, inherited from Sprite, to my Flex application by attaching it to a UIComponent, then add UIComponent to a panel. However, the size of my Sprite class appears to be larger than the panel. So, I try…

ohm
- 43
- 3
- 9
0
votes
1 answer
Flex Tree/Branch Diagramming/Graphics
I was wondering if anyone had access to source code that would allow me to draw lines between objects. I have examples of the standard one line between 2 objects.
What I'm looking for is an example of how to draw a branching line. I.e. Starts as a…

Babyangle86
- 220
- 5
- 21
0
votes
0 answers
Accessing dynamic UIComponents in JSF Managed Bean 2
I have 6 columns in my dataTable and I am particularly interested in two InputText: I must prevent the possibility of writing in both inputText on the same row. Either is written into one or the other, but not both.
The solution I found is to…

It.Next
- 35
- 1
- 1
- 10
0
votes
1 answer
Flex 3 UIComponent width property not working
I have a flex 3 application in which I draw my own UI. It is a player-style app, so it has a bar that fills as the media plays. I do this with this code:
bgRect=new…

agentfll
- 858
- 2
- 10
- 21
0
votes
2 answers
Does JSF store UIComponents in session?
Hy,
I am a newbie in JSF and I have read about how JSF stores UIComponents or commonly said screens in session. Some questions:
when you request a jsf file for example, JSF first analyzes it and creates like a screen representation in memory with…

fernando1979
- 1,727
- 2
- 20
- 26
0
votes
1 answer
JSF 2.0 getAttributes for resource bundle values is null
We have recently upgraded from JSF 1.x to JSF 2.x
We have a up and running application since 2 years.
The issue we are facing is:
we have below code in JSF

user3558835
- 1
- 1
0
votes
1 answer
FlashCS4: dynamic text is not being contained within the text box
I have a dynamic text box which is of the size 300 x 300. However, when I load in text from an external file it just ignores this size and keeps on going vertically. The width remains the same which is fine. What I really want to do is use the…

ro.
- 1
0
votes
1 answer
Flex 3 custom ItemRenderer and Editor Issue
I've created a custom ItemRenderer extending UIComponent and implementing IListItemRenderer. This renderer contains a Text-Object to display the value.
For editing I'm using the standard ItemEditor (TextInput).
Now, when I want to edit a value, I…

Thomas
- 2,338
- 2
- 23
- 32
0
votes
1 answer
unable to install component/event while making a 'component'
I was following along with this: http://tjholowaychuk.tumblr.com/post/37832588021/building-a-date-picker-component
However, when I do, component install component/event, it doesn't download the required component or add it to dependencies.
Why is…

Jatin
- 14,112
- 16
- 49
- 78
0
votes
2 answers
Keyboard Actions on UIC - C#
i have a login form
(source: deviantart.net)
what i want is that after i have filled the password field when i press "Enter", it performs some action, some set of lines of code, in my case the same that the "Login button does". how to do it

Moon
- 19,518
- 56
- 138
- 200
0
votes
1 answer
Jquery ResourceDependency annotation doesn't work in a UIComponent
I'm developing a UIComponent that uses Jquery with @ResourceDependency annotation, but in Run time show in console this "Uncaught ReferenceError: $ is not defined";
Java code:
@FacesComponent(value = "components.InputInditec", createTag = true,
…
0
votes
3 answers
Simpliest ancestor for a clickable, hand-drawn component?
I am creating a component that will be a large plus or a large minus. I don't want to use a bitmap because even I can draw this using the Graphics class, but the component must be clickable (the Shape class is not).
It will be part of an item…

Richard Haven
- 1,122
- 16
- 31