jsumon.wordpress.com
Retrieve selected checkbox value in liferay 6 with aui:script and Liferay.provide | Thinking in java
https://jsumon.wordpress.com/2011/01/13/retrieve-selected-checkbox-value-in-liferay-6-with-auiscript-and-liferay-provide
Retrieve selected checkbox value in liferay 6 with aui:script and Liferay.provide. January 13, 2011 in java-liferay. FYI: Everything inside of an aui:script block that contains a “use” attribute is called asynchronously, so it could fire right away (if the resources are on the page) or if the network resolution is taking a long time, it could execute later on. Bellow is an example:. Alert('not "using" any modules, Im fired right away');. Alert('"using" aui-io, Im fired when its ready');. November 20, 2011.
jsumon.wordpress.com
Java Regex | Thinking in java
https://jsumon.wordpress.com/2011/01/21/java-regex
January 21, 2011 in java. We need to use regular expression frequently in text processing for search, parse, validation or XML document integrity. Java provide us a package called java.util.regex to make life easier for regular expression. Bellow I have summarized the things as I need to use Java Regex so frequently🙂. Regex must match at the beginning of the line. Finds regex must match at the end of the line. Set definition, can match the letter a or b or c. Finds X or Z. Finds X directly followed by Z.
jsumon.wordpress.com
My Profile | Thinking in java
https://jsumon.wordpress.com/my-profile
I am Md. Ahasan Habib working in IT sector and have 5 years of professional experience (IT) in System Design, Development, and integration of complex Web Applications (j2ee and php), Mobile applications (j2me), Client/Server, and Desktop applications (j2se). November 20, 2011. ERROR: ORA-00257: archiver error. Connect internal only, until freed. May 25, 2011. CreateFile error 32 when trying set file time. March 24, 2011. ORA-00439: feature not enabled: Flashback Database. March 13, 2011. March 12, 2011.
jsumon.wordpress.com
liferay-ui:icon target=_blank of liferay6.0.5 not open link page in new tab | Thinking in java
https://jsumon.wordpress.com/2011/06/09/liferay-uiicon-target_blank-of-liferay6-0-5-not-open-link-page-in-new-tab
Liferay-ui:icon target= blank of liferay6.0.5 not open link page in new tab. June 9, 2011 in java-liferay. If set parameter target to blank of the following lefary tag:. Liferay-ui:icon image=" label=" target=. It just shows Opens New Window beside the link text but not open link page in new tab. If you look source of taglib/ui/icon/page.jsp you will see. Aui:a href=" %= url % " id=" %= id % " lang=" %= lang % " target=" %= target % ". Aui:a href=" %= url % " lang=" %= lang % " target=" %= target % ".