Search

You searched for the word(s):  
Showing page 153 of 4,987 (49,864 total posts) < 1 second(s)
  • Re: Css Container

    Yes, you can use the Gallery.CssClass Property to specify the fonts for the gallery.   For example,  .container {       FONT-SIZE: 12px;       FONT-FAMILY: arial,helvetica,sans-serif MARGIN: 0px;        TEXT-ALIGN: ...
    Posted to ASP.Net Image Gallery (Forum) by Adam on October 1, 2005
  • Re: Inserting an image at current cursor position.

    I managed to fix this issue. I essentially store the selection while my popup is open, then restore it when I'm closing it. Here's the code:   getSelection = function() {     var c = document.getElementById('cuteEditor1');     if(c){         return ...
    Posted to Cute Editor for .NET (Forum) by sfcalvert on March 17, 2008
  • Saving rtf file.

    Hi, I'm trying to get the editor's save button to download a rft file on click.  I have it basically working except for the fact that the saved file does not open properly.  What can I do to make this happen?Here's a code snippet:private void Editor1_PostBackCommand(object sender, System.Web.UI.WebControls.CommandEventArgs ...
    Posted to Cute Editor for .NET (Forum) by UnlnvlslblE on June 19, 2006
  • Re: Installation

    Hi FirstSignInNoGood,   you can get the editor content when postback like  string HtmlFormattedText = CuteEditor.Text;   And you can get the plain text like the example below   <%@ Page Language="C#" AutoEventWireup="true" %>    ...
    Posted to Cute Editor for .NET (Forum) by Kenneth on December 6, 2012
  • Runtime Adding DropDown in Gridview Control got an error - Failed to load viewstate

     Hello!  I want to add dropdown to my Grid View control. I added that using the inheriting ITemplate but whenever i am doing any action on the page it showing me an error as:   Server Error in '/' Application. Failed to load viewstate.  The control tree into which viewstate is being loaded must match the ...
    Posted to Cute Editor for .NET (Forum) by Naveen83nov on November 13, 2009
  • Re: Server Side ValidateOptions

    Hi atwoodkevin,   Try the below example, it works fine for me.   <%@ Page Language=''C#'' %>     <!DOCTYPE html PUBLIC ''-//W3C//DTD XHTML 1.0 Transitional//EN'' ''http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd''> ...
    Posted to Ajax Uploader (Forum) by Kenneth on June 28, 2010
  • Re: Capture New and Delete Events

    Hi robinsong,   Try this example:   ------------------------------------------------------------------------->   <%@ Page Language=''VB'' %> <%@ Register Namespace=''CuteEditor'' Assembly=''CuteEditor'' TagPrefix=''CE'' %> <!DOCTYPE html PUBLIC ''-//W3C//DTD XHTML 1.0 Transitional//EN'' ...
    Posted to Cute Editor for .NET (Forum) by Kenneth on May 15, 2009
  • Re: Could not load file or assembly 'CuteEditor'

    Hi,   1. Which host are you running on? 2. Have you set the host to .NET 2.0 and are the DLLs also 2.0? 3. Please provide a complete tree of the folder and file content structure of the host site, as it pertains to CuteEditor.   For example, one of our hosted sites is like ...
    Posted to Cute Editor for .NET (Forum) by fredd on August 30, 2007
  • Re: User defined upload and gallery

    You need to implement your own methods based on your project to detect the current user security role, GetSecurityRoleFromYourAPP will return user role:    string userrole= GetSecurityRoleFromYourAPP();    switch(userrole)    {     case ...
    Posted to Cute Editor for .NET (Forum) by Eric on July 20, 2010
  • Re: How can I customize Insert Image Icon in Cute Editor of Asp.Net

    Hi narendrababu,   I have show you how to catch the insertimage button click command, you can achieve your own logic there. What problem you got?    ...
    Posted to Cute Editor for .NET (Forum) by Kenneth on December 11, 2013