Hello everyone, I have been search for reasons about this for two days, but still haven't got any clue. Can someone help please? I'm usually developing and...
Hi, Can you please post this question on flexcoders. This list is for component/framewrok development questions not flex application questions. Peace, Mike ......
Help. I posted this on FlexCoders with no response, so I thought I would try here too. I'm trying to use an itemRenderer to create a comboBox in a DataGrid...
Good stuff, keep up the good work and I think I will be contributing to FlexLib at some time, when I can find some free time :) Dimitrios Gianninas Developer ...
Hello guys, I'm currently working on a iTune-ish media player and I thought it'll be cool if I share it with you all my iTunes XML file parser. Basically, it...
Your itemRenderer is not a ComboBox, it is a VBox containing a ComboBox. The DataGrid sets the .data property on the VBox and you haven't written the code to...
I must be missing something. Why can't you use the same labelFunctions in PDG? Most people's labelFunctions should be reusable. Your code example does not...
OK, now I've gotten rid of the VBox, but still do not see how I can set a different dataProvider to the comboBox, or dynamically set the selectedIndex. Again...
Hi guys, I have a datagrid with a custom button renderer built in Actionscript. I'm trying to figure out how to capture the click event of the component when...
First off, reinstate the VBox. The override the setter data (value:Object). There you can either set the cb's dataProvider like cb.dp = data.someObject or if...
Hamza, Les questions génériques sur Flex devront être posées sur "Flexcoders" et pas ici, du fait qu'ici on parle de la creation de "components". Aussi,...
salut João, Merci pour votre réponse,mais je suis un débutant en Flex et je comprend pas bien l'anglais malheureusement . S'il vous plait donnez moi l'@ de...
http://tech.groups.yahoo.com/group/flexcoders/ Ici vous pourrez poser vos questions. Je ne connais pas de communauté francophone pour flex, désolé. João...
Perhaps I am not being clear. I know I can set the dataProvider within the component. What I need to know is how I can either change the dataProvider when...
You can write you own IFactory, or you can do this: _col3.itemRenderer = new ClassFactory(comboR); _col3.itemRenderer.properties = { dataProvider : ...
If you change the width of the date column, does it show up correctly? You might have hit a boundary condition between the measured size and the actual size...
Ok i changed the column's width to make it fit and yes it shows up correctly. I think i can use this as a workaround, not letting the wordwrap happen. But...
A click event is a bubbling event. Therefore, anyone listening to click on the DG will see it. However, they'll also see clicks on scrollbars and other parts...
You're welcome to open a bug about it. If you have a mini-example, submit it with the bug. I never tried it here, but I've seen things like it before. -Alex ...
this is just a hunch but maybe the anomalous machines have an earlier build of FP9? I dunno but when our QA team experiences what seems to be more like ...
Ok i kept playing with this and there is something wrong: I made the date column to fit, and everything worked fine, now i added more columns which don't use a...
Can you get the regular DataGrid to cut lines? Give it the same column sets and columns widths. You might have to subclass the renderer and get it to be...
It seems that printing is one of the complicated topics with Flex :P Well i am now printing my grids correctly and everything works fine, or so i was expecting...