<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>sprello Discussions Rss Feed</title><link>http://sprello.codeplex.com/discussions</link><description>sprello Discussions Rss Description</description><item><title>New Post: SPrello Web Part not populating</title><link>http://sprello.codeplex.com/discussions/443319</link><description>&lt;div style="line-height: normal;"&gt;Many thanks for the feedback David - very useful. I'll make some time to look properly at this and the 2013 Aysnc - didn't find any problems when I gave it a quick test on 2013 but need to be more thorough.&lt;br /&gt;
&lt;br /&gt;
Cheers...Ryan&lt;br /&gt;
&lt;/div&gt;</description><author>Pentalogic</author><pubDate>Mon, 20 May 2013 07:25:14 GMT</pubDate><guid isPermaLink="false">New Post: SPrello Web Part not populating 20130520072514A</guid></item><item><title>New Post: SPrello Web Part not populating</title><link>http://sprello.codeplex.com/discussions/443319</link><description>&lt;div style="line-height: normal;"&gt;Hey Ryan,&lt;br /&gt;
&lt;br /&gt;
I really appreciate the information.&lt;br /&gt;
&lt;br /&gt;
I used the development tools in Chrome to determine what on the page was throwing an error and found that SharePoint function used in a line of code was encountering an error, line 143 in the WebPart,.js file to be exact.  I think the root cause of this error, from limited research online, is related to the new asynchronous actions SharePoint 2013 implements that weren't present in 2010 or previous versions. Basically, while the function is finding information, another asynchronous function executes and causes this one to encounter an error. To quickly get around this issue I just commented out that line of code and it works perfectly fine.&lt;br /&gt;
&lt;br /&gt;
Just so it's known, I also ran into another issue when I started trying to use a custom view of my list. When this was implemented, I found that line 93 (the same kind of call found in line 143) of WebPart.js was also causing the same behavior, that being the cards would fail to draw or populate. Again commenting out this line eliminates the issue and allows the code to function properly without error and cards to populate from the list.&lt;br /&gt;
&lt;br /&gt;
Looks to me like the source code for WebPart.js would need to be revisited to fully utilize the new asynchronous performance aspects of SharePoint 2013 functions. Something I would like to do but is beyond my technical skill-set and usage needs of the project.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
David&lt;br /&gt;
&lt;/div&gt;</description><author>NI_AES</author><pubDate>Fri, 17 May 2013 17:23:06 GMT</pubDate><guid isPermaLink="false">New Post: SPrello Web Part not populating 20130517052306P</guid></item><item><title>New Post: Is there a way to not display items older than so many days for a category type?</title><link>http://sprello.codeplex.com/discussions/443603</link><description>&lt;div style="line-height: normal;"&gt;Just in case anyone finds it useful:&lt;br /&gt;
&lt;br /&gt;
I got this working by using a custom view for my task list with a custom filter condition written using the &lt;a href="https://spcamlqueryhelper.codeplex.com/" rel="nofollow"&gt;SP CAML Query Helper&lt;/a&gt;.  This isn't as easy as I thought it would be as it involves using the SP Designer to update the view, as the Filter GUI tools for an SP list don't let you create grouped filter conditions like this.&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;Query&amp;gt;
    &amp;lt;Where&amp;gt;
        &amp;lt;Or&amp;gt;
            &amp;lt;In&amp;gt;
                &amp;lt;FieldRef Name=&amp;quot;Status&amp;quot;/&amp;gt;
                &amp;lt;Values&amp;gt;
                    &amp;lt;Value Type=&amp;quot;Text&amp;quot;&amp;gt;Not Started&amp;lt;/Value&amp;gt;
                    &amp;lt;Value Type=&amp;quot;Text&amp;quot;&amp;gt;In Progress&amp;lt;/Value&amp;gt;
                    &amp;lt;Value Type=&amp;quot;Text&amp;quot;&amp;gt;Deferred&amp;lt;/Value&amp;gt;
                &amp;lt;/Values&amp;gt;
            &amp;lt;/In&amp;gt;
            &amp;lt;And&amp;gt;
                &amp;lt;Geq&amp;gt;
                    &amp;lt;FieldRef Name=&amp;quot;Modified&amp;quot;/&amp;gt;
                    &amp;lt;Value Type=&amp;quot;DateTime&amp;quot;&amp;gt;
                        &amp;lt;Today OffsetDays=&amp;quot;-2&amp;quot;/&amp;gt;
                    &amp;lt;/Value&amp;gt;
                &amp;lt;/Geq&amp;gt;
                &amp;lt;Eq&amp;gt;
                    &amp;lt;FieldRef Name=&amp;quot;Status&amp;quot;/&amp;gt;
                    &amp;lt;Value Type=&amp;quot;Text&amp;quot;&amp;gt;Completed&amp;lt;/Value&amp;gt;
                &amp;lt;/Eq&amp;gt;
            &amp;lt;/And&amp;gt;
        &amp;lt;/Or&amp;gt;
    &amp;lt;/Where&amp;gt;
&amp;lt;/Query&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

The catch to this method is that if items are dragged into the &amp;quot;Completed&amp;quot; column (through Sprello), the adjacent “cards” will have their task items updated to change the Order field and thus update their Modified date, meaning they won't disappear for another 3 days.  To work around this, you'd have to only mark items Completed by updating them directly in the list.&lt;br /&gt;
&lt;/div&gt;</description><author>rhartka</author><pubDate>Tue, 14 May 2013 20:15:18 GMT</pubDate><guid isPermaLink="false">New Post: Is there a way to not display items older than so many days for a category type? 20130514081518P</guid></item><item><title>New Post: Is there a way to not display items older than so many days for a category type?</title><link>http://sprello.codeplex.com/discussions/443603</link><description>&lt;div style="line-height: normal;"&gt;Hi Rhartka - thats something that you can do with a SharePoint View (though its not that obvious I'll admit) - then tell SPrello to use that view&lt;br /&gt;
&lt;br /&gt;
As this question is a general SharePoint question (not specific to SPRello) I can't really help with it here (otherwise the volume of support would get out of control and codeplex doesn't put food on the table ;)&lt;br /&gt;
&lt;br /&gt;
If you post your question here you will get a good answer &lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://sharepoint.stackexchange.com/" rel="nofollow"&gt;http://sharepoint.stackexchange.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Make sure its generic enough about creating a SharePoint view rather than specific to SPrello otherwise they will just send you back here ;)&lt;br /&gt;
&lt;br /&gt;
Cross post a link to your q and if someone doesn't help out in a day or two I'll see what I can do!&lt;br /&gt;
&lt;br /&gt;
Cheers...Ryan&lt;br /&gt;
&lt;/div&gt;</description><author>Pentalogic</author><pubDate>Tue, 14 May 2013 15:00:52 GMT</pubDate><guid isPermaLink="false">New Post: Is there a way to not display items older than so many days for a category type? 20130514030052P</guid></item><item><title>New Post: Is there a way to not display items older than so many days for a category type?</title><link>http://sprello.codeplex.com/discussions/443603</link><description>&lt;div style="line-height: normal;"&gt;Hello!  Sprello has been a wonderful addition to SP for us to track what a very small team is working on.  I have a question about it using it with a simple Task List.  We are using the default Status field (Not Started, In Progress, Completed, Deferred) to organize tasks with cards.  The issue we're running into is the Completed items are starting to pile up.  Is there a way to tell Sprello not to display Completed cards that are older than so many days?  I tried configuring a view in the list but I couldn't find that capability with a view either.&lt;br /&gt;
&lt;/div&gt;</description><author>rhartka</author><pubDate>Tue, 14 May 2013 14:35:34 GMT</pubDate><guid isPermaLink="false">New Post: Is there a way to not display items older than so many days for a category type? 20130514023534P</guid></item><item><title>New Post: SPrello Web Part not populating</title><link>http://sprello.codeplex.com/discussions/443319</link><description>&lt;div style="line-height: normal;"&gt;Hi David,&lt;br /&gt;
&lt;br /&gt;
The only thing I can do to help here is give a few pointers - you've made large changes to the project (VS2012/.NET4.5 etc) so the problem could be anywhere.&lt;br /&gt;
&lt;br /&gt;
I would start looking into this by using the IE Developer toolbar to find out what JavaScript is erroring (and also try stepping through the functions line by line) and what the difference is between the normal/edit modes - that will give you some clues.&lt;br /&gt;
&lt;br /&gt;
Good luck!...Ryan&lt;br /&gt;
&lt;/div&gt;</description><author>Pentalogic</author><pubDate>Mon, 13 May 2013 10:23:20 GMT</pubDate><guid isPermaLink="false">New Post: SPrello Web Part not populating 20130513102320A</guid></item><item><title>New Post: SPrello Web Part not populating</title><link>http://sprello.codeplex.com/discussions/443319</link><description>&lt;div style="line-height: normal;"&gt;Hello,&lt;br /&gt;
&lt;br /&gt;
I recompiled the SPrello solution using VS 2012 to target version 4.5 of the .NET Framework and now everything builds and deploys fine.&lt;br /&gt;
&lt;br /&gt;
However; I've now found that setup and configuration of the SPrello Web part on my Sharepoint 2013 sites goes fine and everything populates from my Custom List created but when I save the site after configuring the SPrello Web Part, the Web Part shows on the site page but does not populate with cards. Also, selecting the Add New Item also shows no action. Again, if I select to Edit the site, the Web Part then shows properly with the expected cards corresponding to my list.&lt;br /&gt;
&lt;br /&gt;
This is not the case if a Calendar Web Part is also on the page, if this item also exists, then the cards do populate on the SPrello Web Part and the Add New Item option pops up the expected window for adding a new card.&lt;br /&gt;
&lt;br /&gt;
I wonder if this has to do with a rendering issue or something with the Web Part. I found in the source code that the card objects are set with a default size of 200x600 pixels if I remember correctly. Can anyone shed some light as to what may cause this behavior or specific sections or components of the source I should investigate to determine the root cause?&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
David&lt;br /&gt;
&lt;/div&gt;</description><author>NI_AES</author><pubDate>Sat, 11 May 2013 05:56:26 GMT</pubDate><guid isPermaLink="false">New Post: SPrello Web Part not populating 20130511055626A</guid></item><item><title>New Post: Error : Version conflict.</title><link>http://sprello.codeplex.com/discussions/433740</link><description>&lt;div style="line-height: normal;"&gt;Hi Thorizan - thanks for reporting that but its a very strange error that I've not been able to re-produce nor has anyone else reported the same so my first instinct is to wonder if the site collection thing is a red herring? (I just can't begin to imagine what would cause what your describing - site collections are totally independent of each other).&lt;br /&gt;
&lt;br /&gt;
Can you take another look at this to determine if it may be something else.&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;
Can you remove SPRELLO and then upload/activate it to another site collection - (one that is currently failing) - if its anything to do with the order then this one should now work and the others fail.&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;
On the site collections that its failing on do you have any workflow/event receivers/auditing running that would make a modification to a list item after it was submitted&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;
Are the list types and setups (including things like versioning/approval) identical in the failing and working site collections?&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>Pentalogic</author><pubDate>Mon, 25 Feb 2013 10:07:53 GMT</pubDate><guid isPermaLink="false">New Post: Error : Version conflict. 20130225100753A</guid></item><item><title>New Post: Error : Version conflict.</title><link>http://sprello.codeplex.com/discussions/433740</link><description>&lt;div style="line-height: normal;"&gt;This is an excellent Solution, but I seem to have one issue with it.&lt;br /&gt;
&lt;br /&gt;
Only on the original site collection to which I uploaded and activated this solution can I move multiple items without the need to refresh my screen between each.&lt;br /&gt;
&lt;br /&gt;
All others behave like this:&lt;br /&gt;
&lt;br /&gt;
The first item I move is fine (&amp;quot;Update succeeded...&amp;quot;).&lt;br /&gt;
Every item after that, however, is not (&amp;quot;Error : Version conflict.&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
I am perplexed.&lt;br /&gt;
&lt;br /&gt;
Any assistance would be greatly appreciated.&lt;br /&gt;
&lt;br /&gt;
Thank you.&lt;br /&gt;
&lt;/div&gt;</description><author>Thorizan</author><pubDate>Wed, 20 Feb 2013 00:23:34 GMT</pubDate><guid isPermaLink="false">New Post: Error : Version conflict. 20130220122334A</guid></item><item><title>New Post: SPrello &amp; List View</title><link>http://sprello.codeplex.com/discussions/428359</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I really love this webpart, very easy and nice to use.&lt;/p&gt;
&lt;p&gt;As an additional development it would be amazing if it could include a filter/bread crumb that shows the different views availble from the SP List. This would then allow the user to switch between the differnt views of a list without having to create a page
 and webpart for each view.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>JonWithers</author><pubDate>Thu, 03 Jan 2013 10:00:38 GMT</pubDate><guid isPermaLink="false">New Post: SPrello &amp; List View 20130103100038A</guid></item><item><title>New Post: SPrello and Office 365</title><link>http://sprello.codeplex.com/discussions/399597</link><description>&lt;div style="line-height: normal;"&gt;This discussion has been copied to a work item. Click &lt;a href="http://sprello.codeplex.com/workitem/19"&gt;here&lt;/a&gt; to go to the work item and continue the discussion.&lt;/div&gt;</description><author>Pentalogic</author><pubDate>Wed, 17 Oct 2012 11:34:10 GMT</pubDate><guid isPermaLink="false">New Post: SPrello and Office 365 20121017113410A</guid></item><item><title>New Post: SPrello and Office 365</title><link>http://sprello.codeplex.com/discussions/399597</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Has anyone gotten SPrello working on Office 365?&amp;nbsp; I'm getting an error trying to active the WSP.&amp;nbsp; The error is &amp;quot;This solution references prohibited member 'System.Reflection.Assembly.GetCallingAssembly' and cannot be used on this site collection.&amp;quot;&amp;nbsp;
 I have an Office 365 E1 account.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Michael&lt;/p&gt;
&lt;/div&gt;</description><author>michmill</author><pubDate>Tue, 16 Oct 2012 14:08:48 GMT</pubDate><guid isPermaLink="false">New Post: SPrello and Office 365 20121016020848P</guid></item><item><title>New Post: Keep it all in the EditorPart</title><link>http://sprello.codeplex.com/discussions/352616</link><description>&lt;div style="line-height: normal;"&gt;This discussion has been copied to a work item. Click &lt;a href="http://sprello.codeplex.com/workitem/17"&gt;here&lt;/a&gt; to go to the work item and continue the discussion.&lt;/div&gt;</description><author>Pentalogic</author><pubDate>Fri, 15 Jun 2012 17:07:01 GMT</pubDate><guid isPermaLink="false">New Post: Keep it all in the EditorPart 20120615050701P</guid></item><item><title>New Post: Keep it all in the EditorPart</title><link>http://sprello.codeplex.com/discussions/352616</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;&lt;span style="font-family:'Segoe UI','sans-serif'; color:black; font-size:10pt"&gt;Thought I would put this out there. I don&amp;rsquo;t think that this SPrello tool should go in a direction that requires a lot of setup by the user. I think this tool should remain
 independent from any list or library that it is used for. I bring this up for two reasons. First it already started down that path with the &amp;quot;order&amp;quot; column. In order to use ordering it is required that a user setup a order column yet none of that is explained
 much to the users. Secondly the thought of color coding the cards would be more easily accomplished via calculated columns and custom lists. This raises the entry level for the tool. Meaning users now have to have a good understanding of SPrello and SharePoint
 column types and how it all works together. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:'Segoe UI','sans-serif'; color:black; font-size:10pt"&gt;My suggestion is simple, keep all of it in the EditorPart for the WebPart. Don&amp;rsquo;t require any setup by the user in order to use the webpart. Make it easy on the user. An
 example would be using drop down combo boxes for the existing configurations instead of relying on the user to type the correct information in.&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>zergcow</author><pubDate>Tue, 17 Apr 2012 21:36:41 GMT</pubDate><guid isPermaLink="false">New Post: Keep it all in the EditorPart 20120417093641P</guid></item></channel></rss>