XPages is IBM's web and mobile application development platform for collaborative and social applications built on top of the IBM Lotus Domino platform.

learn more… | top users | synonyms

0
votes
1answer
25 views

XPage custom control loading existing values into table

I have an XPage with a custom control ccxGrid. In this custom control, it calls another XPage that builds a JSON string that in turn populates the table on the main XPage. My issue is that when the ...
0
votes
2answers
39 views

XPages XSP Dialog not working

I have an XPage with several extension library dialogs which up to now had been working fine. Today I noticed that none of the dialogs work and I can't figure out why. I created a test dialog on ...
0
votes
1answer
36 views

dojo.byId is null in xpage js header

dojo.byId is not working in xpage js header. Why is this? <script type="text/javascript"> dojo.require("dijit.form.ComboBox"); function test() { alert(dojo.byId("#{id:inputText3}").value); } ...
0
votes
1answer
26 views

Connections iWidget and xPages login

I am using an xPage as an iWidget in IBM Connections 3.0.1. I have extended the ajax proxy to point to the nsf. During testing everything was working correctly but I realized it was only working when ...
0
votes
2answers
62 views

Themes not importing remote JS files correctly in XPages

I'm having a lot of trouble with JavaScript elements in themes. All of my CSS is loading correctly, but my JavaScript doesn't seem to be. I'm working with a combination of resource JS files uploaded ...
0
votes
2answers
45 views

executeonServer from a customcontrol - how caputer Id from current CC

Ho to all, I have a little problem..my code work very well..if I have my event handler into a XPages `<xp:eventHandler event="autoSaveEvent" id="autoSaveDoc" submit="false"> ...
0
votes
0answers
29 views

Save data on multiple tables using the xe:jdbcRowSet Datasource?

As the question above. Can I save data to multiple tables at a time on a xe:jdbcRowSet Datasource using a JOIN sqlQuery? I tried to use "com.sun.rowset.JoinRowSetImpl" as the rowSetJavaClass, but I ...
0
votes
2answers
69 views

Filling combobox with years [closed]

I am working with xpages and i want to fill a combobox with Years starting with 2010. I tried to do it without success. Any idea of the formula item to fill to the combobox ? Thanks
0
votes
2answers
53 views

An error occured while updating some of the page xhr cancelled with Submit button

Apparenty there seems to be some sort of problem in xpages with submit buttons and IE. So I had to set the submit button as follows. <xp:button value="Submit" id="button2" type="submit"> ...
0
votes
2answers
45 views

Public Access Lookup failing

The ACL of my database has Anonymous set to No Access with Read Public documents set. I have an Xpage that I set to Public Access. The page displays fine, without having to login, with the ...
2
votes
1answer
42 views

org.openntf.domino API and what is equivalent to and com.ibm.xsp.model.domino.wrapped.DominoDocument?

What is equivalent to com.ibm.xsp.model.domino.wrapped.DominoDocument in org.openntf.domino API? I'm using this class when I send NotesXSPDocument to my java class from SSJS.
0
votes
1answer
48 views

Java code running twice

I have 2 Notes servers running from a load balancer. The database uses directory services to authenticate to LDAP. I have java code that checks LDAP to check if user's password is expired. If the ...
1
vote
1answer
81 views

Login Module works everywhere, except in Chrome [Solved]

we have a little problem with our login module for one of our XPages applications. We have used the XPages login module from http://www.qtzar.com/dslh-7qpr7x/ as base. The login module works just ...
0
votes
4answers
53 views

How to pass var variable to custom control

I want to create a generic action bar custom control with Save, Edit, Delete, ... buttons. How can I pass var variable from xpage to a custom control?
0
votes
1answer
30 views

using xpages with twitter4j to get access token on server

I am using twitter4j to show some tweets on my webpage. The code works fine when I am running it locally. If I put it on the server I got an error. The code looks like Twitter twitter = ...
1
vote
2answers
52 views

Forcing Object Data Source To Reinstantiate

I am using the XPages Mobile Controls with an Object data source (Java Class which is NOT a managed bean) tied to View scope on a second app page. I have resetContent on the second page set to true. ...
0
votes
1answer
148 views

Getting to ServletContext from ApplicationListener

We are using an ApplicationListener to load some timer libraries that will do regular background work with some of the beans. However at applicationCreated we can't seem to find a way into the ...
1
vote
1answer
93 views

XPages get current document with no data source on page - best coding technique

I have a button on an XPage that has no data source. I have read that I cannot use currentDocument to grab the current document: ...
0
votes
1answer
61 views

dataSource unable to save richText Item

I am using eventhandler on my Xpage to save my datasource (frmData): <xp:eventHandler id="saveEventHandler" submit="true" save="true" event="calledbyid" refreshMode="complete" ...
0
votes
1answer
110 views

XPage is completely blank

I have an xpage that includes some static html at the top, some edit fields to enter search criteria, a data table to display the search results and a button to refresh the id of the data table to ...
2
votes
2answers
84 views

Is there a clever way how to share custom controls among Xpages applications?

For our Xpages application stack we have to create cca. 100 controls that will cover our new UI parts/helpers and some additional services. These controls are meant to be very general and have to be ...
0
votes
1answer
51 views

PDF creation with page refresh

I have a page with a viewPanel and a dialog. When an item in the viewPanel is clicked, the dialog opens, prompting the user to make changes to that item, and offering them the option to generate a ...
1
vote
1answer
48 views

How can I save the state of a repeat control?

I have a repeat control generated based on a view. I'd like to save the state of the repeat control when a user navigates to a document and returns. I have tried the pager Save State control from ...
0
votes
2answers
81 views

How do you copy a datetime field from the current document to a new document

How do you copy a datetime field from the current document to a new document in Xpages, SSJS. I am coping other fields like this ...
3
votes
2answers
95 views

How to upload and save an attachment via XPages Java Bean

I get how you can use Expression Language to bind XPages controls to a Java Bean. Then it accesses the setters and getters automatically. But how do you handle a file attachment? What does that ...
3
votes
3answers
73 views

Binding computed xpage fields to a form field

There is a lot of questions about binding data to forms. This is very simple. I have a form that uses several computed fields that pull data using an @DbLookup to populate the fields based on a ...
0
votes
1answer
41 views

XPages Button on page will not fire

I have an XPages with a button on it that will not do anything no matter how simple the code is. There are no errors appearing, nothing in the logs showing me why it does not work. Here is the test ...
0
votes
1answer
56 views

autosave function Ajax Mode - second part

Hi I have try to realize that...but I have some problem with CKeditor control: autosave function in Ajax mode With Firebug I see the POST sending for a simple field (text for example) but the post ...
0
votes
1answer
40 views

XPage oneuiApplication: dynamic Configuration

I create custom control for application layout (cc_layout - ). The placeBar="false" in this control. Is it possible to enable placeBar in XPage on the basis of some criteria. Example: Need only on ...
-1
votes
1answer
49 views

onchange event in XPages

I have two edit boxes in an XPage and one label. Leave Start Date : EDIT BOX Leave End Date : EDIT Box Holidays Taken : label I want to calulate the diffence in dates and get it computed in the ...
0
votes
1answer
37 views

Get Column average in repeat control

I've got a repeat control containing five columns with values like "2.30" or "1.78" (saved as number values). I now want to create a column total beneath the repeat control calculating the average of ...
1
vote
1answer
71 views

XPages - how to assign OneUI3 theme?

I have a new XPages app with Domino 9 but I don't see an option to have OneUI3 there. I got also the XPages Demo App 2.0 from OpenNTF where this option exists, however I could not find where does it ...
0
votes
1answer
73 views

How show if another user are the same XPages

I need a custom control that show Like Google Docs into the top of my Page ...if another user see the currently XPages... Have someone any suggest to realize this feature? Into JSF runtime there are ...
0
votes
1answer
41 views

filter in xe:dominoViewListTreeNode

How to write regular expression for NOT to include view name start with '(' in xe:dominoViewListTreeNode Generally we use expression to include view name like: <xe:dominoViewListTreeNode ...
0
votes
3answers
66 views

What CSS attributes can be used to control the pager?

I have a repeat custom control with a pager. In the designer the text ("previous 1|2|3|4|5 Next") is aligned on right; unfortunately when displayed on server this text is left aligned. I've tried to ...
0
votes
1answer
78 views

Read / Write to Notes document using managed bean in XPages

I have set up a managed bean with help of the following code. And have connected inputboxes on an XPage to the managed bean. Now I want to save values from the inputboxes back to the underlying ...
0
votes
1answer
30 views

Trying to open another xPage from a basicContainerNode

I have a navigation custom control that I want to link to specific documents in a database. I tried using a pageTreeNode but that opened the link when the page loaded. I was told to use a ...
1
vote
1answer
65 views

QueryString in domnio xpages or not, not normalized

I'm trying to adapt an application with domino xpages. The html request send by client are like http://www.someserver.org/someapplication.nsf/someresource.png?v=2.3.4 or ...
1
vote
1answer
40 views

XPages cluster and state variables

We are about to make another server for XPages applications. In front of it there will be fail over/load balance component (Microsoft Forefront, IBM Web server) that will redirect HTTP request to one ...
0
votes
1answer
39 views

xpages full text searching

I've been following Dave's Notesin9 video on full text searching. My source code is: <?xml version="1.0" encoding="UTF-8"?> <xp:view xmlns:xp="http://www.ibm.com/xsp/core" ...
0
votes
1answer
31 views

djextListTextBox in IE8 not displaying close symbol

I am using a <xe:djextListTextBox> to filter a view. In Firefox all works fine I can Select the filter values like Author + Date and it displays both separated in two boxes with an 'x' as ...
0
votes
1answer
29 views

CKEDITOR vertical scrollbar Xpages

I need to enable vertical scroolbar into my CKEDITOR classic RT control... So I have used this CSS .cke_show_borders { overflow-y: scroll; // vertical scrollbar overflow-x: scroll; // ...
2
votes
2answers
108 views

How to set up a managed bean to work with Notes document

I would like to set up a managed bean that manages a Notes document in Notes view where I store application preferences in (e.g. path on server to store attachments, application title, which logo to ...
1
vote
1answer
83 views

Is there a DTD for XPage source?

With whatever little knowledge I have of XML I know that we can associate a DTD with XML file which defines all the valid elements, its attributes and where they can appear. Is there any such DTD ...
0
votes
1answer
72 views

XPages: Dynamically populate Navigator Control

I need to create links of available views in database on Navigator Control. I did not find any computed formula area for that control. Just like we use code for combobox: var v = ...
0
votes
3answers
83 views

Cannot get Custom Validator to fire

I am stumped. I have an input field in an xpage where I added a custom validator. I can not get the custom validator to fire no matter what I try. There is a also validateRequired which works as ...
0
votes
2answers
84 views

IF condition in javascript not printing the right ID

In XPages I am trying to extract a value from the view based on which one has been selected via the check box. I have a view called 'viewpanel2' which contains LoggerIDs, each LoggerID is made up of ...
0
votes
2answers
70 views

Syntax prevents computed fields to populate using @DbLookup

I have a combo Box that lists several products. Some of these products have quotes in their names signifying inches (i.e. 12" dressing Rod). Here is my issue. I have an "On Change" event that ...
0
votes
1answer
45 views

how to use XSP.fireEvent?

XSP.fireEvent(evt, clientId, targetId, clientSideScriptName, submit, valmode, execId) Allows to trigger an event script Who can show me how to use this method and explain me what every argument ...
0
votes
2answers
55 views

How to translate XPage application “on the fly”?

On IBM's website, I found a nice tutorial about localization of XPage applications. If you look in the comments, you'll see I added a couple before figuring out how to make it work. For the fun of ...

1 2 3 4 5 29