Todd Babbitt
Todd Babbitt
I am using this and it was a great help to get all this built out. The one issue/complaint I have though is that when I do npm start sometimes...
I know this is old but I am seeing the same thing happen with 5.1.13. I have not yet been able to get additional logging about this but it appears...
Sorry for the delay on this @mikeedwards83 This is the query we are making. var getItems = new GetItemByQueryBuilder() .Query( $"{rootpath}//*[contains(@@name,'{theSearchPhrase}')]"); var clientSetting = this.contentRepository.GetItem(getItems.Options); It seems to only happen...
Another follow up to this. I am seeing all this on Glass Mapper version 5.3.15 as well so may just want to push this to a different issue. However, it...
Yes, that is correct.
serviceCollection.AddTransient(provider => new SitecoreService(Context.Database)); serviceCollection.AddScoped(); serviceCollection.AddScoped(); serviceCollection.AddScoped(); Trying to do some testing to see if changing this resolve the issue. Sadly the issue is hard to reproduce on purpose.
```` [NullReferenceException: Object reference not set to an instance of an object.] Glass.Mapper.Sc.GetItemByQueryOptions.GetItem(Database database) in C:\TeamCity\buildAgent\work\9693a2d38f55a4a\Source\Glass.Mapper.Sc\OptionsGetItem.cs:125 Glass.Mapper.Sc.SitecoreService.GetItem(GetItemOptions options) in C:\TeamCity\buildAgent\work\9693a2d38f55a4a\Source\Glass.Mapper.Sc\SitecoreService.cs:334 Glass.Mapper.Sc.SitecoreService.GetItem(GetItemOptions options) in C:\TeamCity\buildAgent\work\9693a2d38f55a4a\Source\Glass.Mapper.Sc\SitecoreService.cs:318 (Object , Object ) +53 Sitecore.Pipelines.CorePipeline.Run(PipelineArgs...
Currently, on form submission the form values are flushed from the store. I would like to be able to control this as when validating a form this can cause the...
I was working with module this week and ran into an issue with dynamically added form controls. When you do something like this: ``` let checkboxArray = new FormArray([ new...
Ya, I guess that is my point, and maybe I did not explain it well, is that check boxes and forms don't play well together because there is really no...