RE:User Last Login Date
FroggEyeHi Jan, sorry to bring the old post back to life but I'm back to this requirement and have learned quite a bit since the last post and was able to get it working with a few simple lines of code...
View ArticleRE:How do I update a field when using DocumentEvents.Update.Before.
ndeych-gmailHi,Were you able to solve your issue? I am having the same problem and was wondering if you figured it out.Thanks!Natalie
View ArticleRE:How do I update a field when using DocumentEvents.Update.Before.
ndeych-gmailI was able to get it to work for update using WorkflowEventsin init() WorkflowEvents.SaveVersion.Before += Update_Index;void Update_Index(object sender, WorkflowEventArgs...
View ArticleRE:GetPageInfoForUrl
beau.cowan-rrpartnersThank you your help. I was able to figure out how to use my original solution after looking into what an "out" actually does.And of course, after trying to figure out the rest of...
View ArticleKey Value pair
FroggEyeIs there a built-in method I could use to parse and store key/value pairs entered in a textbox?For instance:1;Name 12;Name 23;Name 3I want to parse those values into key/values but how do I...
View ArticleRE:Key Value pair
kentico_martind2Hello FroggEye,Actually no method is available for that but you can simply create your own... but a whole parsing is explicitly "primitive".The values are separated by semicolumns and...
View ArticleRE:Filter on Document Type w/o Properties
kentico_martind2Hi FroggEye,You can create a Folder document type which has no properties. But I don't what is the purpose of that filter, what do you want to achieve?Best regards,Martin Danko
View ArticleRE:Filter on Document Type w/o Properties
FroggEyeThanks Martin.I was looking to be able to use the built-in filtering without having to create my own custom filter control but its evident to me now that there need to be properties defined in...
View ArticleRE:Key Value pair
FroggEyeAgain, thanks Martin. Was simply looking to use the API for something I assumed you might already be doing.
View ArticleQuery Repeater Nested Repeaters Where condition
jilheu-manaproHi I have a problem with a queryrepeater in which i need to pass the WhereCondition, I already try to do like proposed solution in that Nested Repeaters Where condition but it doesn't...
View ArticleRE:Query Repeater Nested Repeaters Where condition
kentico_jurajoHello,It seems you are using the query repeater web part and not the control - only controls can be nested.You should use "<cms:QueryRepeater..."Also, have you tried setting the nested...
View ArticleIntegration Bus and Session State
FroggEyeI'm working on a connector that sends updates to web services upon a User being updated. I have a session variable that is stored and updated regularally but is read as a null value when the...
View ArticleRE:Query Repeater Nested Repeaters Where condition
jilheu-manaproHello Juraj,I did what do you say, and the site gives me the next error:[CMSDataProperties.LoadTransformation]: Type 'CMS.Controls.QueryRepeater' does not have a public property named...
View ArticleInfoDataSet.Items.Add() leaves empty DataSet
FroggEyeI have a InfoDataSet<MediaFileInfo> object I'm adding items to and all works great. Problem I'm having is when I return he InfoDataSet object an bind it to a MediaView control, the...
View ArticleRE:Filter on Document Type w/o Properties
kentico_martind2Hi Brenden,So in general, as I understand your requirements, you have 2 options:1. You can work with the data in the abstract way... to handle data just via the code, creating some...
View ArticleRE:Query Repeater Nested Repeaters Where condition
kentico_jurajoHi,Indeed, the control does not have this property - checking the code, it should not be necessary to have it. Could you please use the control instead of the web part and set its...
View ArticleRE:Hash authentication in REST request
kentico_zdenekcHello Natalie,As we discussed in the emails too, the problem is that the authentication hash is formed from the complete URL including the querystring parameters, therefore that dynamic...
View ArticleRE:Integration Bus and Session State
kentico_josefdHello,Unfortunately, it is not possible to access the context properties, like session and session variables, because the tasks are processed asynchronously.Regards,Josef Dvorak
View ArticleRE:InfoDataSet.Items.Add() leaves empty DataSet
kentico_jurajoHi,I am afraid but current version was not designed for this - so this approach won't work.You need to either import the data to the DataSet as DataRow or, use classic ASP.Net repeater...
View ArticleRE:InfoDataSet.Items.Add() leaves empty DataSet
FroggEyeWell not the exact answer I was looking for but I guess I'll deal with it. Thanks for the help.
View Article