xpinc

XPiNC 8.5.3 - Time Value shows Incorrectly

。_饼干妹妹 提交于 2019-12-23 05:46:11
问题 I have opened the document in the XPiNC (Version 8.5.3), the time values are showing wrongly. Note : Same I have tested in version(Version 8.5.2), there its seems to be correct. I have checked the values in document properties, the values are saved correctly. I am really confused on this, Should I need to do any settings for this...? Even I have tried with other PC with 8.5.3 version, there also I got same Issue :-(( Thanks in advance 回答1: 8.5.3 has had a couple of reported regression bugs

Set default font/text size in RTF Control

≯℡__Kan透↙ 提交于 2019-12-23 03:13:06
问题 I found this answer Default font for Rich Text field but it doesn't help me. I need to be able to set it in the application as this is an XPiNC (Xpages in Notes Client for those reading this in the CKEditor forum) app and I have no control over what is on the system beyond IBM Notes 8.5.3FP4. Because the config.js is server side for the CKEditor, I need to do this in the code or css somehow. Is this even possible? 回答1: Add the following script block to your XPage. It will set the initial font

Can I have the extlib name picker running in xPINC lookup the directory on the server?

£可爱£侵袭症+ 提交于 2019-12-17 17:11:47
问题 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 while running as xpinc I pull the local names.nsf. Do you know if this is possible? Really trying to accomplish "write once run everywhere". <xe:namePicker id="namePicker1" for="djextNameTextBox3"> <xe:this.dataProvider> <xe:dominoNABNamePicker groups="false" nameList="peopleByLastName" people=

Getting the Server Name from the session

丶灬走出姿态 提交于 2019-12-13 05:01:57
问题 In a managed bean that resides in a Database on the server Development I have this code: s = ExtLibUtil.getCurrentSession(); theMap.put("Server Name", s.getServerName()); when I look at theMap after this has run I see Server Name and the value is blank. After this I get a datbase RepID and then try to open the database by RepID with appDB = s.getDbDirectory(null).openDatabaseByReplicaID(repID); if (appDB.isOpen()){ theMap.put(thisKey, repID); }else{ theMap.put("DB " + thisKey, "Is Not Open");

Unable to reference a view in another database from XPiNC

淺唱寂寞╮ 提交于 2019-12-12 00:59:49
问题 I have a repeat where the value loops through documents in the current database, these documents contain a database and view name. The repeat then opens the database and view and retrieves data from within them: var dbOther:NotesDatabase = session.getDatabase(null, doc.getItemValueString("Database")); if(dbOther != null){ var lookupView:NotesView = dbOther.getView(doc.getItemValueString("ViewName")); var viewNav:NotesViewNavigator = lookupView.createViewNavFromCategory(key); } This works fine

@JdbcGetConnection not working in XPiNC after upgrade to 9.0.1 FP3 'SSLv3 SSLContext not available'

雨燕双飞 提交于 2019-12-11 09:32:17
问题 After upgrading Notes client to 9.0.1 FP3 I'm unable to get records from MS SQL instance. I got following error: Error while creating JDBC connection, url=jdbc:sqlserver://192.168.21.28\INSTANCENAME:1436;databaseName=dbname, username=username The driver could not establish a secure connection to SQL Server by using Secure Sockets Layer (SSL) encryption. Error: "SSLv3 SSLContext not available". SSLv3 SSLContext not available Has anyone else experienced this? Is there a ini setting to solve the

Check if scheduled local agents can run in Notes client

风格不统一 提交于 2019-12-11 03:49:27
问题 I there a way in XPiNC (Per can you add that tag) to check if "scheduled local agent" is enabled in a Notes client? Alternatively how to do that in a LotusScript agent. Checking if an agent is active is easy, but that's only one part of the equation 回答1: See the Trigger and IsEnabled properties of the NotesAgent class: TRIGGER_AFTER_MAIL_DELIVERY (2) means "After new mail has arrived" TRIGGER_BEFORE_MAIL_DELIVERY (6) means "Before new mail arrives" TRIGGER_DOC_PASTED (3) means "When documents

Policy or file to set XPages Perfomance Preoloading and Run On Server

大城市里の小女人 提交于 2019-12-08 08:50:33
问题 Someone know what's the file into Notes Client 9.01 installation where is stored the Section XPages Perfomance that is show under Preferences of client Notes? I have need to set this information to all my client notes? Exist a policy settings or someone know what's the file? Tnx you 回答1: Notes.ini: XPagesPreload=1 XPagesPreloadDB=servername!!path/mydb.nsf/myxpage.xsp,servername!!path/anotherdb.nsf [NotesDataDirectory]/workspace/.metadata/.plugins/org.eclipse.core.runtime/.settings: com.ibm

How to close xpages in notes client? I use CSJS window.close but it's not working

醉酒当歌 提交于 2019-12-01 07:42:31
问题 I'm doing an xpinc application. I followed the example in here and modified it. Currently the close button is on my main page. The customer wanted a close button instead of the normal 'X' to close. But the example suggests that I should create 2 xpages. On page1 I should create a button with window.open(xpage2.xsp) and only then window.close() in a button in xpage2 will work. How do I window.close() when I have no window.open() to begin with? I've check Demo Discussion xpage and OneUI but

Can I have the extlib name picker running in xPINC lookup the directory on the server?

[亡魂溺海] 提交于 2019-11-28 02:17:33
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 while running as xpinc I pull the local names.nsf. Do you know if this is possible? Really trying to accomplish "write once run everywhere". <xe:namePicker id="namePicker1" for="djextNameTextBox3"> <xe:this.dataProvider> <xe:dominoNABNamePicker groups="false" nameList="peopleByLastName" people="true" addressBookSel="db-name" addressBookDb="names.nsf"> </xe:dominoNABNamePicker> </xe:this