Alfresco - Web Preview [closed] - alfresco

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I'm starting using Alfresco Community 5.1 and I create a new Aikau page in Alfresco to use through an action button. I want to put the web preview of the document details, this web preview of this page:
How can I use this in another page?
Thanks! Please help me!

Let's assume that you're using at least Alfresco Community 5.0.d or Alfresco Enterprise 5.0... this would mean that you could create your new page using the Aikau framework. This gives you much more flexibility in how to build your page and re-use existing Alfresco components that are defined with Aikau. Although 5.0.d and 5.0 don't ship with the latest version of Aikau (which is released weekly) you can take advantage of the latest releases by following the information detailed here.
There is a detailed tutorial on using Aikau which contains a chapter on re-using the preview widgets. There is also the Aikau Sandpit which provides examples of using the preview widget.
Hopefully this will get you on your way!

Related

Using Webflow for freelance web development [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
I have just started out doing web development projects for clients and I have done two so far using NextJS, NuxtJS along with headless WordPress for the CMS. As I also have a full time job these projects take a fair amount of time and I end up working constantly.
I have recently come across Webflow and have messed around with it to see how it works. It seems like if I used Webflow and the CMS is provides I could get through projects much quicker than I would currently.
Do you think that for freelancing using a tool like Webflow is a better idea than what I am currently doing?
I currently use Webflow for client projects and I use Next.js at work. I would highly recommend using Webflow for the following reasons on most web dev client projects.
Speed of customization (You can create components in Webflow and copy and past them into new projects, which allows you to reuse standard parts in seconds)
CMS already integrated.
Ability to easily give clients access to edit their own content if they need
Easily edit SEO settings
Easily connect other tools like Zapier and Memberstack if you need

why don't we always use the latest .net framework? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
I am very new to DOT.net frameworks.
Shouldn't we always update to the latest release?
List Entity framework or identity framework .. all those frameworks ... why do we keep them around? just use the latest ones.
In fact, I am just starting to develop an asp.net website with RestAPIs, login, register, social login...
I wonder what is the best framework version (4.5) to use
From a large company point of view. You can not always technically get the latest version of .NET on your servers that store your applications. For some you have to go through a series of procedures to get everything to the latest so it's not necessarily developers that can trudge through this when you have a separation of duties like developers, system admins, etc. Although it's highly suggested to use the latest and greatest. Every dev/company has their own way of actually getting the most up-to-date versions of pretty much anything.

Tridion 2009 TBB: How do I determine which version of a component has been published to staging and live target? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
Given a Page that has a Component A and Component A has been published to LIVE target.
Later, the same component A has been modified and published again, this time, to Staging target.
We need to know which version of component A has been published to LIVE and which version of component A has been published to Staging.
Is it possible to obtain the version of the component that has been published in each target?
What you are looking for is not possible OOTB. You can infer however this information using PublishEngine.GetPublishInfo(IdentifiableObject item), which gives you back a ICollection<PublishInfo>, which contains the Date when the item has been published.
You can then combine this information with version info of the item, and identify (by looking at the Publish time vs version check-in time) the version used when publishing.
However, versions could be deleted, so this method is not guaranteed to give you back the right information.
I suggest you publish the version of your Page as CustomMeta (perhaps using something similar to MetaDataProcessor, part of the TDFramework, to create meta data on-the-fly). You can then interrogate the Content Delivery DB and retrieve this information.
Alternatively, for a CM-side solution, you can use the Event System and intercept the publishing action. Then it's up to you to store the version of the Page (e.g. Application Data might be a good candidate).

Is it possible to create full web site with Silverlight? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have never programmed web sites. I know that I can create web sites using ASP.
So is it possible to create full web site with Silverlight? Or does Silverlight only support web forms?
Yes I suppose you could.
However, would it be the right choice for your target market?
Silverlight market share : 65%
Flash market share : 95%
Javscript - pretty much everyone
HTML - everyone
If you're tarketing the whole world, personally I wouldn't use silverlight for the whole site, just for features that required it (and even then, I'd write a HTML only backup version for people who don't have silverlight).
However, if you're writing it for a company that you know has silverlight installed and you're familiar with silverlight then go for it!
theoretically it's possible, but I don't think it's really recommended when some environments stop supporting plug-ins as java/flash/silverlight...
I suppose Html5 is the best choice for web development.
Here is a flow chart to help you in your decision
Pick your platform

What platform/technology would work best for a web app that has heavy client-side excel type operations? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
So, I am working on an app that needs heavy "cell" calculations in a web-based app. The client needs to be able to change values, even the formulas... calculate totals etc, all on the client side in basically a "spreadsheet".
These requirements are pretty strict :(
I am wondering if there is any library or any way to utilize Excel through a web page? Would Silverlight provide any benefit? One thing I was thinking about is that we need some of the same functionality on the client and server (formula calculating), so Silverlight would be great for the re-usability of our C#. Any help is greatly appreciated!
EDIT 1: ## It is not a public facing application.
Have you considered using Excel itself? Could be a particularly good option for a non-public-facing app.
You can embed .NET code into Excel, including a custom UI and web services calls, with a technology called VSTO. It gives you full programmatic control over cells, formulas, etc. Very cool!
Excel Web Services?
http://office.microsoft.com/en-us/sharepointserver/ha101054761033.aspx
SpreadsheetGear for .NET will do it.
Here is an article by Deane Barker who had a similar question on stackoverflow.
Even Microsoft uses SpreadsheetGear for Excel based calculators on it's MSN Money site as you can see here.
You can find live ASP.NET samples here and download the free trial here.
Disclaimer: I own SpreadsheetGear LLC

Resources