<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>SPrello</title><link>http://sprello.codeplex.com/project/feeds/rss</link><description>An interface for organising items in SharePoint Lists - inspired by http&amp;#58;&amp;#47;&amp;#47;trello.com</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>Created Issue: Strange thing happen [21]</title><link>http://sprello.codeplex.com/workitem/21</link><description>Hi,&lt;br /&gt;&lt;br /&gt;We have Sharepoint 2010 installed....  We have Sprello installed and configured on partial custom list... Task list where we had some column and change title of others...  when we drag and drop Item... it seem to work fine... but if I refresh the page... Sprello change the statut column, type as&amp;#58; String to number which represent the order of the string field&lt;br /&gt;</description><author>stedes</author><pubDate>Wed, 27 Mar 2013 12:13:38 GMT</pubDate><guid isPermaLink="false">Created Issue: Strange thing happen [21] 20130327121338P</guid></item><item><title>Closed Issue: Sprello is undefined in version 1.0.3.0 [20]</title><link>http://sprello.codeplex.com/workitem/20</link><description>I installed Sprello &amp;#40;v. 1.0.3.0&amp;#41; on SP2010, a few days ago but have not been able to get it to work.&lt;br /&gt;&lt;br /&gt;I created a web part page and added Sprello to the page as the only web part.  After I configured the part, all icons on the ribbon went gray so I was unable to click on the Close Edit button.  If I delete Sprello, the ribbon comes back.  If, instead of deleting Sprello, I navigate away from the page and then navigate back to it, Sprello appears on the page, but it is empty.  Exposing the console window, and clicking on the ribbon to see the page options, I get the &amp;#34;SCRIPT5009&amp;#58; &amp;#39;Sprello&amp;#39; is undefined&amp;#34; error that, according to the comments on the Documentation page, was fixed with release 1.0.1.0.  I also do not get the ribbon, so the page is uneditable, until I delete Sprello.&lt;br /&gt;&lt;br /&gt;I followed the example in the video as I configured the list.  I used the standard Issues list, with the following configuration&amp;#58;&lt;br /&gt;List&amp;#58; Issues&lt;br /&gt;Category Field&amp;#58; Priority&lt;br /&gt;Order Field&amp;#58; Order&lt;br /&gt;Title Field&amp;#58; Title&lt;br /&gt;Detail Field&amp;#58; Description&lt;br /&gt;On card click show&amp;#58; Display_Form&lt;br /&gt;I am not allowing adding&lt;br /&gt;&lt;br /&gt;Priority is a choice field and order is a numeric field.&lt;br /&gt;&lt;br /&gt;Any assistance would be greatly appreciated.&lt;br /&gt;Comments: Deployment problem - reinstall fixed.</description><author>Pentalogic</author><pubDate>Thu, 21 Mar 2013 15:36:43 GMT</pubDate><guid isPermaLink="false">Closed Issue: Sprello is undefined in version 1.0.3.0 [20] 20130321033643P</guid></item><item><title>Commented Issue: Sprello is undefined in version 1.0.3.0 [20]</title><link>http://sprello.codeplex.com/workitem/20</link><description>I installed Sprello &amp;#40;v. 1.0.3.0&amp;#41; on SP2010, a few days ago but have not been able to get it to work.&lt;br /&gt;&lt;br /&gt;I created a web part page and added Sprello to the page as the only web part.  After I configured the part, all icons on the ribbon went gray so I was unable to click on the Close Edit button.  If I delete Sprello, the ribbon comes back.  If, instead of deleting Sprello, I navigate away from the page and then navigate back to it, Sprello appears on the page, but it is empty.  Exposing the console window, and clicking on the ribbon to see the page options, I get the &amp;#34;SCRIPT5009&amp;#58; &amp;#39;Sprello&amp;#39; is undefined&amp;#34; error that, according to the comments on the Documentation page, was fixed with release 1.0.1.0.  I also do not get the ribbon, so the page is uneditable, until I delete Sprello.&lt;br /&gt;&lt;br /&gt;I followed the example in the video as I configured the list.  I used the standard Issues list, with the following configuration&amp;#58;&lt;br /&gt;List&amp;#58; Issues&lt;br /&gt;Category Field&amp;#58; Priority&lt;br /&gt;Order Field&amp;#58; Order&lt;br /&gt;Title Field&amp;#58; Title&lt;br /&gt;Detail Field&amp;#58; Description&lt;br /&gt;On card click show&amp;#58; Display_Form&lt;br /&gt;I am not allowing adding&lt;br /&gt;&lt;br /&gt;Priority is a choice field and order is a numeric field.&lt;br /&gt;&lt;br /&gt;Any assistance would be greatly appreciated.&lt;br /&gt;Comments: Re-installed and working.  Thanks for the help.</description><author>rcspusr</author><pubDate>Thu, 21 Mar 2013 14:46:32 GMT</pubDate><guid isPermaLink="false">Commented Issue: Sprello is undefined in version 1.0.3.0 [20] 20130321024632P</guid></item><item><title>Commented Issue: Sprello is undefined in version 1.0.3.0 [20]</title><link>http://sprello.codeplex.com/workitem/20</link><description>I installed Sprello &amp;#40;v. 1.0.3.0&amp;#41; on SP2010, a few days ago but have not been able to get it to work.&lt;br /&gt;&lt;br /&gt;I created a web part page and added Sprello to the page as the only web part.  After I configured the part, all icons on the ribbon went gray so I was unable to click on the Close Edit button.  If I delete Sprello, the ribbon comes back.  If, instead of deleting Sprello, I navigate away from the page and then navigate back to it, Sprello appears on the page, but it is empty.  Exposing the console window, and clicking on the ribbon to see the page options, I get the &amp;#34;SCRIPT5009&amp;#58; &amp;#39;Sprello&amp;#39; is undefined&amp;#34; error that, according to the comments on the Documentation page, was fixed with release 1.0.1.0.  I also do not get the ribbon, so the page is uneditable, until I delete Sprello.&lt;br /&gt;&lt;br /&gt;I followed the example in the video as I configured the list.  I used the standard Issues list, with the following configuration&amp;#58;&lt;br /&gt;List&amp;#58; Issues&lt;br /&gt;Category Field&amp;#58; Priority&lt;br /&gt;Order Field&amp;#58; Order&lt;br /&gt;Title Field&amp;#58; Title&lt;br /&gt;Detail Field&amp;#58; Description&lt;br /&gt;On card click show&amp;#58; Display_Form&lt;br /&gt;I am not allowing adding&lt;br /&gt;&lt;br /&gt;Priority is a choice field and order is a numeric field.&lt;br /&gt;&lt;br /&gt;Any assistance would be greatly appreciated.&lt;br /&gt;Comments: It sounds like the web part was not deployed correctly - that file should be put in there automatically by SharePoints Timer&amp;#47;Sandbox service.&amp;#10;&amp;#10;The only thing I can suggest is to remove Sprello and then try re-installing.</description><author>Pentalogic</author><pubDate>Thu, 21 Mar 2013 08:30:23 GMT</pubDate><guid isPermaLink="false">Commented Issue: Sprello is undefined in version 1.0.3.0 [20] 20130321083023A</guid></item><item><title>Commented Issue: Sprello is undefined in version 1.0.3.0 [20]</title><link>http://sprello.codeplex.com/workitem/20</link><description>I installed Sprello &amp;#40;v. 1.0.3.0&amp;#41; on SP2010, a few days ago but have not been able to get it to work.&lt;br /&gt;&lt;br /&gt;I created a web part page and added Sprello to the page as the only web part.  After I configured the part, all icons on the ribbon went gray so I was unable to click on the Close Edit button.  If I delete Sprello, the ribbon comes back.  If, instead of deleting Sprello, I navigate away from the page and then navigate back to it, Sprello appears on the page, but it is empty.  Exposing the console window, and clicking on the ribbon to see the page options, I get the &amp;#34;SCRIPT5009&amp;#58; &amp;#39;Sprello&amp;#39; is undefined&amp;#34; error that, according to the comments on the Documentation page, was fixed with release 1.0.1.0.  I also do not get the ribbon, so the page is uneditable, until I delete Sprello.&lt;br /&gt;&lt;br /&gt;I followed the example in the video as I configured the list.  I used the standard Issues list, with the following configuration&amp;#58;&lt;br /&gt;List&amp;#58; Issues&lt;br /&gt;Category Field&amp;#58; Priority&lt;br /&gt;Order Field&amp;#58; Order&lt;br /&gt;Title Field&amp;#58; Title&lt;br /&gt;Detail Field&amp;#58; Description&lt;br /&gt;On card click show&amp;#58; Display_Form&lt;br /&gt;I am not allowing adding&lt;br /&gt;&lt;br /&gt;Priority is a choice field and order is a numeric field.&lt;br /&gt;&lt;br /&gt;Any assistance would be greatly appreciated.&lt;br /&gt;Comments: The WebPart.js is not loading  We tried to access &amp;#47;SiteAssets&amp;#47;SPrelloAssets&amp;#47;WebPart.js but it comes up as webpage cannot be found.  How can we add this part to the correct area&amp;#63;</description><author>rcspusr</author><pubDate>Wed, 20 Mar 2013 17:29:20 GMT</pubDate><guid isPermaLink="false">Commented Issue: Sprello is undefined in version 1.0.3.0 [20] 20130320052920P</guid></item><item><title>Commented Issue: Sprello is undefined in version 1.0.3.0 [20]</title><link>http://sprello.codeplex.com/workitem/20</link><description>I installed Sprello &amp;#40;v. 1.0.3.0&amp;#41; on SP2010, a few days ago but have not been able to get it to work.&lt;br /&gt;&lt;br /&gt;I created a web part page and added Sprello to the page as the only web part.  After I configured the part, all icons on the ribbon went gray so I was unable to click on the Close Edit button.  If I delete Sprello, the ribbon comes back.  If, instead of deleting Sprello, I navigate away from the page and then navigate back to it, Sprello appears on the page, but it is empty.  Exposing the console window, and clicking on the ribbon to see the page options, I get the &amp;#34;SCRIPT5009&amp;#58; &amp;#39;Sprello&amp;#39; is undefined&amp;#34; error that, according to the comments on the Documentation page, was fixed with release 1.0.1.0.  I also do not get the ribbon, so the page is uneditable, until I delete Sprello.&lt;br /&gt;&lt;br /&gt;I followed the example in the video as I configured the list.  I used the standard Issues list, with the following configuration&amp;#58;&lt;br /&gt;List&amp;#58; Issues&lt;br /&gt;Category Field&amp;#58; Priority&lt;br /&gt;Order Field&amp;#58; Order&lt;br /&gt;Title Field&amp;#58; Title&lt;br /&gt;Detail Field&amp;#58; Description&lt;br /&gt;On card click show&amp;#58; Display_Form&lt;br /&gt;I am not allowing adding&lt;br /&gt;&lt;br /&gt;Priority is a choice field and order is a numeric field.&lt;br /&gt;&lt;br /&gt;Any assistance would be greatly appreciated.&lt;br /&gt;Comments: OK - a javascript error is occurring on the page that is stopping all other javascript working such as the Ribbon.&amp;#10;&amp;#10;My first guess is that the SPRello javascript file has not been correctly deployed for some reason. Can you open up your page IE developer toolbar &amp;#40;with Sprello added&amp;#41; check the script tag and see if the WebPart.js is loaded OK&amp;#63; If it isn&amp;#39;t - can you put the URL for the script in your browser, does it load&amp;#63;&amp;#10;&amp;#10;Oh - another thing that could cause this is if the jQuery libraries aren&amp;#39;t loading. Do you have a custom master page or other changes to that page&amp;#63;&amp;#10;</description><author>Pentalogic</author><pubDate>Tue, 12 Mar 2013 13:06:40 GMT</pubDate><guid isPermaLink="false">Commented Issue: Sprello is undefined in version 1.0.3.0 [20] 20130312010640P</guid></item><item><title>Commented Issue: Sprello is undefined in version 1.0.3.0 [20]</title><link>http://sprello.codeplex.com/workitem/20</link><description>I installed Sprello &amp;#40;v. 1.0.3.0&amp;#41; on SP2010, a few days ago but have not been able to get it to work.&lt;br /&gt;&lt;br /&gt;I created a web part page and added Sprello to the page as the only web part.  After I configured the part, all icons on the ribbon went gray so I was unable to click on the Close Edit button.  If I delete Sprello, the ribbon comes back.  If, instead of deleting Sprello, I navigate away from the page and then navigate back to it, Sprello appears on the page, but it is empty.  Exposing the console window, and clicking on the ribbon to see the page options, I get the &amp;#34;SCRIPT5009&amp;#58; &amp;#39;Sprello&amp;#39; is undefined&amp;#34; error that, according to the comments on the Documentation page, was fixed with release 1.0.1.0.  I also do not get the ribbon, so the page is uneditable, until I delete Sprello.&lt;br /&gt;&lt;br /&gt;I followed the example in the video as I configured the list.  I used the standard Issues list, with the following configuration&amp;#58;&lt;br /&gt;List&amp;#58; Issues&lt;br /&gt;Category Field&amp;#58; Priority&lt;br /&gt;Order Field&amp;#58; Order&lt;br /&gt;Title Field&amp;#58; Title&lt;br /&gt;Detail Field&amp;#58; Description&lt;br /&gt;On card click show&amp;#58; Display_Form&lt;br /&gt;I am not allowing adding&lt;br /&gt;&lt;br /&gt;Priority is a choice field and order is a numeric field.&lt;br /&gt;&lt;br /&gt;Any assistance would be greatly appreciated.&lt;br /&gt;Comments: I think codeplex had a bug for a few days - this whole page was empty of the text. Even checked different browsers and other PC&amp;#39;s. OK now though.</description><author>Pentalogic</author><pubDate>Tue, 12 Mar 2013 13:03:04 GMT</pubDate><guid isPermaLink="false">Commented Issue: Sprello is undefined in version 1.0.3.0 [20] 20130312010304P</guid></item><item><title>Commented Issue: Sprello is undefined in version 1.0.3.0 [20]</title><link>http://sprello.codeplex.com/workitem/20</link><description>I installed Sprello &amp;#40;v. 1.0.3.0&amp;#41; on SP2010, a few days ago but have not been able to get it to work.&lt;br /&gt;&lt;br /&gt;I created a web part page and added Sprello to the page as the only web part.  After I configured the part, all icons on the ribbon went gray so I was unable to click on the Close Edit button.  If I delete Sprello, the ribbon comes back.  If, instead of deleting Sprello, I navigate away from the page and then navigate back to it, Sprello appears on the page, but it is empty.  Exposing the console window, and clicking on the ribbon to see the page options, I get the &amp;#34;SCRIPT5009&amp;#58; &amp;#39;Sprello&amp;#39; is undefined&amp;#34; error that, according to the comments on the Documentation page, was fixed with release 1.0.1.0.  I also do not get the ribbon, so the page is uneditable, until I delete Sprello.&lt;br /&gt;&lt;br /&gt;I followed the example in the video as I configured the list.  I used the standard Issues list, with the following configuration&amp;#58;&lt;br /&gt;List&amp;#58; Issues&lt;br /&gt;Category Field&amp;#58; Priority&lt;br /&gt;Order Field&amp;#58; Order&lt;br /&gt;Title Field&amp;#58; Title&lt;br /&gt;Detail Field&amp;#58; Description&lt;br /&gt;On card click show&amp;#58; Display_Form&lt;br /&gt;I am not allowing adding&lt;br /&gt;&lt;br /&gt;Priority is a choice field and order is a numeric field.&lt;br /&gt;&lt;br /&gt;Any assistance would be greatly appreciated.&lt;br /&gt;Comments: I&amp;#39;m not sure I understand your question.  As far as I can tell, the description field is not blank.  I see the message I typed, in both IE and Chrome browsers.  If you&amp;#39;re asking for a specific piece of data that I haven&amp;#39;t provided, please provide more detail on what you need or point me to a FAQ with that info.&amp;#10;&amp;#10;I have changed my profile, so you can contact me directly if there is a problem with this message board.&amp;#10;&amp;#10;</description><author>rcspusr</author><pubDate>Fri, 08 Mar 2013 13:35:45 GMT</pubDate><guid isPermaLink="false">Commented Issue: Sprello is undefined in version 1.0.3.0 [20] 20130308013545P</guid></item><item><title>Commented Issue: Sprello is undefined in version 1.0.3.0 [20]</title><link>http://sprello.codeplex.com/workitem/20</link><description>I installed Sprello &amp;#40;v. 1.0.3.0&amp;#41; on SP2010, a few days ago but have not been able to get it to work.&lt;br /&gt;&lt;br /&gt;I created a web part page and added Sprello to the page as the only web part.  After I configured the part, all icons on the ribbon went gray so I was unable to click on the Close Edit button.  If I delete Sprello, the ribbon comes back.  If, instead of deleting Sprello, I navigate away from the page and then navigate back to it, Sprello appears on the page, but it is empty.  Exposing the console window, and clicking on the ribbon to see the page options, I get the &amp;#34;SCRIPT5009&amp;#58; &amp;#39;Sprello&amp;#39; is undefined&amp;#34; error that, according to the comments on the Documentation page, was fixed with release 1.0.1.0.  I also do not get the ribbon, so the page is uneditable, until I delete Sprello.&lt;br /&gt;&lt;br /&gt;I followed the example in the video as I configured the list.  I used the standard Issues list, with the following configuration&amp;#58;&lt;br /&gt;List&amp;#58; Issues&lt;br /&gt;Category Field&amp;#58; Priority&lt;br /&gt;Order Field&amp;#58; Order&lt;br /&gt;Title Field&amp;#58; Title&lt;br /&gt;Detail Field&amp;#58; Description&lt;br /&gt;On card click show&amp;#58; Display_Form&lt;br /&gt;I am not allowing adding&lt;br /&gt;&lt;br /&gt;Priority is a choice field and order is a numeric field.&lt;br /&gt;&lt;br /&gt;Any assistance would be greatly appreciated.&lt;br /&gt;Comments: Erm - there is nothing here - blank description. Whats going on&amp;#63;</description><author>Pentalogic</author><pubDate>Fri, 08 Mar 2013 09:42:55 GMT</pubDate><guid isPermaLink="false">Commented Issue: Sprello is undefined in version 1.0.3.0 [20] 20130308094255A</guid></item><item><title>Created Issue: Sprello is undefined in version 1.0.3.0 [20]</title><link>http://sprello.codeplex.com/workitem/20</link><description>I installed Sprello &amp;#40;v. 1.0.3.0&amp;#41; on SP2010, a few days ago but have not been able to get it to work.&lt;br /&gt;&lt;br /&gt;I created a web part page and added Sprello to the page as the only web part.  After I configured the part, all icons on the ribbon went gray so I was unable to click on the Close Edit button.  If I delete Sprello, the ribbon comes back.  If, instead of deleting Sprello, I navigate away from the page and then navigate back to it, Sprello appears on the page, but it is empty.  Exposing the console window, and clicking on the ribbon to see the page options, I get the &amp;#34;SCRIPT5009&amp;#58; &amp;#39;Sprello&amp;#39; is undefined&amp;#34; error that, according to the comments on the Documentation page, was fixed with release 1.0.1.0.  I also do not get the ribbon, so the page is uneditable, until I delete Sprello.&lt;br /&gt;&lt;br /&gt;I followed the example in the video as I configured the list.  I used the standard Issues list, with the following configuration&amp;#58;&lt;br /&gt;List&amp;#58; Issues&lt;br /&gt;Category Field&amp;#58; Priority&lt;br /&gt;Order Field&amp;#58; Order&lt;br /&gt;Title Field&amp;#58; Title&lt;br /&gt;Detail Field&amp;#58; Description&lt;br /&gt;On card click show&amp;#58; Display_Form&lt;br /&gt;I am not allowing adding&lt;br /&gt;&lt;br /&gt;Priority is a choice field and order is a numeric field.&lt;br /&gt;&lt;br /&gt;Any assistance would be greatly appreciated.&lt;br /&gt;</description><author>rcspusr</author><pubDate>Thu, 07 Mar 2013 22:20:48 GMT</pubDate><guid isPermaLink="false">Created Issue: Sprello is undefined in version 1.0.3.0 [20] 20130307102048P</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></channel></rss>