• 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
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

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?
 
We can walk to school together. And we can both read this tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic