CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.gotcommunitynet Tags:
Item Type: NewsGroup Date Entered: 10/12/2003 8:48:00 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 0 Views: 15 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
7 Items, 1 Pages 1 |< << Go >> >|
mumfie2003
Asp.Net User
PRB:FreeTextBox control (HTMLTextBox)10/12/2003 8:48:00 PM

0/0

Some of the toolbar buttons on the FreeTextBox control require additional resources.
If you get an error about "Resource Not Found" when selecting these options the files required are stored at /Engine/Framework/HtmlTextBox.
Colin Munford

http://www.colin-munford.me.uk
kkw
Asp.Net User
Re: PRB:FreeTextBox control (HTMLTextBox)10/20/2003 4:22:05 PM

0/0

I encountered the problem too.
Take a look in file HtmlTextBox.cs in folder \Engine\Framework\ContentPages\Controls

Line 1650: public string HelperFilesPath
{
get
{
object savedState = this.ViewState["HelperFilesPath"];
return (savedState == null) ? CommunityGlobals.ResolveBase("Engine/Framework/HtmlTextBox/") : (string) savedState;//SMR- CSK integration
}

This caused the GCN looked for the related .aspx files in Engine's subfolder.

My solution is replacing the bold code with
return (savedState == null) ? CommunityGlobals.AppPath + "/Communities/" + objSectionInfo.Skin + "/Skins/TemplateSkins/" : (string) savedState;//SMR- CSK integration


Then move the .aspx files to the folder \Communities\Common\Themes\Default\Skins\TemplateSkins


This may be is a bug, hope Redd will solve it soon. Thanks to Redd for his great job to integrate the FTB to the CSK.
Come to download GotCommunityNet (GCN)

GotCommunityNet
redd
Asp.Net User
Re: PRB:FreeTextBox control (HTMLTextBox)10/20/2003 7:03:55 PM

0/0

I didn't place them in the themes branch of the application because they don't follow the design patterns for CSK/GCN skin resources. These are core engine level files. While they do provide a UI, and can be modified for different look/feel, they aren't traditional skins either.

I can't be sure if they are better in the themes branch, or the engine branch. I simply made the decision to keep them as core engine files.

Comments?
Stephen M. Redd
http://www.reddnet.net
mumfie2003
Asp.Net User
Re: PRB:FreeTextBox control (HTMLTextBox)10/20/2003 10:13:30 PM

0/0

Hi Redd,
Many devs will only upload the DLL and not items in the Engine directory. In a future release it might be worth looking at an alternative location or adding an additional note to the installation documentation regarding the need to upload these additional files.

Thanking you and all others involved with the development of this improved version of the CSK.

Colin Munford

http://www.colin-munford.me.uk
kkw
Asp.Net User
Re: PRB:FreeTextBox control (HTMLTextBox)10/21/2003 12:38:24 AM

0/0

Same opinion with mumfie2003. If put the file in Engine directory, then we need to upload the whole engine folder.
Come to download GotCommunityNet (GCN)

GotCommunityNet
redd
Asp.Net User
Re: PRB:FreeTextBox control (HTMLTextBox)10/21/2003 1:50:35 PM

0/0

There is of course, no need to upload the whole Engine branch, but I see your point. Perhaps /communities/common/EditorSupport/
Stephen M. Redd
http://www.reddnet.net
kkw
Asp.Net User
Re: PRB:FreeTextBox control (HTMLTextBox)10/21/2003 2:33:36 PM

0/0

Ya, you are right.
Using the directory that I suggested would caused an error in admin add/edit section pages.

Server Error in '/GCN' Application.
--------------------------------------------------------------------------------

Object reference not set to an instance of an object.

This error occured caused no specific theme is indentify in admin section.

Now I changed it to
return (savedState == null) ? CommunityGlobals.ResolveBase("Communities/") : (string) savedState;//SMR- CSK integration


So, now your suggestion is /communities/common/EditorSupport/

Then the code will be like this, rite?

return (savedState == null) ? CommunityGlobals.ResolveBase("Communities/common/EditorSupport/") : (string) savedState;//SMR- CSK integration

then create a folder named "EditorSupport" under the directory "Communities/common", rite?
Come to download GotCommunityNet (GCN)

GotCommunityNet
7 Items, 1 Pages 1 |< << Go >> >|


Free Download:


Web:
PRB:FreeTextBox control (HTMLTextBox) - ASP.NET Forums Re: PRB:FreeTextBox control (HTMLTextBox). 10-20-2003, 12:22 PM. Contact ... Re: PRB:FreeTextBox control (HTMLTextBox). 10-20-2003, 3:03 PM ...
GotCommunityNet - ASP.NET Forums PRB:FreeTextBox control (HTMLTextBox) by mumfie2003. No Status. Re: PRB: FreeTextBox... by kkw. 10-21-2003, 10:47 AM. 6, 7164. Portal Download by squil ...
PRB:FreeTextBox control (HTMLTextBox) - ASP.NET Forums Re: PRB:FreeTextBox control (HTMLTextBox). 10-20-2003, 12:22 PM. Contact ... Re: PRB:FreeTextBox control (HTMLTextBox). 10-20-2003, 3:03 PM ...
GotCommunityNet - ASP.NET Forums PRB:FreeTextBox control (HTMLTextBox) by mumfie2003. No Status. Re: PRB: FreeTextBox... by kkw. 10-21-2003, 10:47 AM. 6, 7164. Portal Download by squil ...
PRB:FreeTextBox control (HTMLTextBox) - ASP.NET Forums Re: PRB:FreeTextBox control (HTMLTextBox). 10-20-2003, 12:22 PM. Contact ... Re: PRB:FreeTextBox control (HTMLTextBox). 10-20-2003, 3:03 PM ...
GotCommunityNet - ASP.NET Forums PRB:FreeTextBox control (HTMLTextBox) by mumfie2003. No Status. Re: PRB: FreeTextBox... by kkw. 10-21-2003, 10:47 AM. 6, 7164. Portal Download by squil ...
PRB:FreeTextBox control (HTMLTextBox) - ASP.NET Forums Re: PRB:FreeTextBox control (HTMLTextBox). 10-20-2003, 12:22 PM. Contact ... Re: PRB:FreeTextBox control (HTMLTextBox). 10-20-2003, 3:03 PM ...
GotCommunityNet - ASP.NET Forums PRB:FreeTextBox control (HTMLTextBox) by mumfie2003. No Status. Re: PRB: FreeTextBox... by kkw. 10-21-2003, 10:47 AM. 6, 7164. Portal Download by squil ...
PRB:FreeTextBox control (HTMLTextBox) - ASP.NET Forums Re: PRB:FreeTextBox control (HTMLTextBox). 10-20-2003, 12:22 PM. Contact ... Re: PRB:FreeTextBox control (HTMLTextBox). 10-20-2003, 3:03 PM ...
GotCommunityNet - ASP.NET Forums PRB:FreeTextBox control (HTMLTextBox) by mumfie2003. No Status. Re: PRB: FreeTextBox... by kkw. 10-21-2003, 10:47 AM. 6, 7164. Portal Download by squil ...




Search This Site:










strange problem

membership/roles and user specific data

javascript body-onload

asp.net 2.0 help with hello world simple deployment

schedule my code

asp.net hosting

configuring iis6 for asp.net ?

vxml and .net

space character problem when edit !

code behind best practice

custom provider for personalization; where do i even start?

how to change dynamically a sitemapnode of web.sitemap?

a weird little tidbit.... error adding module definition

embedding a web application into a asp.net webform?

best alternative to visual studio .net

setting up a 'www.company.com/login' address

changing the order of the verbs

user control properties in designer

when should we use the profile?

select multiple controls for alignment?

2 data provider in same pa

working with the dotnetnuke 4.0.2 starter kit

stupid question about the forum structure

anyone use crystaltech.com developer hosting? page problem i/they can't resolve...

how can i associate a user with a particular database record?

treeview: how to add children under different roots?

minimize ssl

the date constraint in news article not working

database wont attach to site!!!

automated and random slideshow using vb.net, vs2003 and database

 
All Times Are GMT