XPages is IBM's web and mobile application development platform for collaborative and social applications built on top of the IBM Lotus Domino platform.
0
votes
1answer
28 views
How to get XPages and JSON to not put variable names in Uppercase
I'm trying to do the following update using XPages Extension Library.
#{javascript:var mydata = {
product: getComponent("inputProduct").getValue()
};
var params = [1, 2];,
...
1
vote
2answers
41 views
Clear an field on an Xpage?
On a XPage how can I clear some fields when a certain radio button is pressed?
The fields are on a panel. Outside of that panel are some radio buttons. In the onChange of the radio buttons I change ...
0
votes
0answers
33 views
Class files not being created after refresh from template?
Thanks to Panu
Where is the compiled java code stored in an nsf / ntf?
I was able to see where class files get created in the nsf. I am having an issue with some java classes that I created (.java ...
0
votes
1answer
34 views
Where is the compiled java code stored in an nsf / ntf?
Where is the compiled java code stored in an nsf / ntf? Or is it compiled from the java "files" at runtime?
I looked all through the java perspective but do not see anything that jumps out at me.
...
0
votes
1answer
55 views
What are valid values for contentType attribute in computed field like xs:GoogleSearch?
From this tweet by Paul Hannan I learned that you can set contentType to xs:GoogleSearch and the string generated becomes a link to search to Google. So for example if code is:
<xp:text id="c1" ...
1
vote
1answer
50 views
Do I really need a managed bean?
Everyting I have read about calling Java from Xpages mentions managed beans. But I really don't need to save the state of my object. Do I still need to make my class managed?
What I need to do is ...
0
votes
1answer
58 views
Converting richtext to MIME / HTML?
I have a old Notes Database that was designed with tradtional Notes forms for both the client and the web.
I still want to keep the old database in the traditonal Notes client. But display the rich ...
0
votes
1answer
37 views
unable to Delete a Document in a view
I am working on an Intranet Page with several views and forms, but one of my views gives me a headache. In all views i use:
<xp:button value="delete documents" id="button1" >
...
0
votes
0answers
29 views
How to import user's pki certificate into web page?
I have seen websites where users can click on a button to import their pki certificate into the web page. I am looking for the same type of code. Any ideas?
Thanks,
Kevin
1
vote
3answers
54 views
How to open a classical Notes document in a new client tab, triggered by a XPage
I have to implement the following request, but all my tries failed:
If you click on a button/link in a XPage (XPiNC), a classic Notes-Document shall be created in another Notes Database. This new ...
0
votes
1answer
35 views
“Unable to load http://url status:0” error in onbeforeunload-method
may someone of you can help me to find this problem?
I've got an xpage with client-side js-code included which should be executed when you decide to leave the page. In the client-side js you refer to ...
0
votes
1answer
62 views
Xpages PDF creation using the XMLWorker class
Using SSJS I've successfully created a PDF using the simple HTML parser that comes with iText but the simple HTML parser doesn't respect CSS and is very limited. I downloaded the XMLWorker class from ...
0
votes
1answer
64 views
Trying to call a method from a bean within my custom control
This code is in the beforePageLoadEvent of an xPage:
var aURL = eStarService.fetchDocLibraryDocumentURL( sessionScope.get( "PropertyNo" ), "Budget" );
sessionScope.put( "docURL",aURL );
var docUNID = ...
0
votes
1answer
39 views
Can I open a specific entry in a dojo accordion?
I want to put links in the left navigation of my application that open an xPage and select a specific accordion entry. Not sure how to do this
Any thoughts?
0
votes
1answer
49 views
Search Xpages based on date range
I need to develop a search functionality into one of my client xpages to return documents based on 2 date fields, document date creation and document date of conclusion.
I already have a query field ...
0
votes
1answer
60 views
Inline Editing of View data used in a repeat
I have a repeat control using a view as the datasource with a custom control within the repeat. The custom control is made up of a panel with two tables. One table has computed fields with an Edit ...
0
votes
1answer
85 views
Links/Clicks not working in Firefox after Using the Back button on an XPage
I'm finding that XPages I have, when loaded in Firefox, have an odd quirk that I can't seem to get around. On my XPage, there is a viewPanel, in which one of the columns is defined as such:
...
2
votes
2answers
85 views
xpages number converter with combobox in ND9
I'm having trouble using number conversion with numberConvert in a combo box in xpages on a Domino 9 server. This used to work on the 8.5 server.
When I submit the values I get: Validation Error: ...
0
votes
1answer
69 views
Open new database in tab from xpages
Im trying to open a database from my server javascript in xpages, but cant seem to get it right
var session:NotesSession;
//var session = getSession();
agentContext:NotesAgentContext = ...
1
vote
1answer
98 views
How do you run the beforerenderresponse event via managed bean
I have managed been which i am using to handle the events on an XPage
The beforePageLoad event runs fine using EL to run the bean:
...
0
votes
1answer
70 views
Xpage Custom Controls not displaying in edit mode
I have an xPage with a couple custom controls. One CC nested inside the other. When I place the xPage into edit mode the innermost CC does not swich to edit mode but it's containing CC does. What ...
3
votes
2answers
82 views
XPages: @DbName() removes slashes from the database filepath
I'm using @DbName() to get the name and filepath of a notes database. Unfortunately the filepath and name are returned as one string without slashes. For example, if the filepath is ...
0
votes
1answer
63 views
Intellisense (or Eclispse equivalent) in xPages Javascript for managed beans?
I wrote a managed bean and have succesfully incorported into an xPage. What I noticed is the intellisense (or whatevver it is called in Eclipse), does not work for the managed bean. Is there anyway ...
1
vote
2answers
73 views
Shared java resources in XPages applications
I try to implement most of the logic in any XPages application in Java. I don’t like the idea of attaching the jars or java code in the NSFs. I want to create repositories of java code that is ...
1
vote
3answers
66 views
Is there a way to get only portions of the data from a document through a REST Api call
I’m working on an application with documents containing 150+ fields.
This is an HTML5 app that uses Domino / XPages / ExtLib as a data service mechanism.
In most cases, when performing REST calls, I ...
0
votes
1answer
60 views
Nested repeat controls in XPages
I have a situation where I have a set of nested repeat controls. What I would like to do is be able to refresh only selected parts of the repeat controls after dismissing a dialog box. I can specify ...
-3
votes
1answer
109 views
Extracting a specific value from a view. (javascript)
I have a custom control with edit boxes populated by data from a view when clicking on button1. This button1 extracts the data from the view via this code.
var vw = database.getView('BrowserStats');
...
1
vote
1answer
41 views
XPages Extension library DOJO Tab container control CSS Modifications
I want to know, Is there any way to change the Style sheets of the extension library DOJO Tab container control?
Thanks & regards,
Yogesh Kashid
0
votes
2answers
116 views
XPages and Twitter Bootstrap Modal not working when using SSJS
It's pretty easy to get a Twitter Bootstrap modal working in XPages just by following the examples in the site. However, it doesn't seem to work if you want to use SSJS to affect the contents of the ...
1
vote
3answers
84 views
Query is not understandable - using field Fulltext search [Tags] = “foo”
I have a problem that only happens rarely with FT search. but once it happens it stays. I use the following search term in the FT search box in Lotus Notes
[Tags] = "foo"
in most application this ...
0
votes
0answers
68 views
Uncaught exception not enough arguments nsresult error after using twitter widget in Lotus Notes XPage
I am using the twitter widget from twitter in my XPage in lotus notes, I simply inserted the script into the Source of my XPage, sometimes the widget works, sometimes not, but it always gives me an ...
1
vote
3answers
93 views
How is your approach for creating your own set of controls aka own Extensions Library?
What is your approach for creating your own set of controls aka own Extensions Library? After a few years of Xpages development we have a huge set of controls that are general purpose for building ...
0
votes
0answers
41 views
JDBCRowSet Not working as expected with DB2
I've stumbled (over all the hair I pulled out in trying to figure this out) onto something that I don't know if it is a bug or me not doing things correctly.
I've installed the latest version of the ...
0
votes
1answer
54 views
Opening document error noAccessSignal
I'm opening a document on xPageA then from there, (pushing a button) I open the same document in xPageB to do some stuff on it.
Sometimes on some documents, opening xpageB from xPageA results in ...
0
votes
2answers
72 views
Error $ is not a function in xpages
I am plotting a graph in XPages using QJplot. It was working fine before until I copied the entire process ie, buttons that extract data, buttons that plot data etc. Now for some reason I keep getting ...
0
votes
1answer
91 views
XPages enable button if all checkbox in repeat control is checked?
I'm not using checkboxgroup because in my real application there are still other controls inside the repeat control. Below is my sample source:
<?xml version="1.0" encoding="UTF-8"?>
...
1
vote
1answer
61 views
Concatenating parameters
I'm trying to concatenate a string in Expression Language to access a property of an object and failing to do so.
Within an XPage in Lotus Notes, I want to programatically select which field to which ...
1
vote
3answers
91 views
Notes 9, rewriting URLs
How do you rewrite a URL in Notes 9 XPages.
Let's say I have:
www.example.com/myapp.nsf/page-name
How do I get rid of that .nsf part:
www.example.com/page-name
I don't want to do lots of manual ...
1
vote
3answers
71 views
Can I have the extlib name picker running in xPINC lookup the directory on the server?
Is it possible to use the name picker in the extlib in an xPINC app, to pick from the server side address book? Currently running in the browser I am able to pull from the server side names.nsf, and ...
1
vote
1answer
45 views
How to pass and display a custom control in another custom control
I am creating an application where I want to add data to a form in a wizard format. I will have a series of modal dialogs that step through the data entry process. I am using the Bootstrap modal ...
0
votes
3answers
84 views
How to catch delete and download events in File Download component?
I need to somehow catch an event when user deletes an attachment in File Download component (bin icon). I'd like to autosave document or at least tell him, that document has been modified and he must ...
1
vote
1answer
37 views
Want to take an action in a View Panel column to set filter criteria and open another XPage
I have a view panel control that displays a list of documents and some information about each. One of the columns is the storage location of the item recorded in the document. I want to make that ...
0
votes
1answer
58 views
Best way of updating XPages Extension Library, so that developers and server are on the same release
Last week we encountered some issues in a Notesdatabase, because me and my collegue developer were not on the same version of the extension library.
What is the best procedure to make sure we're on ...
0
votes
1answer
54 views
Joining MS SQL tables in a JDBC query
I'm using a JDBC query to an MS SQL database as a datasource for a view. The datasource is something like:
<xp:this.data>
<xe:jdbcQuery connectionName="mssql" sqlQuery="select * from ...
0
votes
4answers
156 views
xPages date field in IBM Notes 9, the Default value not showing and Picker Icon not aligned properly
I have tested Xpage Application in Notes Client (xpinc) 9 and find the following bugs with Date/Time Picker.
Given default value for the Date field.
When viewing in the xpinc,not able to see the ...
0
votes
2answers
100 views
Getting values from repeat control
I have a field inside a repeat control. Right now am using a viewScope in the onChange event to capture the field values inside the repeat control. Each time the field has to partial refreshes in ...
1
vote
1answer
78 views
Is OneUI free to use in internal projects? [closed]
Have been looking for but couldn't find any licensing information regarding IBM OneUI.
The one thing I see is a header inside core.css file, which says:
"Use, duplication or disclosure restricted by ...
0
votes
2answers
92 views
How do I add a serverSide Javascript to a theme?
According to the book "Mastering Xpages" the most powerful feature for resources in themes is to use the tag <resources> and load both clientside and serverSide stuff.
I have tried to load ...
1
vote
2answers
64 views
Check date range vs. some other date ranges for missing days
Here is what I want to do:
I got a date range from e.g. 03.04.2013 to 23.04.2013 - that's my main range.
Now I have the possibility to create some own time ranges (e.g. 04.04.2013 to 09.04.2013 and ...
0
votes
1answer
81 views
Dojo DataGrid (8.5.3 UP1) Returning Blank Rows - based on Readers field
Trying out a Dojo DataGrid control on an alternate XPage (so as not to impact production) for an existing View, which utilizes Readers fields in the documents. I've got the REST service implemented ...




