Complete our Nintex Community Survey
Find resources, discussions, and troubleshooting tips to design and manage workflows and business applications with K2 blackpearl.
Recently active
Hello, I have an editable list that when it double clicked, it turn into editable mode.I added a horizontal scroll to the list using custom javascript.The problem is, when i double click on the cell/field on the far right end of the list, the scroll keep coming back to the left end of the list.Is there any way or workaround to keep the cursor on cell/ field that i double click? Thanks
Hello experts,I built a document control system using workflow and smartforms in Sharepoint. After approvals, documents are published as PDF files. We are using a third party tool called Muhimbi to convert documents to PDFs. This tool adds watermark as well on PDFs. Now we have a new requirement, certain documents based on some meta data, will NOT be printed as PDF, they will be printed in original format (Word or Excel). But we sitll have to print watermark in published documents. Muhimbi can only print watermark in PDF files. How can we accomplish in K2 workflow? Thanks
Hello, I am using K2Field.K2Forms.Controls.SetLanguage but the translation has stopped working.Currently, I have a solution that relies on the SetLanguage control to translate the label's text from K2 controls.The translating is configured with the English language and it's not returning any error message.Checked the "files resources" and SetLanguage DLL and everything is correctly configured.Is there anyone else with the same problem that can explain how to solve it? Thanks in advance.
Anyone have an idea how I could do a rule to copy to the client clipboard?
I am trying to test workfolow webservice, I am getting below error               <h2>401 - Unauthorized: Access is denied due to invalid credentials.</h2>              <h3>You do not have permission to view this directory or page using the credentials that you supplied.</h3>I have access to run the workflow. Please see attached screenshot for my parameters.Any help is appreciated.Thanks
In my workflow in K2 Studio, I'm trying to perform an IF... THEN... function on 30 data fields. Is there a smarter way I can do this than by creating 30 IF... THEN... entries? Ideally, the logic would look like thisIF (DataField == 'true') THEN {DataField = '<b>' + DataField + '</b>'}I'm using K2 Designer and K2 Studio. Thank you!Â
My item view has a file attachment control which stores the file in SQL Server tableSmart Object Property's type is FileDatabase Column data type is XML Problem is after the form is re-opened, a rule on another list view doesn't execute if the file size is more that 85 KB (irrespective of file type). I can see and download the attachment without any issue. Please can someone point out what might be the problem? Why the attachment file size is interfering with list view rule execution? Thank youNitin
Hello K2 Community, I found the post that explains how to clear a searched value in the quick search using jquery. https://community.k2.com/t5/K2-Blackpearl-Forum-Posts/SmartForm-rule-to-clear-Quick-Search-box-in-List-View/td-p/96419 However, I also want to clear the field that is being searched. For example, I am search on field 'Part Number' with a value of 'ICN58160'. the Jquery provided is only clearing out the 'ICN58160'. I also want to clear out 'Part Number' so it defaults back to 'All Fields' <script type="text/javascript">$(document).ready(function(){ $('input[id$="_quickSearchTxt"]').val('');});</script> Can someone provide the id$= for this field? I tried "_quickSearchFld" which didn't work. Or, if you can provide the jquery to clear both that would be even better. I searched the community and didn't see this particular question asked. If it was I apologize, and please provide the link for that. Thanks so much
Again a newbie question, so forgive it on the general forum, but you veterans are a good place to start I hope! We are a very SharePoint focused organisation but we have several other LOB SQL systems that we want to hook into and write back to hence buying K2. Our interaction with LOB systems can wait ... but there is a lot we can do with it in the short term.But I am up against a wall at the moment when someone asks for a fairly simple KT solution (ie: smartforms/workflow) in regard to whether I build this on a SharePoint list as the data source or I use the inbuilt K2 Database source and create the smart object from there instead. My instinct is to use SP as the data source as we can visualise the data captured very easliy in house (infact any SP power user can untilize it and filter etc on the data views and create what views they need, they can roll it up across sites and use it as dashboards using external tools such as Lightning tools). If I use a K2 database source as the smart
Dear All We got a strange case. The users will already download the files after they clicked the logout button. And the file actually was the below image. Anyone know the problem?    Carson
Hello,Our environment is K2 version: 4.7 (4.16) Workspace -> Management Console -> Workflow Server -> Processes -> Project -> Instances In the workspace window, how would I configure the process instances so that someone is notified vi aemail if an error occurs? Thanks.
Firstly is there a way of doing this, as it seems the existing REST broker which is good (when you're dealing with JSON responses) doesn't allow this. For example I'm trying to query https://docs.microsoft.com/en-us/rest/api/storageservices/blob-service-rest-api and MS just use XML in the response, which annoyingly looks like I have to build my own broker to handle. Thanks,Nick
Hi All,I have a editable list view where one column is as 'Drop Down List'. The Drop Down list has set the property as Value (Prod_Key) and Display (Prod_Name). as per my requirement, I am able to use that drop down list to display the product name and while saving it store product key in tjhe table. but the problem which i am facing, after entering the first data for first row, when i am clicking 'Add new row' to add the second record, the selected data of the drop down list of the last row got disaaper and instead of that the list is showing 'SourceCode.Forms.Dropdown.DefaultValue' . it will be nice, if you let me know what should i do to keep the selected value of the drop down list, even after moving to next row for adding. Thanks with Regards,JD
Implementing native paging support in a K2 service broker The problem: I wrote a custom K2 service broker that exposes List methods to retrieve records from a back end system, and return them as results. I had implemented a MaxRecords parameter to be passed to each List method to limit the number of records returned. During testing I noticed that there was a direct relationship between performance, and the number of records being returned. The more records returned, the slower the performance. Another issue with this implementation is that it would be impossible to get to any records beyond the MaxRecords value. For example, if I set MaxRecords to 250, I would never be able to see record # 251 without increasing the MaxRecords value. Enter Paging: I dug around a bit, and found that the ServicePackage property of the ServiceAssemblyBase object exposes some paging properties.Then a light bulb went off. If I have access to that information, I should be able to use it to grab only a page a
Hi all, Is it possible to pass a string array or List<string> to a method ? What kind of Property i need to create ? the SoType.MultiValue property do the job ? if yes, how ?for example i have the following method PassAStringArray, how to declare the Property ?--> (new Property("myStringArray", ??? , SoType.???, new MetaData("my string array", "my string array")) the piece of code i'm using is public DataTable PassAStringArray(string [] myStringArray){  DataTable dt= new DataTable(...) //do something and ... //...add rows ... return dt;}internal virtual SDKObjects.Properties DescribeProperties(){  var props = new SDKObjects.Properties();  //Input Fields  props.Create(new Property("myStringArray", "System.String???", SoType.???, new MetaData("my string array", "my    string array")));  //output fields  //...  return props;}
viewflow could not load system.ewb.webpages.deployment
Hello All, We have few forms that are going to be opened on both, desktops and mobile. The mobile apps will have the tasks and users can select which tasks to open, forms will load and actions will be recorded. My question is is there a way  to accomplish the following? 1- when a user gets an email for a task, can we send 2 links, one for desktop that would open the form in the browser and one for mobile that would open the K2 mobile app?2- if the app opens the form, is there a way to hide few controls/views that would look hideous on mobile (IE list view with lots of columns) I have looked and found that there is a folder called Application Forms under system in the designer, is this where the forms for the applications are stored? if so, how do you set a workflow user task to use 2 forms,  to use both the one here under this folder and the one for the desktop? ( when you run a smart form task, you have to select a single form with a single state) I know this is a long shot, but it's
Hi, I'm installing K2 4.7 blackpearl and smartforms and the installation completed successfully but when I browse to anything, workspace or design I get the "The service is unavailable" error. I have noticed my smartform application pool is stopped and when I start it, it automatically stops itself.I have checked the IIS_IUSRS and the pool account is added.Right now I'm confused on what to check, Please advise.
Hi Gurus, Our production servers basically crashed and could not be recovered so they were rebuilt with same server names and IP Address.Now I have to re-install K2 BlackPearl 4.7 and Smartforms onto it as it was now a new empty machine. I’m connection to the existing K2 database which was also recovered from backups. The Blackpearl installation completes with an error on Installation Health.While smartforms completes the installation with no errors. The Blackpearl Error: Error from controlutil output: RegisterControlTypes Failed: Error Sending BufferAn existing connection was forcibly closed by the remote host I have tried several suggestion and they just not working on my environment. I have removed and re-installed not once, not twice but several times with no luck. I have checked Smartobjects permissions on workspace and they are fine I have tried to check permission of the smartbox and it throws an error (The given key was not present in the dictionary) – Is the a way I can check
Hi, I am having issues with sharepoint K2 integration lately. But I managed to reslove all the issues except for one, after I uninstall and re-install K2 app in site collection.My only issue currently I am having is, whenever I upload a document in library my workflow which supposed to kick off is not working. Other Sharepoint smartobjects were able to communicate with that library and i am able to execute all the methods successfully on that Library.When I looked at hostServer logs, I got the below:0 SharePointRoleProvider.GetContainers: System.Reflection.TargetInvocationException: An unexpected failure was encountered when contacting SharePoint to get information from the group provider "My Group Name": Object reference not set to an instance of an object. ---> System.NullReferenceException: Object reference not set to an instance of an object.at SourceCode.Security.Providers.SharePoint.TempPrincipalParser.get_ExclusionSet()at SourceCode.Security.Providers.SharePoint.Shared.SPCsom
Dear Experts, How to restrict duplicate selection in picker control? From the below example, We need to restrict the user for selecting the mouse for more than 1 time Note: we are in 4.6.6 version. RegardsAmarÂ
I have a list view and i want to remove all the rows displayed in list view in some event. I have found a rule "remove all the selected rows in editanle list view".But, using this rule we dont find any rule to select all the rows  in list view. Using Clear method on the view, the data cleared from list view still being added in database. So , please help me on this.
I've read on the File Attachments; and I've read a few post, but I can't figure out if the file attachment control has the ability to take all the selected files and then save them to a sql database. I've been able to do this with a single file, but I need a solution for multiple files. Not a Sharepoint list, just select multiple files (pdf in this case) and save all to the database.   Â
Hello, How can I add a scroll button to an editable list view.
Hello everyone. I am working on a simple workflow for approving the creation of Users in an application. Basically, a user fills out the form and if the user has manager approval, it will proceed to send an email to IT creating an IT ticket with the form information. If the user does nto have manager approval, the workflow will send an email to the manager to approve the request and proceed with the IT ticket creation (or rejection). Once the worklist is open for the Manager to approve, I get the following error: Unauthorized smartobject Access (screenshot of workflow and error, error below) What could be causing this? My user has admin permissions for the process as well as in the smartobjects security (Workspace).  I tried looking thru the community and various articles but cant find anything I either havent tried or that applies to what I'm experiencing.   --------------------------------------------ErrorUnauthorised SmartObject access•Type: System.UnauthorizedAccessException•So
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.