Questions tagged [ibm-jsf]

IBM FacesClient Framework is an IBM-proprietary closed-source JSF 1.x based component library from ~2004 which is included in WebSphere 5.x / RAD 6.x along with a visual editor. It uses "hx" (HTML eXtended) as default taglib prefix.

IBM FacesClient Framework is an IBM-proprietary closed-source JSF 1.x based component library from ~2004 which is included in WebSphere 5.x / RAD 6.x along with a visual editor. It uses "hx" (HTML eXtended) as default taglib prefix.

Online references

  • Documentation (using wayback machine as IBM apparently has removed the RedBook from their website)

Related tag info pages

18 questions
6
votes
2 answers

Type API variable-resolver is deprecated after JSF 1.1. Use el-resolver instead

We recently upgraded from WebSphere Portal v6.1 to v7.0 and in the process we now have JSF 1.2 available. Creating a new Portlet project in Rad 8 creates a faces-config.xml with the following entry
Stefan
  • 838
  • 3
  • 13
  • 28
1
vote
0 answers

Auto populate outputText based on value entered in inputText in Datatable in JSF

I have one inputbox 'percentage' and one outputbox 'Amount' in datatable. now i want to auto populate Amount when i enter percentage -like say i enter 10 in percentage then Amount should be populated TotalAmount*10/100,and also update…
Vksgh
  • 91
  • 6
1
vote
1 answer

JSF 1.2 IBM JWL ajax components (hx:ajaxRefreshSubmit, hx:ajaxRefreshRequest) problems with IE11

I have a problem with ajax components hx:ajaxRefreshSubmit and hx:ajaxRefreshRequest on IE11. Both of them are working only on the first submit - request. I use the latest version of JWL and Portlet Bridge (jsf-ibm.jar v 3.1.20,…
Damc
  • 11
  • 2
1
vote
3 answers

jsf submit button is not working

I am using hx:commandExButton of IBM Faces Client Framework to call my method. But the method is not getting called. But if I use immediate="true" it's getting called. But as you all know with this my model won't get updated, so it has no use to me.…
user265950
  • 467
  • 3
  • 9
  • 21
1
vote
2 answers

Javascript function is not getting called onclick of hx:commandExButton

When I click on the hx:commandExButton the Javascript function should get called, but it is not getting called. The Javascript function is as follows: function test() { alert('ss'); return "true"; } The hx:commandButton is as…
Suresh
  • 38,717
  • 16
  • 62
  • 66
1
vote
0 answers

Loading rows into jsf datatable only on user request

Problem statement: I have used hx:dataTableEx to display database table records. I'm binding Service data object(relational record list) to hx:dataTableEx. Loading time is more due to number of records(fetch result gives more than 10000 records). I…
nagesh
  • 307
  • 2
  • 10
  • 22
1
vote
1 answer

JSF tag not rendering after migrating the application to WAS 7

I have been working on migration or JSF application from WAS 6.1 to 7. The application uses JSF 1.1. I made the following changes in web.xml to make the code compatible with JSF 1.1 as per the forums I referred.