• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

t:datatable error in tomahwak 1.1.7

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have a strange error when i try to click a column header for sorting. I get a runtime error and when i debug it.

heres the code snippet


<t:dataTable id="List"
var="item"
value="#{controllerBean}"
styleClass="dataTable"sortColumn="#{controllerBean.sortColumn}"sortAscending="#{controllerBean.ascending}">
<t:column >
<f:facet name="header">
<t:commandSortHeader columnName="fromDt" arrow="true">
<h:outputText value="From Date" /> </t:commandSortHeader>
</f:facet>
<h:outputText value="#{item.fromDt}"/>
</t:column>

I use IE , when I click the from date column in the jsp I get a runtime error and when i debug it further the error i get is
" form.elements[name]=='undefined' " under the oamSetHiddenInput function.

Could you guys help out?
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic