onpropertychange

2005-01-11 Thread David McReynolds
Has anyone seen an open source (free) custom tag that duplicates the html:text tag and adds support for the IE idiocy of onpropertychange (for their autocomplete)? -- --dlm www.myjavaserver.com/~dlm8751 - To unsubscribe, e-mail:

Re: onpropertychange

2005-01-11 Thread Kris Schneider
Not off the top of my head. But it shouldn't be too difficult to extend TextTag, add your property (getOnpropertychange/setOnpropertychange), override release(): public void release() { super.release(); onpropertychange = null; } and override something like prepareTextEvents(StringBuffer):

Help - DataGrid x Internationalization

2005-01-11 Thread Joselito Viana Soares
Hi, Does DataGrid support internationalization? Joselito Soares - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

JSTL - c:if test Question

2005-01-11 Thread Jack Lauman
I am using the following line of code to test strings for equailty. In most cases I'm just trying to compare a city name in an array to user input for the name of a city i.e. Seattle. c:if test=${restaurant.filterValue eq param.value} If the user enters seattle instead of Seattle I don't get a

Re: JSTL - c:if test Question

2005-01-11 Thread Jack Lauman
David: Thanks for your prompt reply. Your sugestion was a good idea, but I found that the following actually worked the way I wanted it to: c:if test=${fn:containsIgnoreCase(restaurant.filterValue, param.value)} Thanks, Jack David Schwartz wrote: Try... Add this to your jsp... %@ taglib prefix