Re: [flexcoders] What is equivalent of HttpServletRequest request HttpServletResponse response object in mxml

2008-09-29 Thread adit sathish
Could you post your code How you are passing the code Httpservlet request from your mxml file to remoteObject. Probably there is some problem with you passing your HttpservletRequestObject from your mxml file. HttpServletRequest is Serializable so Java should have any problem trying to get

Re: [flexcoders] Re: How to view attachment file

2005-11-29 Thread adit sathish
you need to cehck the path of the rendere.i.e if u store the rendere in af older comp u need to prefix comp.renderername .Sreenivas R [EMAIL PROTECTED] wrote:Assuming you are using Flex 1.5 and you are following the CustomComponents-ActionScript components exampleyou need to add the

Re: [flexcoders] How to draw a line on the canves which is in the panel?

2005-08-19 Thread adit sathish
Hi, Only thingyou needed to do is to set the depth of the movie clip. Inyour case it is the line. Below is the updated code. Regards, Adit -- ?xml version="1.0"

[flexcoders] DataGrid Sorting

2005-06-29 Thread adit sathish
How can i determine the sorted column of a datagrid and in what order(Ascending or Descending).I need these information while adding a new row with some values to the dataprovider so that i can call sortItemsBy() function for that column in the datagrid. I don't want to implement this logic by

[flexcoders] unable to invoke right clicking in apllication

2005-05-27 Thread adit sathish
I want to implement context menu for different components in my application. The right click need to be implemented in Tree, DataGrid and TileList. My context menu is the same as given in Chapter 10 of Developing Rich Clients with Macromedia Flex, Components: Designing for Resuability. I want