K2 blackpearl 4.6.4 has just been released which includes the following new features and enhancements: SharePoint Copy and Move When moving, copying or updating a document or list item in SharePoint it is now possible to preserve the existing SharePoint document or List Item’s MetaData and version history when using the SharePoint Document Wizard or… Continue reading K2 4.6.4 Released
Tag: K2 blackpearl
K2 Task List – iOS App
So our company have finally pushed out a policy to allow our iOS devices to connect to our corporate wifi, apart from the obvious benefits in intranet web access I am very excited about coupling K2 smartforms and the K2 mobile task list to allow users to approve items on the go, this will become… Continue reading K2 Task List – iOS App
K2 SmartObjects and Attachments
The K2 ServiceObject for SQL does not support some field types, one of them being varbinay, so to upload attachments you need to use nvarchar(MAX) as your database column type for the K2 ServiceObject to become aware of it. The reason for this is because K2 serialises attachments as XML strings and there for required… Continue reading K2 SmartObjects and Attachments
K2 ServiceObject with File Property
Some code snippets to help FileProperty fpropData = new FileProperty(“FileData”, new MetaData(), String.Empty, String.Empty); fpropData.MetaData.DisplayName = “File Data”; fpropData.MetaData.Description = “File Data”; this.Properties.Add(fpropData); public static object ToFilePropertyValue(string propName, string filename, byte[] content) { return (new FileProperty(propName, new MetaData(), filename, Convert.ToBase64String(content))).Value; } dr[“File”] = Helper.ToFilePropertyValue(“File”, “foobar.dat”, {foobar byte[]});