-
Recent Posts
- Elasticsearch – Ignore special characters in query with pattern replace filter and custom analyzer
- Elasticsearch 5 Determining if nested field exists
- Elasticsearch deprecation warning: [deprecation.search.aggregations.bucket.terms] sorting by ascending count is deprecated and will be removed in the next major version
- Using Spring to populate Hazelcast Map at Start-up
- Spring Boot Web Application – Starting in Eclipse
Recent Comments
Tony Pun on Spring Boot Web Application… Candis on How to mock lazy initializatio… Dheeraj on Spring Boot Application and To… handy on Elasticsearch deprecation warn… sravan on Eclipse and Tomcat start up er… Archives
- February 2018
- April 2017
- November 2016
- April 2016
- April 2015
- February 2015
- January 2015
- December 2014
- November 2014
- August 2014
- July 2014
- June 2014
- February 2014
- November 2013
- June 2013
- March 2013
- January 2013
- November 2012
- September 2012
- June 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- June 2011
- May 2011
- April 2011
- March 2011
Categories
Meta
Monthly Archives: October 2011
GWT – [ERROR] Line 20: Too many parameters, parameter arg254 is exceeding the limit of 255 words eligible for method parameters
I was creating a widget today, using UiBinder, which consisted mainly of an HTML table. My table consisted of over 55 rows, where each row looked like this: <tr class=”{style.table-odd-row}”> <th class=”{style.table-th}”><span ui:field=”field1Label”/></th> <td class=”{style.table-td}”><g:InlineLabel ui:field=”field1″/></td> </tr> When I compiled, … Continue reading
GWT – Adding a click handler to a DIV element
In jQuery, one popular way to create a simulated button is to create a stylized <div> element and then bind a click event handler to the <div> element like this: <script src=”jquery-1.6.2.min.js”></script> <script> $(‘#clickDiv’).click( function() { alert(“Div has been … Continue reading