|
|
Posted 14/05/2005 13:48:11 |
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 25/05/2005 15:16:03
Posts: 5,
Visits: 16
|
|
| I have purchased a developer licence for Instant forums ans Instant Kb and I am very impressed with both products. The only question I have at the moment is, what is the easiest way to implement the WYSIWYG Editor on other pages of my site and also is it possible to trim down what controls are available.
E,g I want user to be able to select 2 Font Sizes, Bold, Italic and Align L R C Many Thanks
Dave Total Computer Logistics Ltd www.tclgb.com
|
|
|
|
Posted 16/05/2005 09:47:28 |
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 25/05/2005 15:16:03
Posts: 5,
Visits: 16
|
|
| I checked this post last night and I had a reply went to check this afternoon and it is gone, have you guys had some kind of data loss? Can anyone help with my request Many Thanx
Dave Total Computer Logistics Ltd www.tclgb.com
|
|
|
|
Posted 16/05/2005 13:26:17 |
|
|
Support Supremo
      
Group: Customers
Last Login: 13/11/2008 12:44:07
Posts: 568,
Visits: 2,507
|
|
tclgb (5/16/2005)
I checked this post last night and I had a reply went to check this afternoon and it is gone, have you guys had some kind of data loss? Can anyone help with my request Many Thanx
Dear Dave, Sorry about the delay, Answering your request: If you're integrating the InstantForum with your own website; then you can use the Editor inside others pages by just inserting: <% @Register tagPrefix="InstantForum" Namespace="InstantASP.InstantForum.Controls" Assembly="InstantForum" %> In the top of the aspx page and: <InstantForum:RichTextEdit id="rteEditor" DialogPath="wysiwyg/dialogs" IconImagePath="wysiwyg/images" TabIndexOverRides="2" ToolbarColor="#F0EEE1" BorderColor="#BBC8E5" ToolbarItemOver="#F4F8FB" ToolbarItemOverBorder="#316AC5" FormName="frmPost" runat="server"/> Inside the form. Also you'll need to copy the folder wysiwyg to the application root folder. For each website (including virtual directories) within which you use the dll, you will need to purchase an additional site license.<% @Register tagPrefix="InstantForum" Namespace="InstantASP.InstantForum.Controls" Assembly="InstantForum" %>
|
|
|
|
Posted 17/05/2005 00:42:47 |
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 25/05/2005 15:16:03
Posts: 5,
Visits: 16
|
|
| Carlos, Thankyou for your response
My forum is at forums.mydomain.com and I want to use the WYSIWYG on mydomain.com, I dont have to purchase another licence for that kind of usuage do I ?? Regards Dave
Dave Total Computer Logistics Ltd www.tclgb.com
|
|
|
|
Posted 17/05/2005 01:02:47 |
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 25/05/2005 15:16:03
Posts: 5,
Visits: 16
|
|
| That works great, as the site was on a subdomain I needed to copy the Bin folder into my App as well. Is there a way to trim down the features similar to this forum. E.g I only want Bullets, Align, Bold, Italic and 2 Fontsizes. Thanks again for your help so far. Great Product, Great Support
Dave Total Computer Logistics Ltd www.tclgb.com
|
|
|
|
Posted 17/05/2005 01:23:20 |
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 25/05/2005 15:16:03
Posts: 5,
Visits: 16
|
|
| I have looked at Source code and I think I have to Set Template to Custom and somehow use CustomTools.sbMenuItems to add and remove the buttons i require. Quite new to ASP.Net so not quite sure how to go about implementing this change any help would be greatly appreciated. Thanks
Dave Total Computer Logistics Ltd www.tclgb.com
|
|
|
|
Posted 17/05/2005 13:20:31 |
|
|
Support Supremo
      
Group: Customers
Last Login: 13/11/2008 12:44:07
Posts: 568,
Visits: 2,507
|
|
tclgb (5/17/2005)
Carlos, Thankyou for your response
My forum is at forums.mydomain.com and I want to use the WYSIWYG on mydomain.com, I dont have to purchase another licence for that kind of usuage do I ?? Regards Dave If you have two bin folders, one in the root and another in the subdomain, then another license is necessary.
|
|
|
|
Posted 17/05/2005 14:08:12 |
|
|
Support Supremo
      
Group: Customers
Last Login: 13/11/2008 12:44:07
Posts: 568,
Visits: 2,507
|
|
tclgb (5/17/2005)
I have looked at Source code and I think I have to Set Template to Custom and somehow use CustomTools.sbMenuItems to add and remove the buttons i require. Quite new to ASP.Net so not quite sure how to go about implementing this change any help would be greatly appreciated. Thanks There are 4 templates in the Forum today: BasicOptions, DefaultTemplate, MinimalOptions, None. You can choose one of them adding the attribute ToolbarConfiguration in the control tag like below: <InstantForum:RichTextEdit id="rteEditor" DialogPath="wysiwyg/dialogs" IconImagePath="wysiwyg/images" TabIndexOverRides="2" ToolbarColor="#F0EEE1" BorderColor="#BBC8E5" ToolbarItemOver="#F4F8FB" ToolbarItemOverBorder="#316AC5" ToolbarConfiguration="DefaultTemplate" FormName="frmPost" runat="server" /> You can add/modify it in the menulayouts.vb file.
|
|
|
|