- Your Locale:
- English (United States)
- Your Time Zone:
- Coordinated Universal Time
- TopStyle (27 days)
- javascript.com (5 days)
- webreference.com (19 hours)
- JavaScript Tip Archive (8 days)
- Jim Waldo (956 days)
- petes eats (792 days)
- flaver (786 days)
- spikefu (1148 days)
- Developer Dispatch (336 days)
- FlashComponents.net (1708 days)
Object serialization with Amf3Output of BlazeDS
Amf3Output class included in BlazeDS libraries allow us a simple way to serialize objects from server to client in AMF3 format. Download complete example as flex J2EE project (translate)
ComboCheck: bug fixed
Fixed bug with checkbox checked at dropdown in component ComboCheck. (translate)
Select item by value in a ComboBox
Flex ComboBox extended to implements a select by value feature: package com.arcadiocarballares { import mx.controls.ComboBox; public class ComboBoxByValue extends ComboBox { private var _selectedValue:int; public function SelectByValueCombo() { super(); } public function get selectedValue():int { return _selectedValue; [...] (translate)
Data encryption with Flex and Java
Applications which need extra security in Flex can use data encrypting. This system must encrypt data in server (Java) and transmit it encrypted so only client system (Flex) could decrypt them. In the inverse process, client encrypts data to send it to the server. Thus we guarantee secure data transfer. There are few system of asymmetric [...] (translate)
ComboCheck: CheckBox inside of a ComboBox
ComboCheck is a Flex component which extends ComboBox class and display CheckBox as itemRenderer with multiple selection. It provide selectedItems property to store provided object in the ComboBox dataProvider and selected by the CheckBox. Click with the right button to obtain source code. (translate)
ComboCheck 1.2
Update flex component ComboCheck 1.2 with new features: Select and deselect all checkbox code optimization Click with the right button to obtain source code. (translate)
Display articles of a category in Joomla
Articles View 1.0 is a Joomla module to display articles of a section or category. The extension is simple but allow to position an article list, as it be done, on any location in the template. Download Articles View 1.0 (translate)
ComboCheck bug fixed
Update in ComboCheck component that fix a problem with items selected. Thank you to Sivakami. (translate)
Flex-LiveCycleDS-Spring-Hibernate application example
Configuration example of a J2EE web application with LiveCycle, issues: Start the database hsqldb with the init scripts startdb.bat (Windows) o startdb.sh (Unix) adapted to our enviroment pointed to hsqldb.jar (you can configure another database connection modifying jdbc.properties file) Load the database with SQL scripts in db directory using build.xml Ant file (on project top directory). Adjust [...] (translate)
Flex Calendar with events
Calendario is a Flex component that display a calendar (month) and provide the following features: Event assignment Dates selection Inactive days Internationalization Eventos de selección: selectDay and deselectDay Click with the right button to obtain source code. (translate)