-
1. Re: Colorpicker component
mosheelisha May 5, 2012 8:01 AM (in response to blabno)Hey,
Thanks a lot for that.
1. I noticed that the OK and Cancel buttons class in the rendered HTML is ".rf-cp-btn-o" and ".rf-cp-btn-c" respectively. Shouldn't it be without the dot at the begining?
2. Please allow to use in a flat mode - without a popup.
Thanks again.
-
2. Re: Colorpicker component
tobycarey May 7, 2012 12:34 AM (in response to blabno)Hi,
Thanks for the demo! I would like to use it in flat mode too, if that's possible.
__________________________
-
3. Re: Colorpicker component
blabno May 7, 2012 3:15 AM (in response to tobycarey)Moshe, Toby thanks for feedback. I think we can provide flat mode soon.
-
4. Re: Colorpicker component
roger.keays May 9, 2012 1:29 AM (in response to blabno)Ajax submissions fail on this component when there is more than one form on the page. Firebug shows that the hidden input value is never sent to the server (Mojarra 2.1.7).
Also, the popup displaces other elements on the page. This can be fixed in css:
.rf-cp { position: relative; }
.rf-cp .rf-cp-h { position: absolute; }
For what it's worth, I restyled the component like this
.rf-cp { position: relative; width: 2em; height: 2em; border: 1px solid grey; }
.rf-cp .rf-cp-h { position: absolute; top: 2em; text-align: center; padding: 0.5em; }
.rf-cp .rf-cp-h input { margin: 0.5em 0.25em 0em; }
Roger
-
5. Re: Colorpicker component
roger.keays May 9, 2012 4:06 AM (in response to roger.keays)To be more specific, the ajax is always submitting the first form on the page instead of the form containing the color picker. This happens with both f:ajax and a4j:ajax
-
6. Re: Colorpicker component
yunaeyes00 Sep 18, 2012 5:38 PM (in response to roger.keays)Can you please add option allowing to open and close the color picker programmatically. For example, I have two color picker side by side, if I open one, I want to close the other one programmactically. Thank you very much.
-
7. Re: Colorpicker component
blabno Sep 19, 2012 3:48 AM (in response to roger.keays)Roger, could you debug this problem?
Thang, I've created issue RFSBOX-73 for this and issued pull request. You can expect the change in colorpicker-4.3.0-SNAPSHOT this week.
-
8. Re: Colorpicker component
blabno Sep 19, 2012 5:47 AM (in response to blabno)Roger, I've created issue RFSBOX-75 for this and issued pull request. You can expect the change in colorpicker-4.3.0-SNAPSHOT this week.
-
9. Re: Colorpicker component
yunaeyes00 Sep 19, 2012 9:14 AM (in response to blabno)How both RFSBOX-75 and RFSBOX-73 are marked as resolved. That is fast. Thank you very much
-
10. Re: Colorpicker component
yunaeyes00 Sep 24, 2012 12:05 PM (in response to yunaeyes00)for the color picker you have style
.rf-cp{
width: auto;
height: auto;
display: inline-block;
}
This is conflict wil collapsiblePanel style. Please fix this, thank you
-
11. Re: Colorpicker component
blabno Sep 25, 2012 3:17 AM (in response to yunaeyes00)Fixed, and issued pull request. Expect changes to be in 4.3.0-SNAPSHOT this week.
-
12. Re: Colorpicker component
blabno Sep 25, 2012 4:03 AM (in response to tobycarey)Flatmode implemented. Expect changes to be in 4.3.0-SNAPSHOT this week.
-
13. Re: Colorpicker component
roger.keays Sep 26, 2012 8:35 PM (in response to blabno)Will test the updates next time we rebuild our application. Our other problem is there is no way to unset a color, i.e. no color or 'transparent'. Support for hex/css values would be pretty useful too.