发布新帖

查找

公告
· 四月 7, 2021

Developer Community Release, March 2021

Hi Developers!

This is a release of how did we improve the Developer Community in March 2021. The key features:

  • Global Masters badges page
  • User mentions page
  • Post translation indicator
  • Updates in the Jobs section
  • Updates to the "New post" button on DC Tag page

See the details below.<--break-><--break->

Global Masters badges page

Completely new display of GM badges on DC! Now you can see your Global Masters level and the progress of other users.

All badges you earned are displayed in a new way. You can also find out the name of any badge simply by hovering over it.

User mentions page

Completely updated page! We've added sorting of user mentions by posts and comments. Also, now you can easily see what your posts have been translated into other languages - use the sorting by translations.

Post translation indicator

You can always see what other languages the post has been translated into: just click on the Language drop-down menu and look at the checkmarks.

Updates in the Jobs section

In the Jobs section, we've added a new button for creating a job post!  

Just click on the "New job opportunity" button, an ad will be automatically created with a special "Job opportunity" tag. This tag will make a vacancy out of your announcement and add it to the "Jobs" section. Learn more.

Updates to the "New post" button on DC Tag page

Are you a follower of a topic / DC tag? This improvement might be useful to you!

When you are on the page of any DC tag and click the "New post" button, this tag is automatically added to the post creation form.

So!

We hope you enjoy our updates! Feel free to submit new requests for improvements and bug reports

Stay tuned!

5 Comments
讨论 (5)1
登录或注册以继续
问题
· 四月 7, 2021

Add div programmatically to th-element after refreshContents()

Hey community,

I want to create my own table resizer. I know that there are some plugins that are doing exactly this but I would like to create my own one. :)

 

I have created a function, which is called in the onloadHandler and which append a div to each th-element of a given table. The method looks like this:

function initializeTableFeatures(){

    jQuery.each($("#table > table > thead > tr > th"), function() {
         if(this.id !== ""){
              var div createDiv($(this).outerHeight());
              $(this).append($(div));
              $(this).css('position','relative');
              setListeners(div);
              this.width $(this).outerWidth()
              console.log(div)
         }

    });

}

 

The function "createDiv()" does this:

function createDiv(tableHeight){
    var div document.createElement('div');
    $(div).css('top','0');
    $(div).css('right','0');
    $(div).css('width','2px');
    $(div).css('position','absolute');
    $(div).css('cursor','col-resize');
    $(div).css('userSelect','none');
    $(div).css('height',tableHeight 'px');
    return div;
}

This is working perfectly then entering the page. The problem is that the table can be multi-paged. So tthe table is splitted into multiple pages. On each page change the method refreshTable() is called. This method executes refreshContents() on the table.

 

I tried to add my initializeTableFeatures() function after the call of refreshContents(), but it didnt work. I thought that the table isnt fully loaded when calling my initializeTableFeatures(). Due to this I added a setTimeout() for this function but it didnt work either.

 

One funny thing is that when I am adding an alert to the refreshTable() function and I am closing this alert, the div are successfully appended to each th-element.

 

Does anyone know a fix to this problem?

 

Thanks in advance

1 Comment
讨论 (1)0
登录或注册以继续
问题
· 四月 7, 2021

how to convert Crystal Reports to Logi/InterSystems Reports

We are looking at moving from Cache to IRIS, if we do this we will want to use Intersystems Reports.  We have a lot of Crystal Reports to convert.  is there a conversion tool or best practice for doing the conversion 

4 Comments
讨论 (4)2
登录或注册以继续
问题
· 四月 4, 2021

$zf call out to Window DIR command not working when running concurrent process

I have an application that is called by terminal in local cache environment. The application basically has two processes that runs and does the below call to retrieve files and sub-directories in separate folders.    When the main process starts, it jobs off and calls the second process that gathers all files in a directory by using a window dir and file command that pipes the results to a file.  The main process continues on and does the same thing but from a different folder.  When checking out what was retrieved by the secondprocess, there were directories and files missing.   When I run this as just one process it works properly.    I am running this on a 2017 license cache instance.   I have also tried this on IRIS instance and got the same results.  Could you please advise me what is causing the window directory to not work properly when running the processes at the same time?

Main process one

S FILE=SDIR_"DIRLIST.TXT"

I $$FSIZECK(FILE) S FSIZE=1 Q ""

S X=$ZF(-1,"DEL """_FILE_"""")

S X=$ZF(-1,"DIR """_SDIR_""" >> """_FILE_"""")

 

 

Second process one

S FILE=SDIR_"DIRLIST.TXT"

I $$FSIZECK(FILE) S FSIZE=1 Q ""

S X=$ZF(-1,"DEL """_FILE_"""")

S X=$ZF(-1,"DIR """_SDIR_""" >> """_FILE_"""")

8 Comments
讨论 (8)2
登录或注册以继续
问题
· 四月 1, 2021

Health connect search bar not working

Upgraded healthshare to health connect. The search box is not selecting the correct url 

i.e. selecting message loads 

http://penn-tietest:57772/csp/sys/EnsPortal.MessageViewer.zen?$NAMESPACE=TIE

instead of this which when go through the menu it loads 

http://penn-tietest:57772/csp/healthshare/tie/EnsPortal.MessageViewer.zen?$NAMESPACE=TIE

it actually loads from interopability view messages as 

http://penn-tietest:57772/csp/healthshare/tie/EnsPortal.MessageViewer.zen?$NAMESPACE=TIE&$NAMESPACE=TIE&

Please can someone advise 

1 Comment
讨论 (1)0
登录或注册以继续