Search Type: Posts; User: Zakaroonikov
Search: Search took 0.03 seconds.
-
11 Feb 2010 1:14 PM
Jump to post Thread: Reponse Documents by Zakaroonikov
- Replies
- 5
- Views
- 1,573
Have a look at the Ext.nd Demo database. In the CategoryTest1 form there is an action to create a response to the document you are in. The function call is:
this.openForm({
formName :... -
12 Jan 2010 1:10 PM
Jump to post Thread: Basic problem with UIView by Zakaroonikov
- Replies
- 11
- Views
- 3,214
I have found it could be a whole range of things. With authenticated resource files (non anonymous access) the first time it requests access to the JS file Domino might send back a different content...
-
11 Jan 2010 3:13 PM
Jump to post Thread: Basic problem with UIView by Zakaroonikov
- Replies
- 11
- Views
- 3,214
You are best to make your image, css and JS files anonymously accessible if possible. It may save round trips to the server. You can also try setting the mime type of the individual resource to...
-
22 Dec 2009 2:55 PM
Jump to post Thread: Open document in new tab by Zakaroonikov
- Replies
- 22
- Views
- 9,243
My mistake looks like openForm is a method of the ext.nd.actionbar class not the ext.nd.uidocument class. Instead you could try the following:
Ext.onReady(function() {
var uidoc = new... -
20 Dec 2009 2:03 PM
Jump to post Thread: Open document in new tab by Zakaroonikov
- Replies
- 22
- Views
- 9,243
Did you keep the original definition of the uidoc in the code? That is what I meant by // other code goes here. Try this:
Ext.onReady(function() {
var uidoc = new Ext.nd.UIDocument({... -
17 Dec 2009 1:58 PM
- Replies
- 45
- Views
- 23,278
I think it has something to do with using IE to download:
http://www.extjs.com/forum/showthread.php?p=391987#post391987 -
17 Dec 2009 1:56 PM
Jump to post Thread: Outline Question by Zakaroonikov
- Replies
- 3
- Views
- 1,145
I am glad it worked for your. Post the code (if you can). I think some people might find it very useful.
-
16 Dec 2009 1:36 PM
Jump to post Thread: Outline Question by Zakaroonikov
- Replies
- 3
- Views
- 1,145
Could you not look at the viewUrl attribute of the UIView gridpanel on the active tab? If you know the url of the view you are showing on the active tab you can get the root node of the treepanel...
-
14 Dec 2009 1:43 PM
Jump to post Thread: Open document in new tab by Zakaroonikov
- Replies
- 22
- Views
- 9,243
Perhaps you need to get the hot spot by giving it an HTML ID lets say we give it 'myHotspot' then you could do something like this in the JSHeader:
uidoc.on('open', function(uidoc) {
//... -
7 Dec 2009 5:56 PM
- Replies
- 4
- Views
- 2,231
You could try passing the UNID as a parameter in the query string ie ?OpenAgent&UNID=23423423423423
And then using the agent to extract the unid from the query string. -
7 Dec 2009 5:52 PM
Jump to post Thread: Open document in new tab by Zakaroonikov
- Replies
- 22
- Views
- 9,243
Ah I was thinking browser tabs. Have a look at the demo database. The form "CategoryTest1" has some actions that do exactly what you are after.
-
6 Dec 2009 1:41 PM
- Replies
- 4
- Views
- 2,231
Could you not call the agent via
http://server/databasepath/agentname?OpenAgent
Of course this will only work if the agent has been designed for the web. -
6 Dec 2009 1:39 PM
Jump to post Thread: Open document in new tab by Zakaroonikov
- Replies
- 22
- Views
- 9,243
Try
@SetTargetFrame( "_blank" );
before your call to the compose statement -
6 Dec 2009 1:37 PM
- Replies
- 4
- Views
- 2,216
I believe extnd already has a way to select by check box but it will appear as the first column similar to how lotus notes works. Just add:
selModelConfig: {type: 'checkbox'},
To your... -
6 Dec 2009 1:34 PM
- Replies
- 4
- Views
- 1,801
If you want to only disable the double click you could override the doubleclick method with an empty function. If you are setting up the view as follows:
var ExtndApp = function() {
return... -
3 Dec 2009 5:17 PM
Jump to post Thread: How-To : Async treeview by Zakaroonikov
- Replies
- 12
- Views
- 7,632
No problem. Happy to help out.
-
2 Dec 2009 2:47 PM
Jump to post Thread: How-To : Async treeview by Zakaroonikov
- Replies
- 12
- Views
- 7,632
Here is an update to get this to work in the new Ext.nd
Ext.override(Ext.nd.UIOutline,{
isView : false,
initComponent: function() {
// Using applyIf here to allow full... -
30 Nov 2009 4:36 PM
- Replies
- 9
- Views
- 3,370
This search server sounds very interesting. So the general idea is create some agent in domino that when called will spit out XML representing index update requests. It seems like a lot of overhead...
-
15 Apr 2009 2:31 PM
- Replies
- 12
- Views
- 7,321
The tab hasn't rendered yet. It looks like the defferredRender property of the tabpanel is set to true. After doing the doLayout, set the active tab to be the blank tab you just added then add to...
-
7 Apr 2009 5:24 PM
- Replies
- 9
- Views
- 7,780
I found that I had to drag and drop to set the order of the javascript files. Something like http://getsprockets.org/installation_and_usage might be doing what you are after.
-
7 Apr 2009 2:37 PM
- Replies
- 12
- Views
- 7,321
Hmmm it looks like 'newTab' is does not contained the added tab object only the configuration of the tab. I have added another line to grab the object from the tab panel after it has been added. ...
-
6 Apr 2009 2:41 PM
- Replies
- 12
- Views
- 7,321
How about:
var panelId = 'pnl-' + unid;
var center = window.parent.ExtndeFarmerApp.ui
var tpentry = center.tabPanel.getItem(panelId);
var link = center.uiView.dbPath+ '/0/' + unid + mode;
... -
5 Apr 2009 7:14 PM
- Replies
- 12
- Views
- 7,321
Maybe try something like this:
var ctp = center.tabPanel;
var newTab = ctp.add({...};
ctp.doLayout();
ctp.setActiveTab(newtab); -
5 Apr 2009 7:02 PM
- Replies
- 9
- Views
- 7,780
Isn't it just a matter of turning off the option 'Compress the source files and copy them to the following directory'
-
9 Nov 2008 12:25 PM
- Replies
- 5
- Views
- 3,118
That is strange. It worked for me right out of the box. Maybe it has to do with different java MV installations? I am using version 6 update 7. What version of the jvm are you using? Are you...
Results 1 to 25 of 117
