Re: [TRINIDAD] ios skin example

2010-12-30 Thread mamallan . uthaman
Sorry, I somehow I miss interpreted that you were referring to ADF Faces documentation. The docu you referred below belongs to ADF Mobile browser which is based on Trinidad tags, and any artifacts on mobile belongs to this dev guide. So I don't think there is any other artifact beyond the

Re: [TRINIDAD] ios skin example

2010-12-29 Thread mamallan . uthaman
Hi Paul, It is not from ADF documentation as ADF Faces (unlike Trinidad) has page fragment support for page sliding feature. The example is only a prototype, I believe the intention is to prove that during a partial refresh of a component, you can achieves the sliding feature using CSS

Re: [Trinidad] Problem using on Blackberry mobile

2010-09-24 Thread mamallan . uthaman
Hi Seema, The patch for TRINIDAD-1826 will fix your problem, so our next JSF 1.2 release won't have this issue.For the time-being, we can manually apply this patch to our Trinidad impl jar since it is a mere JS change. I have already sent you a Trinidad jar with this fix, but I'm still

Re: [Trinidad] Problem using on Blackberry mobile

2010-09-22 Thread mamallan . uthaman
Hi Seema, Finally, I reproduced your issue once I used our Trinidad's official JSF1.2 release, unfortunately, there is no workaround as BB's JS engine simply crashes becoz of some JavaScript code in Trinidad. Will create a JIRA to fix this problem in our next release for JSF1.2. Hopefully,

Re: [Trinidad] Problem using on Blackberry mobile

2010-09-22 Thread mamallan . uthaman
Hi Seema, Please find my answers inline. The problem you are facing will happen only in BB 4.7 to BB5.0. I hope you won't have this issue with either BB5.0 which is Webkit based or other BB browsers with version less than 4.7 as they are considered as basic HTML browsers. You can start your

Re: [Trinidad] Problem using on Blackberry mobile

2010-09-22 Thread mamallan . uthaman
Seema, just a minor correction with my statement/ BB5.0 which is Webkit based , /It is BB6.0 which is a Webkit based browser. - Mamallan On 9/22/2010 4:39 AM, mamallan.utha...@oracle.com wrote: Hi Seema, Please find my answers inline. The problem you are facing will happen only in BB 4.7 to

Re: [Trinidad] Problem using on Blackberry mobile

2010-09-21 Thread mamallan . uthaman
Hi Seema, Hmm... seems like doctype may not be the only problem. Have you enable JavaScript (JS) in your BB browser? I believe Trinidad pages will prompt you to enable JavaScript if a browser has disabled JS. Also, please check the compatibly of your MDS and emulator, your* 5.0 emulator

Re: [Trinidad] Problem using on Blackberry mobile

2010-09-21 Thread mamallan . uthaman
Hi Seema, You will find the download link for MDS 4.1.4 at the bottom of this webpage: http://na.blackberry.com/eng/developers/browserdev/devtoolsdownloads.jsp Thanks Mamallan On 9/21/2010 11:51 AM, mamallan.utha...@oracle.com wrote: Hi Seema, Hmm... seems like doctype may not be the

Re: [Trinidad] Problem using on Blackberry mobile

2010-09-20 Thread mamallan . uthaman
Hi Seema, Thanks for sending your sample page, and I successfully reproduced your issue. The problem lies in the doctype code (refer below) of your sample page. Trinidad's document will render the docytype for you, so by adding an additional doctype in your code, you are sending two doctypes

Re: [Trinidad] Problem using on Blackberry mobile

2010-09-15 Thread mamallan . uthaman
Hi Seema, What Blackberry device are you testing? is it new Blackberry 6.0? Thanks Mamallan On 9/15/2010 8:49 AM, Seema Richard (UST, IND) wrote: Hi, We are using MyFaces 1.2 with Facelets and Trinidad for our web application which needs to be supported in multiple mobile devices like

Re: [Trinidad] Problem using on Blackberry mobile

2010-09-15 Thread mamallan . uthaman
Hi Seema, Are you adding any JavaScript (JS) to your application? If not, can you still reproduce this issue with a very simple page containing only a button? The source parameter you are referring is added by Trinidad's JS, so if JS added in your app breaks (happens in rare occasions) the

Re: Trinidad:Skins

2010-03-12 Thread mamallan . uthaman
Hi Jose, You don't need to know how how skin selectors are compressed. Please disable the compression like .xbo, .xba while developing your skin by using below in web.xml: context-param param-nameorg.apache.myfaces.trinidad.DISABLE_CONTENT_COMPRESSION/param-name

Re: Trinidad panelFormLayout align question

2010-03-02 Thread mamallan . uthaman
May be you can try considering below: tr:panelLabelAndMessage label=Date Range tr:panelHorizontalLayout tr:inputDate simple=true shortDesc=Start date/ tr:inputDate simple=true shortDesc=End date/ /tr:panelHorizontalLayout /tr:panelLabelAndMessage Or else you can try to fiddle

Re: el expression in plain html

2010-02-09 Thread mamallan . uthaman
Assuming your requirement is to pass a parameter and its value on page submission, you can use tr:inputHidden id = paramName value=#{myBackingBean.paramValue}/. - Mamallan On 2/9/2010 7:05 PM, Krishna K. Pandit wrote: What do you need exactly? If you want to call a method getParamName() of

Re: [Trinidad] Styling icon of tr:panelAccordion

2010-01-19 Thread Mamallan Uthaman
Hi Simon, Try this: af|panelAccordion::title-link { color: #CBD3E2 !important; } Thanks Mamallan schneidc wrote: Hi, I just want to change the color of the disclosed / undisclosed icon of the accordion panel but my problem is that the style always gets overridden by some other. In the

Re: [TRINIDAD]Suppressing Validation during PartialPageRequest

2009-12-09 Thread Mamallan Uthaman
Hi Ricardo, Did you try immediate = true in your selectOneChoice-dropdown? Thanks Mamallan Ricardo Rog wrote: Hello, I want to change the state of a navigationBar via partial page request in dependency of a value chosen in a selectOneChoice-dropdown. In the same form are some

Re: [TRINIDAD] Family and component type for SelectRangeChoiceRenderer

2009-11-24 Thread Mamallan Uthaman
Hi Carsten, Please try below for selectRangeChoicebar: component-family = org.apache.myfaces.trinidad.SelectRange renderer-type = org.apache.myfaces.trinidad.ChoiceBar Thanks Mamallan Carsten Pieper wrote: Hello, we want to overwrite Trinidad's default SelectRangeChoiceRenderer. We already

Re: Disable Trinidad skinning and CSS

2009-11-12 Thread Mamallan Uthaman
Hi Thomas, You should be able to override Trinidad default styles using your own custom styles. Problem can arise because of some CSS cascading issues, you can resolve it by using inLineStyle and other CSS techniques like pseudo-element, !important keyword, etc. Also, you can see the CSS file

Re: [trinidad] problem submitting forms in limited mobile browsers

2009-09-30 Thread Mamallan Uthaman
Hi Francisco, The best way to best detect whether JavaScript is being used or not is to intercepting your HTTP response using web-debugger like fiddler. You can download it from the link below: http://www.fiddler2.com/fiddler2/ In your case, I believe it could have happened that though

Re: [trinidad] problem submitting forms in limited mobile browsers

2009-09-30 Thread Mamallan Uthaman
- On Wed, Sep 30, 2009 at 15:38, Mamallan Uthaman mamallan.utha...@oracle.com mailto:mamallan.utha...@oracle.com wrote: Hi Francisco, The best way to best detect whether JavaScript is being used or not is to intercepting your HTTP response using web

Re: [TRINIDAD] character encoding issue with 1.0.11

2009-09-14 Thread Mamallan Uthaman
Hi Paul, Do you get any exception in the server log? I guess this could be due to Trinidad-1430. Thanks Mamallan Paul Mander wrote: We've recently upgraded from 1.0.7 to 1.0.11 and found that we now cannot enter Turkish characters into forms whereas before we didn't have any problem in

Re: [TRINIDAD] Skinning and RenderKit Selection

2009-09-08 Thread Mamallan Uthaman
Hi James, Trinidad first determines whether an incoming request belongs to a pda thru the request's User-Agent String, if so, it chooses pda renderkit, else it chooses desktop renderkit. Exception is iPhone, since Safari browser supports all the features of a desktop browser, Trinidad uses

Re: text-align in inputText

2009-09-08 Thread Mamallan Uthaman
Hi TIA, I am not sure what you mean by your styleClass af|inputText.numericText::content since it doesn't look like a Trinidad-recommended skin-selector for tr:inputText. But you can simply achieve your desired result by adding a new styleClass for tr:inputText that takes numeric values.

Re: [trinidad] navigationTree expand all

2009-08-25 Thread Mamallan Uthaman
Hi ShhQuiet, I think you can try doing it programmatically using disclosedRowKeys attribute. I mean something like below. tr:navigationTree ... disclosedRowKeys=#{bean.disclosed} And in your bean, RowKeySet returned by getDisclosed method should contain all rows. Thanks Mamallan shhQuiet

Re: Is it possible to set width for label of a tr:panelLabelAndMessage ?

2009-08-19 Thread Mamallan Uthaman
Hi Ikiris, You can set the label width using tr:panelFormLayout. Please find my example below tr:panelFormLayout labelWidth=40% tr:panelLabelAndMessage label=Label 1 tr:inputText / /tr:panelLabelAndMessage /tr:panelFormLayout Thanks Mamallan PS: If you want to try label width in

Re: [trinidad] trinidad 1.0.11 on BlackBerry simulators

2009-08-14 Thread Mamallan Uthaman
Hi Youheng, This problem can occur if you haven't upgraded your MDS server while using new emulators. BlackBerry 4.x emulators need MDS 4.1.4. Thanks Mamallan HU Youheng wrote: Hi, Has anyone got trinidad 1.0.11 works on BlackBerry simulators? I deployed trinidad-blank-1.0.11-SNAPSHOT.war

Re: Trinidad buttons do not work with javascript turned off

2009-08-04 Thread Mamallan Uthaman
. Is there anyway I can make these buttons work when javascript is turned off? Thanks! Mamallan Uthaman wrote: Please find my answers below. -Mamallan djohnjimmy wrote: I'm surprised that Trinidad does not work without javascript. Trinidad is not fully 508 compliant then. I was soo looking

Re: Trinidad buttons do not work with javascript turned off

2009-08-03 Thread Mamallan Uthaman
Hi Jimmy, There is no mechanism to turn off the JavaScript in Trinidad through configuration file like an entry in web.xml. Currently, only in the case of few mobile browsers, Trinidad renders non-JavaScript code. All desktop browsers need JavaScript to be turned on. Thanks Mamallan

Re: Trinidad buttons do not work with javascript turned off

2009-08-03 Thread Mamallan Uthaman
trinidad! No, Trinidad needs JavaScript to function properly except for some mobile-browsers. Mamallan Uthaman wrote: Hi Jimmy, There is no mechanism to turn off the JavaScript in Trinidad through configuration file like an entry in web.xml. Currently, only in the case of few mobile

Re: [TRINIDAD] in IE accessKey Alt+D is not working

2009-07-20 Thread Mamallan Uthaman
Hi Dushyant, Please try to capture and handle the onkeydown event for ALT+D using JavaScript. In the event handler, you can set the focus on the commandButton and return false to prevent the browser from transferring the focus to the address bar. Thanks Mamallan dushyant agarwal wrote:

Re: Trinidad regexp validation

2009-07-15 Thread Mamallan Uthaman
Hi Dj Apal, Do you have this problem only during client-side validations? Not sure if it is the same problem reported in the issue below https://issues.apache.org/jira/browse/TRINIDAD-1339 Thanks Mamallan Dj Apal [GR] wrote: Hello all. I'm trying to use this tag for validating integers but

Re: getting information about caller-url

2009-07-13 Thread Mamallan Uthaman
Hi Georg, You can get that info from the request-header 'Referer'. You can access it from the external context like below ExternalContext extCtx = FacesContext.getCurrentInstance().getExternalContext(); String refererHeader = extCtx.getRequestHeaderMap().get(Referer); Thanks Mamallan

Re: [MyFaces][Core]

2009-07-10 Thread Mamallan Uthaman
Hi Guy, You can install fiddler to monitor the traffic between the browser and the server. By using fiddler, you can make sure that your page is not called twice. Thanks Mamallan Guy Bashan wrote: I am not using JSF navigation mechanism. This page is accessed directly by pressing a link.

Re: how to get GPS data from requests from gps-enabled devices

2009-07-06 Thread Mamallan Uthaman
Hi Dave, Currently, it is not possible since HTML 4.0 doesn't provide a mechanism to access GPS related data. Thanks Mamallan PS: Proposed HTML 5.0 spec provides Geolocation API to access GPS related data from GPS enabled devices. Dave wrote: Hello, For our jsf application, is there a

Re: [trinidad] wap: response more than 250K

2009-07-02 Thread Mamallan Uthaman
Hi Dave, With respect to mobile browsers, Trinidad sends a JavaScript file in its response only if the requesting mobile-browser supports JavaScript. Nokia S60's browser is a Webkit browser, Safari. To optimally use S60 browser's features like JavaScript and CSS, Trinidad sends a style sheet

Re: tr:inputFile with panelGroupLayout

2009-06-29 Thread Mamallan Uthaman
Hi Anuj, Could you please try using tr:messages to display any error message in the FacesContext? If you refer to Trinidad issue (Trinidad-607) that resolved this problem, the last comment states that the error message is stored in the FacesContext. Thanks Mamallan Anuj Patel wrote: Hi