161 | @IsRichTextEmpty and LotusScript/Java equivalentsBen Langhinrichs6939 - 05 2007 / (6) Even having a rough way to do this in Midas, I would really like to see a simple @formula (and matching LotusScript) method for determining if there was anything in the rich text. Even better would be if it took an argument that specified whether whitespace was included, so you ... |
137 | Custom @FunctionsCarl Tyler5326 - 08 2007 / (8) 1-2-3 has a feature where you can create a new @function based upon a lotusscript function. I would like to see the same feature in Notes/Domino. Allow me in the Database script library to create a lotusscript function and mark it as being available as an @function within that database. |
129 | Bring us back the Formula DebuggerWerner Novak1146 - 07 2008 / (6) Please bring us back the @formula debugger !!
Local and Remote Debugging !! |
62 | Define View Column Titles using @Formula |
46 | PickLists should have a defaultchoice |
43 | Display @Formula comments as comments |
39 | MaxResult parameter in @DbColumnPatrick Kwinten21943 - 08 2007 / (4) The possibility to add an additional parameter to @DbColumn where I can define the maximum results I want to have returned: @DbColumn( class : cache ; server : database ; view ; columnNumber ; maxResult ) In stead of getting the complete chunk of results back now I only ... |
39 | @IsDocEditor functionLasse Jarvinen953 - 22 2010 / (4) A formula that would return:
This would be a very useful function when writing hide-when formulas or formulas to insert subforms especially when user has ... |
36 | Increase the amount of data formula can outputTommy Valand2726 - 17 2008 / (2) As far as I know, formula can only output 64k of data. This especially limits the usage of formula in Evaluate-statements. Formula is --really fast-- compared to LotusScript. Formula has some inbuilt functionality that LS lacks. Two really powerful are @Tranform and @Sort. ... |
34 | formula field propertiesPaul Davies12316 - 21 2007 / (1) I would like to see all properties of fields that use formulae to be moved to the IDE pane instead, i.e.
lookup formulas, hidewhens, captions etc
this allows the functionality of the IDE to applied to these formulas (colours, attribute help etc) |
31 | @Formula functionsKeith Strickland910 - 08 2007 / (2) How about a way to include @Formula language functions in something like a LotusScript library. This should cut down on the amount of code written for validation formulas and commonly used formulas to determine the value of a variable, etc. I think this would be made even easier since the ... |
31 | Use @Formula to change field font colorHendrik Jan van Meerveld729 - 01 2009 / (4) Make it possible to change the font color or background color of a field using @Formula.
You could for example warn the user if a required field is empty by changing the backgroundcolor,
Color formula:
red := 255:150:150;
black := 0:0:0;
@If( fieldvalue=""; red:black ) |
27 | computed text - lotusscriptPatrick Kwinten21943 - 19 2009 / (1) since you can do more with LotusScript compared with formula, making LS available under computed text would create new opportunities.
for example db.alldocuments and dc.count would give me the number of documents in a database. how easily would i do this with formula? |
23 | Increase the number of functions/formulas in XPagesPatrick Kwinten21943 - 26 2010 / (0) In an ideal world formulas in @Formula language or @functions are also available in XPages:
http://www-10.lotus.com/ldd/ddwiki.nsf/dx/List_of_Formula_Not_Supported_In_XPages |
22 | New @Formula: list := @ResponseDocuments (..., ...) |
19 | Have @GetDocField and @SetDocField access other databasesHendrik Jan van Meerveld729 - 30 2009 / (2) This would be great for updating fields. One could write:
@SetField("strStreetname"; @GetDocField( contact_replicaid; contact_unid; "strStreetName")); |
18 | Make @DocChildren / @DocSiblings / @DocDescendants work in any other formulaPatrick Kwinten21943 - 09 2008 / (3) this could be usefullfor example build tagclouds via @dbcolumn / @dblookup |
18 | Fix the bug of @BrowserInfoRishi Sahi1672 - 24 2009 / (4) BrowserInfo("BrowserType") doesn't work anymore with latest browser and newer versions. When verified on Mozila Firefox 3 , it returns Netscape instead of Mozila.
Also, @BrowserInfo("Version") returns 5 when verified on Mozila 3.0 and returns 5 for Safari 3.2 as well.
Note : Tested on R8.0.2 |
11 | @Random for listsPatrick Kwinten21943 - 21 2007 / (4) if my text list look like:
textList:= "London" : "Stockholm" : "New York" :"Bagdad"
I would then like to be able to use
@Random(textList) |
5 | New design element for code "Open segment"It would be nice to have the sections of code that are protected from user, and simultaneously noncompiled and nonhided by hiding design. This would realize the reuse of code for the @-formulas. For example use these sections of code in:
|