358 Lotus blogs updated hourly. Who will post next? Home | Downloads | Events | Jobs | Twitter | Bookmarks | Pods | Forum | Blogs | Search | myPL | About 
 
Latest 7 Posts
XPages API Inspector V3
Thu, Sep 2nd 2010 47
XPiNC: Prevent tabs being closed on ESC
Wed, Aug 25th 2010 74
XPages: Simple function to clear scoped variables
Thu, Jun 24th 2010 142
XPages: Adding default value for empty view columns
Tue, Jun 22nd 2010 95
XPages: Code snippet for Multi Value Custom Converter
Thu, Jun 17th 2010 118
XPages: Bug? View XPage Source code in the browser
Wed, Jun 16th 2010 123
XPages: Avoid saving duplicate documents on browser refresh
Wed, Jun 2nd 2010 87
Top 10
Use "nsd -kill" when killnotes doesn't work
Thu, Jan 8th 2009 633
XPages: Making dojo dialogs works with server-side events
Tue, Feb 16th 2010 286
XPages: Using the powerful Design Definition in custom controls
Thu, Jan 28th 2010 259
XPages: Full featured CKEditor integration
Tue, Mar 2nd 2010 254
XPages: Adding controls to view/data table pagers
Wed, Apr 7th 2010 234
XPages: Dynamically binding document events without breaking existing
Wed, Mar 3rd 2010 215
XPages: Code snippet for date/string conversion
Thu, Apr 8th 2010 207
XPages: Use converters to emulate domino computed fields
Sat, Feb 27th 2010 202
XPages: Making validation behave properly
Mon, Mar 8th 2010 181
XPages: Creating a Data Table programmatically on page load
Tue, Nov 10th 2009 179


Tommy Valand
Blog Title DontPanic - a blog about Lotus Notes / Domino
Blog Description My useful and useless experiments with Lotus Notes / Domino
Blog URL http://dontpanic82.blogspot.com
RSS Feed http://feeds.feedburner.com/dontpanic82
Validate Feed feedvalidator.org or validator.w3.org
Feed Last Checked Sep 02, 2010 6:44:51 PM EST. Realtime Update:
Landed Here Dec 05, 2007
Location
Posts: # / 1st / Latest - -
Total Hits 9,712. myPL RSS Selections: 72


Recent Blog Posts
47


XPages API Inspector V3
Thu, Sep 2nd 2010 2:21p   Tommy Valand
Changes:br /precodeFrom feature requests (thanks, Mark Leusink):br / * Classes that doesn't have a constructor can now be inspected (e.g. lotus.domino.local.Item)br / * The API Inspector now has partial refresh. No more full reload of pagebr /br /My own tweaks:br / * Removed the clear-buttonbr / * If you select something other than custom, the input field/inspect button is hidden. br / To reset, select custombr / * The expression field is now an auto-growing text-area. br / This allows you to te [read] Keywords: domino lotus xpages blogger openntf
74


XPiNC: Prevent tabs being closed on ESC
Wed, Aug 25th 2010 3:13a   Tommy Valand
A reader of my blog asked me how to prevent tabs being closed when pressing escape in XPages running in the Notes Client.br /br /This strongclient side/strong code seems to work in Notes 8.5.2 at least:precodedojo.addOnLoad( function(){ br / dojo.connect( document, 'keydown', function(e){ br / // 27 - Key code for ESC - stop eventbr / if(e.keyCode === 27){ dojo.stopEvent(e); } br / });br /});/code/prediv class="blogger-post-footer"img width='1' height='1' src='https://blogger.googleusercontent.c [read] Keywords: notes notes client xpages blogger dojo
142


XPages: Simple function to clear scoped variables
Thu, Jun 24th 2010 3:17a   Tommy Valand
All scope objects (applicationScope, sessionScope, etc.) are maps, so it's quite easy to clear them. This might come in handy during development, if you want to clear the applicationScope. br /br /I've tested it on both applicationScope and sessionScope, and it doesn't seem to do any harm. After the maps are cleared, the server automatically loads the "internal" values used by the system.br /br /precodefunction clearMap( map:Map ){br / // Get iterator for the keysbr / var iterator = map.keySet() [read] Keywords: xpages blogger development server
95


XPages: Adding default value for empty view columns
Tue, Jun 22nd 2010 5:47a   Tommy Valand
Go to source mode, and find the column you want to add the default text. Add a computed field that's rendered when:br /strong!( this.getParent().getValue() )/strongbr /br /E.g.br /precodelt;xp:viewColumn columnName="notes" id="colNotes"gt;br / lt;xp:viewColumnHeader value="Notes"gt;lt;/xp:viewColumnHeadergt;br / lt;xp:text value="No notes"br / rendered="#{javascript:return !( this.getParent().getValue() );}" /gt;br /lt;/xp:viewColumngt;/code/prebr /br /this.getParent() returns the cell. If the c [read] Keywords: notes xpages blogger javascript
118


XPages: Code snippet for Multi Value Custom Converter
Thu, Jun 17th 2010 3:47a   Tommy Valand
I got a href="https://www.blogger.com/comment.g?blogID=3745504982837212509postID=3596771585756735811#c1781090065923016497"a question/a regarding how to work around the buggy multi-value implementation in XPages. I use a custom converter for my multi value fields.br /br /precodevar Converters = { br / multivalue: {br / // separator: String or RegExpbr / getAsObject: function( valuesString, separator ){br / try {br / separator = separator || ',';br / var values = valuesString.split( separator );br [read] Keywords: script library xpages blogger
123


XPages: Bug? View XPage Source code in the browser
Wed, Jun 16th 2010 11:47a   Tommy Valand
I just read a href="http://ozinisle.blogspot.com/2010/06/view-xpage-source-code-on-browser.html"this/a in my daily RSS roundup.br /br /Add a + after .xsp in the address field of your browser results in the source code being printed to the browser (click above link for screenshot or try for yourself). It's not sure how I feel about this. In most cases it won't be a security issue, but still..div class="blogger-post-footer"img width='1' height='1' src='https://blogger.googleusercontent.com/tracker [read] Keywords: xpages blogger bug security




87


XPages: Avoid saving duplicate documents on browser refresh
Wed, Jun 2nd 2010 1:45p   Tommy Valand
A reader wanted to know if there was some way to avoid duplicate documents when a href="http://www.blogger.com/comment.g?blogID=3745504982837212509postID=2330334796839812543#c918521366858114665"saving a document, refreshing the browser, and pressing ok on the resulting dialog/a.br /br /In JSF lingo, this is known as the a href="http://balusc.blogspot.com/2007/03/post-redirect-get-pattern.html"POST-Redirect-GET pattern/a. This is quite easy to accomplish in XPages.br /br /On the save button, put [read] Keywords: script library xpages blogger server
100


DateConverter tip - get weeknumber in one line
Tue, May 18th 2010 7:17a   Tommy Valand
If you want to get the week number from a date:br /precodeDateConverter.dateToString( date, 'w' )/code/prea href="http://dontpanic82.blogspot.com/2010/04/xpages-code-snippet-for-datestring.html"The DateConverter script/adiv class="blogger-post-footer"img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3745504982837212509-8452864577085827548?l=dontpanic82.blogspot.com' alt='' //divdiv class="feedflare" a href="http://feeds.feedburner.com/~ff/dontpanic82?a=PkzGuwA6h2s:-CZC8 [read] Keywords: xpages blogger
126


XPages: Severe bug in the partial event hijacker
Fri, May 7th 2010 5:01a   Tommy Valand
For the life of me, I couldn't understand why the a href="http://www.timtripcony.com/blog.nsf/d6plinks/TTRY-84B6VP"onStart/onError/onComplete/a events didn't fire for partial events. Today it suddenly dawned on me. It was because of my partial event hijacker.br /br /The previous version overwrote the onStart/onError/onComplete events. Below is the fixed code. Sorry if you've used the hijacker and suffered the same fate as me.br / br /precodefunction hijackAndPublishPartialRefresh(){br / // Hijac [read] Keywords: xpages blogger bug dojo
107


XPages: Simple string encrypter/decrypter
Thu, May 6th 2010 2:14p   Tommy Valand
I needed a simple encryption routine today. I found a href="http://www.devx.com/Java/10MinuteSolution/21385/0/page/1"this article/a with accompanying code.br /br /Here's the routine ported to Server Side JavaScript:br /precodefunction StringEncrypter( encryptionScheme:String, encryptionKey:String ){br / try{br / encryptionScheme = encryptionScheme || this.DESEDE_ENCRYPTION_SCHEME;br / encryptionKey = encryptionKey || this.DEFAULT_ENCRYPTION_KEY;br / if( encryptionKey.length 24 ){ br / throw new [read] Keywords: xpages blogger java javascript server
175


Using the Rhino JavaScript engine in XPages
Mon, May 3rd 2010 3:56p   Tommy Valand
Not sure how useful this is yet, but if you want to use the Rhino engine with XPages, here's how:precodevar rhinoEngine = new javax.script.ScriptEngineManager().getEngineByName(br / "JavaScript");br /// to eval JavaScript string: rhinoEngine.eval( jsString );/code/prebr /a href="http://java.sun.com/javase/6/docs/technotes/guides/scripting/programmer_guide/index.html"Oracle Tutorial/abr /br /a href="http://java.sun.com/javase/6/docs/api/javax/script/ScriptEngine.html"General API for javax.script. [read] Keywords: ibm xpages blogger java javascript oracle server
155


XPages: Dynamically binding and unbinding server side events
Sat, May 1st 2010 3:14p   Tommy Valand
Back in my early XPages career, I asked the readers if it was possible to a href="http://dontpanic82.blogspot.com/2009/09/dynamically-binding-server-side-events.html"Dynamically bind server side events/a.br /br /The only answer I got was this:br /strongThe short answer: NO.br /The long: it is somewhere on the list./strongbr /br /I don't like those kinds of answers.br /br /After todays experiment, I can firmly say: strongYes, it's possible!/strongbr /This is what you'll be able to do with the sim [read] Keywords: xpages application blogger server
108


XPages: Code snippet for number/string conversion
Wed, Apr 28th 2010 5:44a   Tommy Valand
The a href="http://java.sun.com/j2se/1.4.2/docs/api/java/text/DecimalFormat.html"DecimalFormat/a object is cached in the application scope due to performance/memory concerns.br / br / The default locale for the conversion seems to be the locale of the OS on the server, so if you want to support multiple locales, you'd have to extend the functionality.br / br / Example usage (bNorwegian/b locale):br / bString to number/bbr / NumberConverter.stringToNumber( '15,55', '0.00' ) -gt; java.lang.Doubleb [read] Keywords: xpages application blogger java server
94


XPages: Server Side Event Delegation - In view edit
Tue, Apr 27th 2010 5:11p   Tommy Valand
This is a continuation of the a href="http://dontpanic82.blogspot.com/2010/04/server-side-event-delegation.html"previous investigation/a into the possibilities of Server Side Event Delegation (SSED).br / br / As I mentioned at the end of the previous blogpost, the demoapp didn't take advantage of a href="http://www.sitepoint.com/blogs/2008/07/23/javascript-event-delegation-is-easier-than-you-think/"Client Side Event Delegation/a (CSED). This resulted in having to create the same amount of client [read] Keywords: xpages blogger javascript server
135


XPages: Server Side Event Delegation
Thu, Apr 22nd 2010 5:01p   Tommy Valand
While working on a view with bin view edit/b functionality today, I was appalled over how much client side code was generated.br / br / I guess my subconsciousness was working on the problem, as I came up with a hack that lets you delegate events, while eating dinner (almost forgot the comma). It's somewhat similar to the a href="http://www.sitepoint.com/blogs/2008/07/23/javascript-event-delegation-is-easier-than-you-think/"event delegation/a that you would do in a browser. The current implement [read] Keywords: xpages blogger javascript server
207


XPages: Code snippet for date/string conversion
Thu, Apr 8th 2010 9:14a   Tommy Valand
The SimpleDateFormat object is cached in the application scope due to performance/memory concerns (I have data tables generated from JSON with up to several thousand conversions).br / br / Example usage:br / bString to date/bbr / DateConverter.stringToDate( '12.12.2001', 'dd.MM.yyyy' ) -gt; java.util.Datebr / br / bDate to string/b br / DateConverter.dateToString( @Now(), 'dd.MM.yyyy hh:mm' ) -gt; 08.04.2010 12:01br / br / precodevar DateConverter = { dateToString: function( date:java.util.Date [read] Keywords: xpages application blogger java javascript
234


XPages: Adding controls to view/data table pagers
Wed, Apr 7th 2010 12:48p   Tommy Valand
I haven't read anyone else writing about this, so I thought I should share this technique with you.br / br / While working on a custom search data table, I wanted to show the number of entries in the result. I wanted the a href="http://en.wikipedia.org/wiki/Pagination_(web)"pagination/a links to be on the left of the pager bar, and the number of entries on the right side.br / br / At first I started mucking about with CSS, but that ended up being a maintenance nightmare as the search control I w [read] Keywords: xpages blogger css wiki
76


Renaming fields with formula agents
Wed, Apr 7th 2010 11:48a   Tommy Valand
Put the code below in a formula agent. Set the old field names in the _fieldNamesFrom-list, and the new field names in the _fieldNamesTo-list. Not sure if it works correctly for NotesRichTextItems, but it should work on the other field types.br / br / If there isn't a field with the old fieldname, a new one isn't created (in case you need to run the agent multiple times - doesn't blank the new fields).br / br / precode_fieldNamesFrom := "silly_fieldname" : "tpyo_fieldname"; _fieldNamesTo := "cra [read] Keywords: agent blogger
34


I've added a comments feed
Tue, Apr 6th 2010 5:21p   Tommy Valand
Just wanted to let you know that I've added an RSS feed for comments.br / br / a href="http://feeds.feedburner.com/DontPanic82Comments"The feed/adiv class="blogger-post-footer"img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3745504982837212509-5076161827691174056?l=dontpanic82.blogspot.com' alt='' //divdiv class="feedflare" a href="http://feeds.feedburner.com/~ff/dontpanic82?a=fNtxchcQQnw:7AE0Ft8S_MY:yIl2AUoC8zA"img src="http://feeds.feedburner.com/~ff/dontpanic82?d=y [read] Keywords: blogger
115


XPages: Computing the category label in categorized columns
Fri, Mar 26th 2010 4:10p   Tommy Valand
I stumbled on this one while helping a colleague.br /br /He had a categorized totals view that was categorized on id's referencing documents in another database. He wanted the category label to show the a value from the document the id came from. That's easy I told him (I hadn't worked with categorized views in XPages), just use @DbLookup..br /br /Turns out it's not that straightforward. If you edit the value in the Data panel under properties, the column loses it's "connection" (the strongcolum [read] Keywords: dblookup notes xpages blogger database properties
120


Do you want -real- Server Side JavaScript? Vote!
Fri, Mar 26th 2010 9:14a   Tommy Valand
The current implementation isn't according to spec (as I've ranted about a couple of times). If you want to change that, it's time to go to the voting booth.br /br /a href="http://ideajam.net/IdeaJam/P/ij.nsf/0/D4C6E356ECABDCD7862576F20026FFDE?OpenDocument"Make Server Side JS standards compliant/adiv class="blogger-post-footer"img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3745504982837212509-5335670950118874557?l=dontpanic82.blogspot.com' alt='' //divimg src="http:/ [read] Keywords: blogger ideajam ideajam.net javascript server
77


I'll be appearing on The XPages Blog
Wed, Mar 17th 2010 12:14p   Tommy Valand
[read] Keywords: xpages blogger
100


Clean up extra white space in XPages source code
Wed, Mar 17th 2010 5:15a   Tommy Valand
[read] Keywords: xpages blogger
113


XPages: Design Definition and Editable Area-controls
Wed, Mar 17th 2010 3:44a   Tommy Valand
[read] Keywords: ibm xpages blogger
181


XPages: Making validation behave properly
Mon, Mar 8th 2010 7:15a   Tommy Valand
[read] Keywords: ibm xpages blogger java
97


XPages: Tip regarding private scoped variables inside a custom control
Fri, Mar 5th 2010 2:31p   Tommy Valand
[read] Keywords: xpages blogger
215


XPages: Dynamically binding document events without breaking existing
Wed, Mar 3rd 2010 2:45p   Tommy Valand
[read] Keywords: ibm xpages application blogger java javascript server
46


Small cleanup of the blog layout
Tue, Mar 2nd 2010 3:14p   Tommy Valand
[read] Keywords: domino notes blogger
254


XPages: Full featured CKEditor integration
Tue, Mar 2nd 2010 2:14p   Tommy Valand
[read] Keywords: domino lotus richtext xpages blogger firefox integration javascript server
202


XPages: Use converters to emulate domino computed fields
Sat, Feb 27th 2010 6:44a   Tommy Valand
[read] Keywords: domino xpages blogger development properties
149


XPages: Using an array of objects in property definitions
Mon, Feb 22nd 2010 9:44a   Tommy Valand
[read] Keywords: xpages blogger javascript
114


XPages API Inspector V2
Wed, Feb 17th 2010 3:43p   Tommy Valand
[read] Keywords: xpages blogger google java openntf
143


Update: dijit.Dialog custom control fixup
Wed, Feb 17th 2010 11:44a   Tommy Valand
[read] Keywords: xpages blogger dojo wiki
119


XPages: Use MooTools in Server Side JS
Wed, Feb 17th 2010 8:44a   Tommy Valand
[read] Keywords: xpages blogger email server wiki
286


XPages: Making dojo dialogs works with server-side events
Tue, Feb 16th 2010 2:44p   Tommy Valand
[read] Keywords: ibm xpages blogger dojo server widget widgets wiki
61


IBM Support Assistant
Wed, Feb 10th 2010 3:14a   Tommy Valand
[read] Keywords: domino ibm mashup blogger
90


Another small update on the XPages API Inspector
Mon, Feb 1st 2010 12:14p   Tommy Valand
[read] Keywords: xpages blogger
259


XPages: Using the powerful Design Definition in custom controls
Thu, Jan 28th 2010 12:44p   Tommy Valand
[read] Keywords: domino ibm ldd lotus notes xpages application blogger development dojo properties wiki xml
102


Small bugfix for the XPages API tool
Thu, Jan 28th 2010 4:44a   Tommy Valand
[read] Keywords: xpages blogger java
84


Use FIELD in pages to declare global variables
Wed, Jan 27th 2010 11:12a   Tommy Valand
[read] Keywords: ldd lotus notes blogger
19


Bookmarklet that lets you listen to all dojo events
Wed, Jan 27th 2010 11:12a   Tommy Valand
[read] Keywords: blogger bookmarklet dojo javascript wiki
47


XPages: Hijacking/publishing partial refreshes globally
Wed, Jan 27th 2010 11:12a   Tommy Valand
[read] Keywords: xpages application blogger dojo
28


XPages: Binding customizable scoped variables to fields in custom controls
Wed, Jan 27th 2010 11:12a   Tommy Valand
[read] Keywords: xpages application blogger
31


Small update on the Xpages search demo
Wed, Jan 27th 2010 11:12a   Tommy Valand
[read] Keywords: xpages blogger
11


Comments are now open
Wed, Jan 27th 2010 11:12a   Tommy Valand
[read] Keywords: blogger google
22


XPages: Three ways to build a search interface with "on the fly" sortable columns
Wed, Jan 27th 2010 11:12a   Tommy Valand
[read] Keywords: domino notes xpages application blogger database interface server
16


SSD - The best Lotus Notes/Eclipse can get?
Wed, Jan 27th 2010 11:12a   Tommy Valand
[read] Keywords: domino lotus notes sametime application blogger desktop eclipse wiki
17


XPages: Developer Tool - Deep dive into the XPages API
Wed, Jan 27th 2010 11:12a   Tommy Valand
[read] Keywords: acl domino ibm xpages blogger development java javascript properties server
32


It's about time you update the NotesDatabase.Search documentation, IBM!
Wed, Jan 27th 2010 11:12a   Tommy Valand
[read] Keywords: ibm notes blogger
8


Workaround for radiobuttons changing values on page refresh in Firefox
Wed, Jan 27th 2010 11:12a   Tommy Valand
[read] Keywords: blogger firefox
7


Further investigation of using FIELD in a Page
Wed, Jan 27th 2010 11:12a   Tommy Valand
[read] Keywords: notes applications blogger java leak
49


Office 2007 MIME headers fixed in Domino 8.5.2
Wed, Jan 27th 2010 10:43a   Tommy Valand
[read] Keywords: domino ibm blogger office
101


XPages: Custom Control that can help prevent save conflicts
Wed, Jan 27th 2010 10:43a   Tommy Valand
[read] Keywords: xpages application applications blogger dojo firefox
68


Sloppy multi-value implementation in XPages
Wed, Dec 9th 2009 4:05a   Tommy Valand
[read] Keywords: ibm xpages blogger bug
87


Helper-functions for debugging XPages
Thu, Dec 3rd 2009 7:06a   Tommy Valand
[read] Keywords: xpages application blogger database java
32


Server side event handling - get value without having to use getComponent
Tue, Dec 1st 2009 8:45a   Tommy Valand
[read] Keywords: blogger server
166


XPages Type Ahead - use var property to get field value
Thu, Nov 26th 2009 8:44a   Tommy Valand
[read] Keywords: dblookup xpages blogger database properties
23


Useful formula cheat sheet
Tue, Nov 17th 2009 3:45a   Tommy Valand
[read] Keywords: domino formula ldd lotus notes blogger
179


XPages: Creating a Data Table programmatically on page load
Tue, Nov 10th 2009 2:45p   Tommy Valand
[read] Keywords: ibm xpages application blogger
133


CKEditor integration with XPages (32k limited)
Mon, Nov 9th 2009 2:44p   Tommy Valand
[read] Keywords: domino lotus rich text xpages blogger integration server
9


Technique: Using a Page as a cross language template/string container
Wed, Oct 7th 2009 3:26p   Tommy Valand
[read] Keywords: agent document formula lotusscript notes notes client template blogger database java xml
14


Not satisfied with Domino Designer documentation? Make your voice heard!
Thu, Oct 1st 2009 2:46a   Tommy Valand
[read] Keywords: designer domino lotus blogger development lotususergroup.org
10


Avoid using reserved words in JavaScript
Thu, Sep 24th 2009 7:46a   Tommy Valand
[read] Keywords: javascript application applications blogger
8


Interesting talk about Server Side JS
Mon, Sep 21st 2009 12:47p   Tommy Valand
[read] Keywords: application blogger interface server
151


Finally! CKEditor integration with Lotus Domino
Tue, Sep 15th 2009 3:47p   Tommy Valand
[read] Keywords: domino lotus blogger firefox integration
80


XPages Custom Control - getComponent/hash of all clientIds from the browser
Tue, Sep 15th 2009 1:48p   Tommy Valand
[read] Keywords: designer document ibm xpages application blogger ideajam ideajam.net server
84


Dynamically binding server side events in XPages - Is it possible?
Sun, Sep 13th 2009 11:39a   Tommy Valand
[read] Keywords: domino lotus lotusscript notes notes client xpages application applications bleedyellow bleedyellow.com blogger server
14


XPages - Idea about making it easier to get components on the client side
Fri, Sep 11th 2009 2:10a   Tommy Valand
[read] Keywords: ibm xpages blogger ideajam ideajam.net
33


Using @IsDocBeingEdited in Form formula
Fri, Sep 4th 2009 8:01a   Tommy Valand
[read] Keywords: document formula application blogger
16


Enhanced HTML generation in Domino 8.5
Fri, Sep 4th 2009 7:01a   Tommy Valand
[read] Keywords: domino ibm lotus applications blogger
8


Switching the RSS feed to feedburner
Fri, Aug 14th 2009 9:27a   Tommy Valand
[read] Keywords: blogger
17


Test if -specific- content has changed since last FTIndex
Fri, Aug 7th 2009 3:46a   Tommy Valand
[read] Keywords: document blogger database
71


MooTools plugin - Remove all underlying text nodes of an element
Tue, Jul 21st 2009 5:47a   Tommy Valand
[read] Keywords: blogger
11


Accessible Web Forms With Domino - Addendum
Fri, Jul 3rd 2009 3:18a   Tommy Valand
[read] Keywords: domino forms javascript archive blogger
55


HttpRequest class - Support for multivalue requests (e.g. checkbox)
Wed, Jul 1st 2009 10:09a   Tommy Valand
[read] Keywords: agent domino blogger
51


New NotesUI-bug found in Notes 8.5 (includes workaround)
Mon, Jun 29th 2009 7:04a   Tommy Valand
[read] Keywords: document ldd lotus lotusscript notes applications blogger bug
58


Serving correct MIME-types for Office 2007 attachments on the web
Fri, Jun 12th 2009 12:46p   Tommy Valand
[read] Keywords: document domino template application blogger bug office server
10


Great tool to test web applications in IE 5.5 -> 8
Thu, Jun 11th 2009 2:20a   Tommy Valand
[read] Keywords: domino application applications blogger wiki
20


Mail from Outlook to Notes/Domino applications without Notes installed
Fri, Jun 5th 2009 1:09p   Tommy Valand
[read] Keywords: agent document domino notes notes client application applications blogger bug dhtml interface outlook properties server xml
11


UserCss: Cleaning up the Google Reader interface
Thu, Jun 4th 2009 11:48a   Tommy Valand
[read] Keywords: blogger css google interface
11


Conclusive way of testing if content has changed since last FTIndex
Tue, May 26th 2009 4:50a   Tommy Valand
[read] Keywords: document application blogger database server
16


Help get the NotesUI-bugs in Notes 8.5 fixed
Thu, May 21st 2009 9:58a   Tommy Valand
[read] Keywords: ldd lotus notes applications blogger
11


Rearrange your Windows taskbar with Taskbar Shuffle
Tue, May 19th 2009 12:45p   Tommy Valand
[read] Keywords: designer domino lotus notes application applications blogger google
61


LotusScript: Case insensitive replace
Fri, May 8th 2009 3:05a   Tommy Valand
[read] Keywords: agent document lotusscript notes application applications blogger java
14


XPages: Workarounds for lack of Regular Expression functionality
Wed, Apr 22nd 2009 1:38p   Tommy Valand
[read] Keywords: javascript template xpages blogger css properties server
18


Hotmail POP3-/SMTP access (free)
Wed, Apr 8th 2009 11:26a   Tommy Valand
[read] Keywords: blogger smtp
15


Forcing charset on content on the web
Fri, Apr 3rd 2009 2:46a   Tommy Valand
[read] Keywords: domino richtext ajax application blogger server
9


Opening EPS-files in GIMP
Thu, Apr 2nd 2009 6:46a   Tommy Valand
[read] Keywords: blogger
9


Updated the TextToPNG-generator
Wed, Apr 1st 2009 3:11p   Tommy Valand
[read] Keywords: domino application blogger interface java
27


Question: Can XPages only be used for HTML?
Wed, Apr 1st 2009 2:45a   Tommy Valand
[read] Keywords: xpages blogger css google mac server xml
8


Palm Pre - Yes please!
Fri, Mar 20th 2009 9:49a   Tommy Valand
[read] Keywords: application blogger
7


New tool from Microsoft for testing web pages in various browsers
Wed, Mar 18th 2009 3:34p   Tommy Valand
[read] Keywords: blogger microsoft
8


Clearing floats in IE7 for Vista
Tue, Mar 17th 2009 8:48a   Tommy Valand
[read] Keywords: blogger bug vista
54


Domino 8.5 generates labels for checkboxes and radio buttons
Mon, Mar 9th 2009 7:23a   Tommy Valand
[read] Keywords: domino forms
115


Taking advantage of JSON from views in XPages
Fri, Mar 6th 2009 5:47p   Tommy Valand
[read] Keywords: javascript xpages server
19


XPages: Regular Expressions in Server Side JS are poorly implemented
Fri, Mar 6th 2009 5:00p   Tommy Valand
[read] Keywords: ibm javascript ldd lotus notes template xpages bug java server
8


Visual Basic macros do not work in Office 2008 for Mac
Fri, Feb 13th 2009 7:54a   Tommy Valand
[read] Keywords: lotus symphony google mac microsoft office xml
71


Trigger onChange immediately for checkboxes, radiobuttons and comboboxes in the Client
Fri, Feb 13th 2009 4:06a   Tommy Valand
[read] Keywords: lotus applications
12


Tip: Edit files as UTF-8 in DDE
Thu, Feb 5th 2009 3:27a   Tommy Valand
[read] Keywords: designer domino css workspace
58


Serious bug in N/D 8.5 standard configuration - NotesUIWorkspace. CurrentDocument returns Nothing
Thu, Jan 29th 2009 4:21a   Tommy Valand
[read] Keywords: ldd lotus notes blogSphere bug




Created and Maintained by Yancy Lent - About - Blog Submission - Suggestions - Change Log - Blog Widget - Advertising - FAQ - Mobile Edition