Complete our Nintex Community Survey
Find resources, discussions, and troubleshooting tips to design and manage workflows and business applications with K2 blackpearl.
Recently active
Hi, I'm seeing issues with our SmartObject tester in K2 5+, I want to install a FileService broker, but our PROD version is acting up. Environments:DEV - 4.7PROD - A Clean install of 4.7 then upgraded to 5+. DEV - 4.7 No issues Any ideas? This SmartObject tester is on my local machine which was installed with 4.7 as a side note. Thanks,
Has anyone ever tried to click an attachment control in the background?I'm finding it very difficult. Normally, if it was just a button, a simple jquery that looks like this would do the trick: $('[name="ButtonName"]').click();however, apparently the File control isn't just a button, it's DIV with a table, rows, a label. I've tried making Javascript click all sorts of elements within the file attachment control but it doesn't seem to trigger the file download.I have attached the screenshot that shows what a file attachment control is made up of.If anyone has any ideas I'd love to hear them, thank you!!
I have a list view where instructors click the add list view button to add a new student. The student comes into a dropdown and the entry normally works fine. If the instructor doesn't add someone, but instead clicks on the add new row button twice, I get a blank row. My question is: How do I best prevent the blank row problem. I was thinking of adding a color to the blank row, but I am getting confused in add/edit row values and display row values. I would like to add some sort of conditional formatting on the field, so the blank rows show up with some color, and the other rows with values are normal. The blank rows which are added are very, very tiny and hard to see on the form. I can skip them when I go to write out valid data to the smartbox object, but it still leaves blank rows on the screen if I run a validation, and they are so hard to see. Suggestions? I don't want remote services, but trying to find an example of building this routine. Thanks! BKlaege
I am trying to register the drag-and-drop control from the K2 Martket Place. I've copied the DragAndDropControl.dll to the Designer and Runtimes bin directory. I'm trying to register the assembly using this command. controlutil.exe register -assembly:“C:Program Files (x86)K2 blackpearlK2 SmartForms DesignerBinDragAndDropControl.dll” I get an error saying "The given path's format is not supported". at System.Security.Permissions.FileIOPermission.EmulateFileIOPermissionChecks It appears that I don't have security to do this function. But the account I'm using is a special account created when the K2 enviornment was built. (I didn't build the K2 environment.) Has anyone ever seen this message? And knows what it's telling me?
I have a list created by a smartobject which is integrated with SP on prem. Once an item has been approved, I want t take certain data elements from that smartobject and added it to a SharePoint Calendar. I have no idea where to start for this last part. I am running version 4.7 at the moment and my SP is 2013
Although I've used stored procedures for execute commands against the database, this is the first time I'm using one for a list method. Basically, I want it to query the data slightly based on whether or not they're searching for completed records (<> 1) or incomple records (=1). When I try to create the Smart Object, however, it gives me two sets of properties UnitID, GroupID, UnitID(1), GroupID(1). That doesn't work... Anyway, my SPROC is as follows. Anyone have any thoughts? Rob ALTER PROCEDURE [dbo].[Group_aggregated_sproc_2]@Searchtype intASBEGIN-- SET NOCOUNT ON added to prevent extra result sets from-- interfering with SELECT statements.SET NOCOUNT ON;-- Insert statements for procedure hereif @searchtype = 1 beginselect UnitID, GroupID from recon_work_itemswhere (currentstatus = 1 or currentstatus > 20)group by UnitID, GroupIDend elseif @searchtype <> 1beginselect UnitID, GroupID from recon_work_itemswhere currentstatus between 2 and 20group by UnitID, Gr
I have a people picker with more then one user ,when i click submit on the form i want it to create an individual item in the list for each user in the picker filed? currently it creates one item with all the users.i want an item for each user on to the list.achived this using javascript presave() method but want to know its possiblilty in k2?
Hi All, is there a way to remove some spaces between the radiobutton list values? Thanks
Running from previous versions of Visual Studio / k2 4.6.9 and then upgrading, we had no problem running K2 with vs2015. Now on a new system with a fresh install, k2 REFUSES to play ball with 2015 community version. Is there any reason for this?
This is driving me nuts. I cannot drag and drop anything from Context Brower. All I see a list of users. I want to be able to remove permissions dynamically. Help document clearly says, you can do it.https://help.k2.com/onlinehelp/K2ForSharePoint/UserGuide/4.7/default.htm#Thin_Client_Wizards/Documents_Wizards/Remove_Doc_Perm/Remove_Doc_Perm.htm Please see attached. What I am missing? Or this is a bug?
Hello everyone, I am currently lookinginto account create processes using blackpearl, AD and Exchange, we have business case wehereby an account needs to be created and temporarily disabled until closer to the new employee's start date. I noticed there were options to disable both an account and a mail box in their respective events, however, there doesn't seem to be options to enable either the account or the mailbox in the same wizards. Is this by design or am I missing something? Thanks in advance
Hi, I have to pre-populate user's address from Active Directory on K2 SmartForm. I am using GetUserDetails from AD User SmartObject (Active Directory Service2). Everithing works fine excluding GetUserDetails method does not return Zip with address. How to retrieve Zip code for the user? I need full user's postal address. Regards, Oleg
Hi, I have a smartobject in my K2(4.7) smartbox which will store the file attachments. Now, in addition to that i want to upload these files to a sharepoint 2013. What are all the things required for this requirement?Is K2 for sharepoint must needed for this?
Hi, Normally i use a Javascript (Data label + expression) in View and Form tables to change the Table background as follows: <script type="text/javascript">$(document).ready(function() {$("span[name='TableCSS']").closest('table').css({'border':'darkgrey 1px solid', 'background':'#White'});})</script> But I simply cannot get the above to work when the Table in in an Editable List. The Tables above the Editable List have a grey background, I want to change it to white, but the above script will not apply it. I have put the data lable inside the Table and no matter where i place it, the table background remains Grey. As mentioned, same script works on Item Views and Forms, just won't work with List/editable View. I don't want to touch the CSS templates etc and prefer the Javascript method. Any ideas how why it isn't working? Thanks
We have a Smartbox drop down list which is populated from a table query. The list contains a group of students for a class. We have set up an editable list where a person can select each individual student to take an exam. Can we add a control to 'Select All' the students and add them to the test form? I am looking into using the for/next logic, but not sure how to use this, and I can't find a clear example; at least for me. If I were programming this I would save all members in the table collection to an array, then parse through them one at a time to add them to my new list. After they would all be added, there is another form button to write them out with the form. I would need some screen shots of rules, or routines (an example); if I were to get this to work. Thanks! Any help is appreciated; it will save some time for entering information.
Using the answer from the post above; if I have a process escaltion that uses a go to activity outcome, where does the line go? I need this escaltion to kick in at the process level. For me this does not require a line because literally any activity could be hosting the workflow at the time of escaltion. In this instance do I just draw a line from "Start" activity or do I do a line from each activity to the failure activity? Thanks in advance
I have created custom contol like below. Custom Control Code(TestCustom.cs)using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;//SourceCode.Forms.Controls.Web.SDK.dll, located in the GAC of the smartforms server or in the bin folder of the K2 Designer web siteusing SourceCode.Forms.Controls.Web.SDK;using SourceCode.Forms.Controls.Web.SDK.Attributes;using System.Configuration;using System.Net;using System.IO;using System.Web.UI.HtmlControls;namespace Mpa.Procurement.K2.CustomSmartFormControl.CustomSmartFormServerControl{ [ControlTypeDefinition("Mpa.Procurement.K2.CustomSmartFormControl.CustomSmartFormServerControl.TestCustom_Definition.xml")] public class TestCustom : BaseControl { private StringBuilder _htmlContent = new StringBuilder(); public TestCustom() : base("div") { } protected override void OnInit(EventArgs e) { Page.Response.Cache.SetCachea
Hi, Just curious, is there a specific way to backup the K2 DB (on local Server K2 DB) using SQL Management Studio, if so what are the steps and what options should be ticked? I am about to install a Fixpack and just want an extra safety net (already have other safety nets), but backing up the DB locally is something i wanna try as well. A step by step guide to create the backup via SQL Management Studio and which options to tick would be great. Thanks
Hi community, I am facing a situation where i am supposed to migrate users from domain AAA to domain BBB, but instead of changing the domain under K2.Server.Actioner, i accidently created another record. Now i am seeing K2:AAAuser and K2:BBBuser. 1. What is the impact of having both records inside K2.Server.Actioner ? 2. What would happen if K2:AAAuser is updated to K2:BBBuser and there are 2 records of K2:BBB in K2.Server.Actioner?3. Which other tables in K2 database uses the ID from K2.Server.Actioner and would need to update and change those task's ID from K2:AAAuser to K2:BBBuser ? Thanks!
Hi All,I've run into an issue on our site where users are unable to post comments on our K2 blog posts. The comment "Submit" button on each of the posts doesn't do anything when selected. No errors or anything, it just seems like an unclickable image. I've switched to one of the default website themes and tested it but the same thing is happening so the issue doesn't seem to be related to our theme. Here's the blog: https://www.ecompmarketing.com/seo-blog/ Any ideas or help would be greatly appreciated!
Hello All (Caution Newbie!), I am trying to add 3 columns to a table and to have those 3 columns reflected in my SmartObject for use on a form. I have moddified my table (the easy part!) in the database.In SmartObject Tester app, I refreshed the Service Instance and the new columns are visible in my Table Poperties and List Method. But....The smartobject associated with the table in the ServiceInstance does not return the data from the new columns when I run the "List" method.The new columns are visible in the Properties of my smartobject.But,if I expand out the List method, the new columns are NOT visible in the Properties of the List method. I've clicked on "Refresh SmartObject" on the Smartobject shown in the Tester app, but the new columns do not appear on the List method. Q: Is there something else that I need to do to get my SmartObject to realize that there are three new propertes in the Servive Instance? Thank you,-tomas
Hello, We have an activity which creates PDF static copy of form and saves it to sharepoint list. But the problem is, sharepoint does not allow all the users to upload the document. Due to security reasons, we do not want to give access to sharepoint list to all the users.Is there any way we can start workflow/activity as k2 Admin ? We tried the following method:1.Going to service tester2.Edit the service instance.3. Using different authentication mode. But this change will reflect in all the workflow. And we do not want to start all the workflows with same user. Appriciate any help, thank you.
I've got a List View on a SmartForm, and I don't need headers on the columns because of how my data is set up. I can remove the text label from the headers, but I can't figure out how to get rid of the solid horizontal bar that displays at the top of the View where the headers would go.Is this possible?
Originator has left our organization. There are several workflow instances that were originated by him. Upon final approval, workflow sends email to originator. For this, I am using "Originator E-mail" from Workflow Context. Since originator is gone, this step will fail as email address is invalid. Is there any way we can change "Originator E-mail" to a valid email address so workflow doesn't abort? Thanks
Hello Everyone,Sorry if this has already been covered, still getting used to the new interface! I am trying to collate results from list mehods in an email event in k2studio and I'm having issues. I have to return 3 columns for list method which for some reason doesn't seem possible as I can't choose more than one return property in the list method. Ok so that sucks a bit I guess I'll have to do 3 list methods but now I cant get that to look in any way legible because I can insert HTML between return results. Anyone done this or have any suggestion as to how to get around it? Thanks in advance
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.