subsonic 3 scaffolding - subsonic

Are there the asp.net scaffolding controls (ex: < subsonic:QuickTable />) still available in subsonic 3?

No - we did that the best we could with 2.2 :)

Not Subsonic related, but Dynamic Data is something you might want to look into.
Dynamic Data Information

There is no more scaffolding feature anymore. Subcommander also is abandoned.

Related

Pagination directive in angular-material

Is there any pagination directive in angular-material to use with md-list?
These do work, but are not material design based.
https://github.com/brantwills/Angular-Paging
https://github.com/michaelbromley/angularUtils/tree/master/src/directives/pagination
I'm not sure that you can mix these 2 projects but I would look to use bootstrap for angular, with a customization for materiel design;
https://angular-ui.github.io/bootstrap/#/pagination
If it's not shaping enough for material design, here for the customization:
https://fezvrasta.github.io/bootstrap-material-design/
Recently I've made a package md-collection-pagination that is great for this use case.

Excel-like filtering in LightSwitch

I'm pretty new to LightSwitch and trying to make a responsive filter feature to my tables.
This is what it looks like in Excel
Telerik extensions has this feature and you can use that in LightSwitch, but I can't afford the license.
Is there any other way to accomplish the same thing without paying $999? Thanks in advance
There is a filter control extension available here, but it seems that both the VS10 and VS12 versions are not fully functional (I did not have time to check by myself).

subsonic3 RESTHandlers

at the Subsonic website, there is an example of how to create RESTHandlers for Subsonic (http://subsonicproject.com/docs/JSON_Handler). I cannot find the referenced namespaces and classes in Subsonic3. Have they been removed ? And if not, how do I create the RESTHandlers in Subsonic3?
thanks
Thomas
I believe this is only relevant to SubSonic 2.2 and wasn't included in 3.0

Generating edit pages with Subcommander

Has anyone used Subcommander to generate views or edit aspx pages in webforms projects.
If so any tips/help advice or alternatives would be really helpful.
Correct me if I'm wrong but I was under the impression that SubCommander is simply for using SubSonic under a command prompt? I don't think it was ever designed to start generating views / edit pages for you.
There are however (if you're referring to SubSonic 2) scaffolds which will certainly assist with what you're trying to achieve.
From within your ASP.NET html page paste the following code for each object / table you wish to scaffold:
<subsonic:Scaffold ID="Scaffold1" runat="server" TableName="YOURTABLENAMEGOESHERE">
</subsonic:Scaffold>

use subsonic 2.x and 3.x in the same project

Is it possible to mix them? I'm asking because I have a big project that uses Subsonic 2.x generated classes (in a compiled dll) but would like to start using 3.x for new stuff.
I tried it last night with a project where I had references to both subsonic.dll and subsonic.core.dll but that didn't work with ambiguous references, etc. So removed 2.x and then got an issue with my older compiled subsonic generated classes in that they needed Subsonic 2.1 to run.
Hmm... I think there's a small chance that you might be able to do this, but you'd need to use the full qualifying class names (namespace.class) for a lot of code because there might be naming conflicts. It wouldn't be easy to do and definitely not recommended. (It might not can even be done.)
You can't move from 2.x to 3.x without doing a lot of recoding. I have a bunch of big projects in 2.2 and after trying to update to 3.0, I ran into some issues so I've decided to keep them in 2.2. I'd love to upgrade to 3.0 and use the new stuff, too, but I don't have the time (right now) to recode the stuff that changed between 2.x and 3.0.
I do recommend updating to 2.2. There shouldn't be any backwards compatibility issues between 2.1 and 2.2. I was able to update to 2.2 by just changing out my reference.
Just curious, are you using ActiveRecord or Repo implementation?
You only have 2 options:
stay in 2.1/2.2
update your code to 3.0
Thought I'd follow up here and let people know that I was able to get this to work. What i chose to do was to edit the Subsonic 2 source code and put it into a Subsonic2 namespace (everything), recompile to subsonic2.dll, etc. Had to modify the web.config slightly, then went and modified my old code to reference subsonic2, etc.
Am now able to mix both Subsonic 2 and 3 in the same project.
Gerry
Jim--I'm using ActiveRecord. The 2.x is in one namespace and 3.x would be in another. However, I guess the question is whether the 2.x can be compiled to run with the 3.x runtime.
Thanks,
Gerry

Resources