Re: [Tobago] Multiple defaultCommands in the same Tobago Page

2007-06-15 Thread Madan Narra
+ input.actionId); } if your sheet is loaded via ajax or has paging/sorting enabled you must invoke the init function via tc:out escape=false. Also the initial value for row needs to passed to the init function then. Regards, Volker 2007/6/14, Madan Narra [EMAIL PROTECTED]: Hi Volker .. Placed

Re: [Tobago] Multiple defaultCommands in the same Tobago Page

2007-06-15 Thread Madan Narra
Hi Volker, The change facet for tc:in/ with renderedPartially set to the command has to call a feature via Ajax and display its result to the User in the same sheet.This Ajax request does not invoke any methods that interact with DB The defaultCommand functionality is used to update the List

[Tobago] Exception Handling in Tobago Pages

2007-06-14 Thread Madan Narra
Hi All, I need to show up the Exception occured in the Tobago Page when an Error Occures in Server, say 500 error. I configured the error and its jsp page in web.xml , and am able to see the page when an error occures. But am confused how to show up the exception that is occured. This is the

Re: [Tobago] Exception Handling in Tobago Pages

2007-06-14 Thread Madan Narra
Hi Bernd, Thnx for ur reply... I havent checked the demo app for error handling... Its working fine now... Regards, Madan N

[Tobago] Multiple defaultCommands in the same Tobago Page

2007-06-14 Thread Madan Narra
Hi All, I have created a template which has a SideNavigation Bar with a textfield and button, and the middle area has a textfield with a button next to it. I set defaultCommand=true for both the buttons, but only one works at a time... is it possible to set defaultCommand=true for both the

Re: [Tobago] Multiple defaultCommands in the same Tobago Page

2007-06-14 Thread Madan Narra
Hi Volker .. Placed the same code as specified by you in previous mails... When working in FF with FireBug in it, saw this error uncaught exception: [Exception... Could not convert JavaScript argument nsresult: 0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JS) location: JS frame ::

[ Tobago ] Position problem with tc:date/

2007-06-12 Thread Madan Narra
Hi All, I have a Tobago Page whose height is around 1000px because it has lot of content to be displayed in that. At the bottom of the page, say arount 800px, i have a tc:date to be used. When i click on the Date image to pick the Date from datepicker, the popup is opened at the top of the

[ Tobago ] Issues with Back Button

2007-06-11 Thread Madan Narra
Hi All, I have an issue with Back Button when used in IE and FireFox. When i navigate to the pages and click on Back Button in FireFox , I get a alert message The Page you are trying to view Contains POSTDATA that has expired from cache. This is expected behaviour. But when done the same in

Re: [Tobago] Use static Variables in Tobago Pages

2007-06-04 Thread Madan Narra
Hi Bernd, I used the Class as a Managed Bean and specifid its scope as application . But no success. public *static* String *loginError* = 0001; This is the varibale i declared in ErrorMessages.java with static . Was getting this error when used as such in jsp page tc:out

Re: [Tobago] Regarding renderedPartially in Sheet

2007-06-02 Thread Madan Narra
Hi Volker, Will add the 'rowIndexVar' in the JIRA as feature request, Thnx for informing . Well, i have another doubt regarding the Sheet Component and its functionality when an renderPartially is done. I have an Array with around 100 objects which when used for sheet whould display ten

[Tobago] Use static Variables in Tobago Pages

2007-06-02 Thread Madan Narra
Hi All, I have a class which has some static variables . I tried to use these variables in Tobago pages for some validation. This is the class i used to hold the static varibales -- ErrorMessages.java Static variable is defined as follows -- *public* *static* String *required * = 0002;

[ Tobago ] get Sheet Object Referance when page submitted with actionListener

2007-05-31 Thread Madan Narra
Hi All, I have an Array which is set to render a sheet in the Tobago Page. I have a button which does a navigation. In order to so some action before navigating, i placed actionListener=#{ bean.method} , immediate=true for tc:button. As i set immediate=true, the variables are not set into the

Popup not opening if operations take time

2007-05-28 Thread Madan Narra
Hi All, I have a popup with a sheet inside it. Sheet is mapped to a List which holds Objects based upon the logic in the controller. These Objects are set from calls made b/w EJB's and Webservices. When i click on the Popup, If at all the List is being set lately ( say 7-10 secs ), The popup

Re: Popup not opening if operations take time

2007-05-28 Thread Madan Narra
the blocking layer from the app if a request fails. It is no problem to use a popup without renderedPartially. Regards, Volker 2007/5/28, Madan Narra [EMAIL PROTECTED]: Hi All, I have a popup with a sheet inside it. Sheet is mapped to a List which holds Objects based upon the logic

Re: Popup not opening if operations take time

2007-05-28 Thread Madan Narra
Hi Volker, This code worked and was able to see the popup as the time out has set to 1. I tested for few times to see the Time which my List gets set. Its taking around 8-10 sec so now this works fine. But the popup opens only after 10sec which makes the User to think that no action is

[ Tobago ] Regarding variable scope in Sheet and Popup

2007-05-24 Thread Madan Narra
Hi All, I have a sheet which has a column which holds small tumbnail images which has a tc:link surrounded. When the link is clicked , a popup opens which shows the same image (tumbnail) in a bigger version. This is the following code i used for this.. tc:sheet value=#{searchItems.Items}

Re: [ Tobago ] Regarding variable scope in Sheet and Popup

2007-05-24 Thread Madan Narra
Thnx Volker , Its working with your logic... Regards, Madan N

Re: [ Tobago ] Help Regarding custom message for Conversion Errors

2007-05-24 Thread Madan Narra
Hi Helmut, Ya i do have resource-dirtobago-resource/resource-dir this in tobago-config.xml . Am already using a resource bundle messages.properties.xml file which resides the following directory structure tobago-resource\html\standard\standard\property\ . I placed the entries for Conversion

Re: [ Tobago ] Help Regarding custom message for Conversion Errors

2007-05-24 Thread Madan Narra
- *From:* Madan Narra [EMAIL PROTECTED] *To:* MyFaces Discussion users@myfaces.apache.org *Sent:* Thursday, May 24, 2007 3:25 PM *Subject:* Re: [ Tobago ] Help Regarding custom message for Conversion Errors Hi Helmut, Ya i do have resource-dirtobago-resource/resource-dir this in tobago-config.xml

[ Tobago ] Help Regarding custom message for Conversion Errors

2007-05-23 Thread Madan Narra
Hi All, I have a Sheet which has a column with tc:in/. It should accept only numerics and nothing other then that. I placed tc:messages on top of the sheet to see if there are any errors. If at all i submit my page with alphabets entered in tc:in/ , i get Conversion Error . But i need to

Re: [ Tobago ] Help Regarding custom message for Conversion Errors

2007-05-23 Thread Madan Narra
Hi Helmut, Can you please send me the sample for the entry for specifing the error messages... I was confused how can i specify the error messages in the xml file... Regards, Madan N

Re: [ Tobago ] Help Regarding custom message for Conversion Errors

2007-05-23 Thread Madan Narra
Hi Helmut, I placed these entries in the properties.xml file... But couldnt get these error messages when there is an conversion error occured. I placed a simple tc:messages for printing the messages.. Is there any thing other than this to be specified ? Regards, Madan N

[ Tobago ] Regarding mouseOver popup in tc:sheet

2007-05-21 Thread Madan Narra
Hi All, I have a tc:sheet with one column holding thumbnail images which when placed mouseOver on that it should display a larger image as popup. I tried to show the image in a div which is placed outside the sheet with its css set as Top : 450; left : 270 . This shows up exactly in the

Re: [ Tobago ] Regarding mouseOver popup in tc:sheet

2007-05-21 Thread Madan Narra
Hi Ayhan.. ya i did... this is the total style class i used for the div .box {/*this is a box */ left: 420px; top: 270px; position:absolute; display: none ; z-index:1000; background: #FF; color : #99; border-color : #FF; border-style : groove;

Re: [ Tobago ] Regarding mouseOver popup in tc:sheet

2007-05-21 Thread Madan Narra
tag? On 5/21/07, Madan Narra [EMAIL PROTECTED] wrote: Hi Ayhan.. ya i did... this is the total style class i used for the div .box {/*this is a box */ left: 420px; top: 270px; position:absolute; display: none ; z-index:1000; background: #FF; color

Re: [Tobago] Regarding renderedPartially in Sheet

2007-05-18 Thread Madan Narra
Hi Volker, thnx for the solution... I have another doubt regarding the tc:sheet rowIndex. How can we know the current RowIndex for the rows in the sheet. If i want to display the Row Number in one of my column, how can i Display the current rowIndex for each row. Regards, Madan N

Re: [Tobago] Regarding renderedPartially in Sheet

2007-05-17 Thread Madan Narra
Hi , Is there anyway to implement the below said feature... awaiting for a response eagerly as we were in a urgent with this feature... Thnx Regards, Madan N On 5/16/07, Madan Narra [EMAIL PROTECTED] wrote: Hi All, I have a sheet which has an inputText in one of its column and a simple

Regarding Conversion Error

2007-05-16 Thread Madan Narra
Hi All, I have a sheet which has an InputTest which is mapped to Integer in the bean. The page is divided into three parts, the Top , left and middle. The Left pane has a tree and the middle pane includes the sheet. If at all i enter some text in the TextField, i get ' Conversion Error ' when

[Tobago] Regarding renderedPartially in Sheet

2007-05-16 Thread Madan Narra
Hi All, I have a sheet which has an inputText in one of its column and a simple tc:out in another columns. I need to add a f:facet name=change for all the inputText available in the sheet. Based upon the value change in one of the rows in text filed, i need to update its corresponing tc:out

Re: Regarding Image popup when mouseOver

2007-05-15 Thread Madan Narra
Oh Sry, I haven't specified the Framework to which this should apply... I need this feature in Tobago . Regards, Madan

Regarding Image popup when mouseOver

2007-05-14 Thread Madan Narra
Hi All, I have a case where a image is displayed in each row of a sheet with respect to the content thats shown in the sheet's row. The image would be smaller one (thumbnail) so it will not be displayed in properly. So i need to display a popup next to the image when placing mouse on that so

[ Tobago ] Help Regarding invoking Managed Bean from dos/unix shell

2007-05-07 Thread Madan Narra
Hi All, I have a doubt which may / may not be related to Tobago , but its sure that its related to JSF. I have a cron job running on UNIX platform , which is scheduled to perform a specific operation. Previously the job calls a URL with a parameter passed to the Servlet , something like this

Re: [ Tobago ] Help Regarding invoking Managed Bean from dos/unix shell

2007-05-07 Thread Madan Narra
Hi Udo, Thnx for the quick response. I have another doubt to get clarified . In the NonFacesRequest Example, the FishServlet extends NonFacesRequestServlet. This class is specified in web.xml. Can the same servlet be used as a Managed bean (registered in faces-config.xml) ie if it can be

Re: [ Tobago ] Help Regarding invoking Managed Bean from dos/unix shell

2007-05-07 Thread Madan Narra
Hi Udo, Thnx for the response.. Its working fine now.. -- Regards, Madan N

Re: [Tobago] Skip a row while displaying tc:sheet/

2007-05-02 Thread Madan Narra
Hi, Hope Volker,Bernd are busy... Can anyone please help me out with this...

Re: [Tobago] Skip a row while displaying tc:sheet/

2007-04-28 Thread Madan Narra
Hi All, Can anyone please help me out regarding this ... Thnx in advance. Regards, Madan On 4/27/07, Madan Narra [EMAIL PROTECTED] wrote: Hi All, I have a condition to check while displaying a sheet records. I need to skip a record(row) based upon the condition. I can do

[Tobago] Skip a row while displaying tc:sheet/

2007-04-27 Thread Madan Narra
Hi All, I have a condition to check while displaying a sheet records. I need to skip a record(row) based upon the condition. I can do this in the Controller( Modify the object to not include this record) but the same object is being used in other places which will effect the whole flow. I

Re: [Tobago] How to make button disable when user inputing a text field by using tc:in?

2007-04-24 Thread Madan Narra
Hi Sam, I had a case earlier to the same what u specified in ur mail. The onChange() event in tc:in/ is called when the focus is lost from that. But if u enter some value in tc:in and directly click on the button then , the button will not get disabled instead ur button action will be called.

Re: [Tobago] The UnderLayer for popup is displayed for the whole page

2007-04-23 Thread Madan Narra
Hi Volker, FYI :Re-opened the issue.. Regards, Madan On 4/23/07, Madan Narra [EMAIL PROTECTED] wrote: Hi Volker, Got the Jar's for nightly build. Tobago-324 is resolved and its working good now. Thnx for the updates. But i had another issue. Its the same to Tobago-324 issue but related

[Tobago] The UnderLayer for popup is displayed for the whole page

2007-04-22 Thread Madan Narra
Hi Volker, Got the Jar's for nightly build. Tobago-324 is resolved and its working good now. Thnx for the updates. But i had another issue. Its the same to Tobago-324 issue but related to Popups. If at all the page height is long , and had a link for popup at top of the page. When clicked,

Re: [Tobago] Regarding Sheet State

2007-04-12 Thread Madan Narra
Hi Volker, checked out the code and build using MVN. Now the sheet works fine as usual as before. Thnx for the quick response. But i have another doubt. The sheet has 4 columns out of which three are sortable and the last column has a textfield which is not sortable. I have entered some

Re: [Tobago] Regarding Sheet State

2007-04-12 Thread Madan Narra
your problem. Regards, Volker [1]: https://issues.apache.org/jira/browse/TOBAGO-354 2007/4/12, Madan Narra [EMAIL PROTECTED]: Hi Volker, checked out the code and build using MVN. Now the sheet works fine as usual as before. Thnx for the quick response. But i have another doubt. The sheet