I installed package "EPiServer.Forms.4.5.1" from nuget. And when i creating a new form, there is no preview available. modules/_protected/EpiServer.Forms have no default view for form, but have views for form controls.
I also want to create different forms. Is there a way to create and use two different display templates for form at the same time? And how?
Related
last two weeks, i researched richtext component to use our application in our company. Now, we use ckeditor but we want to change it more beautiful component on ui side. I integrated Devexpress richeditor with mvc in our application but it was server sided component and it does not fit for requirements on client side. Because we need to make some jobs on client side with text editor. The question is, is there any client sided richtext editor "LIKE DEVEXPRESS RICHEDIT" in ui. There are some editors, e.g "txcontrol" "fckeditor", "tinymce", "markitup" and etc. But the main thing is, the client sided components does not split the pages. Do you know any component? We are using "asp.net mvc and angular.js" Thansk for advice...
You can try this because you are using angularjs http://textangular.com/
Or Telerik Kendo UI text editor http://demos.telerik.com/kendo-ui/editor/index
The newest DevExpress Web RichEdit version is now completely client-side/JavaScript based.
It can be used in a pure JS code or within any framework (such as the jQuery or Angular).
I have a bunch of custom content types I've created for Drupal 7 Panels module. Everything works perfectly. I'm wondering if there's a way to share data between my panes. For example, I've got my layout setup so that on the right side there are a few panes that form a sidebar. I want to pass data from one sidebar pane to another. Is there an overall "Page" variable that I can store data in so that any pane on the page can access it?
You can use the panel page's context settings to expose various contexts, and then use custom content panes, enable the replacement patterns, and use those patterns with custom panes.
If you are using views for any of this content, you can use panel contexts as arguments for the views as well.
Is there any way to customize (or replace) the box that displays details of a particular appoint as you scroll over it in the Calendar Explorer of Outlook 2013.
I am trying to display one of the additional custom properties (formatted) to give a visual queue of the status of an item without having to open it up in it's Inspector and navigate to the custom form region that provides the UI.
I have created form regions, and used RibbonXML at a very rudimentary level, but couldn't see a way to do this using either of those approaches.
Thanks in advance
I have created a WPF User control library. It has by default 1 user control in it. I added two more user controls on it. Added next back button to everycontrol. Now I am stuck here. What should I do to navigate from one user control to another? Can I do that in MVVM pattern? if yes then how?
Try downloading Telerik trial pack, they have a demo app (with source) that allows to browse their control. An once you have that demo app you can switch the user control dll in background when an update occurs.
I am really new to Silverlight. I am working through some of the sample codes I found online.
I notices sometimes a new "Page" is added, and sometimes a new "User Control" is added.What are the differences between those 2?
Btw, when I tried specifying the URL for a hyperlink as "www.apple.com", there is an error saying "www.apple.com" can not be found. Are there anyway of specifying an URL for a website for a HyperlinkButton?
Thanks :)
In SL3 and up; a Page correlates to the Navigation framework whereas a UserControl is a control providing a defined set of functionality using multiple controls which can then be used within a Page.
User Control:
When you build your project , any user control that you created will appear in the toolbox also. You can drag and drop it like any other control (like a button or a grid).User controls are used for enhanced flexibility. You can customize your controls, set as many properties you want , and it really simplifies things without going for creating custom controls.
Page:
However, when you come to a Page, you can use it mostly for Navigation . It can contain other controls , but it is mainly intended for Navigation within Frames.