Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1185
WebtextEditor disables AppStyling?
posted

I am starting a new web application, and wanted to use the app styling from scratch, so I copied over the master page used in the sample app, and ran the app styling add-in to transfer over the relevant style files.

It works quite well, I've started building pages and it hangs together. I can select the repeater control, select a style and it changes the entire page automatically.

Except when I attempt to use the new akido editors - If I drop a WebTextEditor onto a page, the styling functions rendered moot - the relevant calls to AppStylingManager.Settings.StyleSetName are being made, but the resulting page has the default styles applied - not the selected ones.

i can drop the old WebtextEdit control onto the page and it all works fine - but the new control is disabling something.

I am quite experienced with WinForms development, but still a neophyte with ASP.NET - what am I missing here?

Parents
No Data
Reply
  • 24497
    Suggested Answer
    posted

    Hi,

    The Infragistics.Web.UI controls (Aikido) rely on presence of local to project ig_res directory, which should contain resources (css files and images) for controls. You may create that directory within your website and copy there resources used by controls. For example, create ig_res/Default and copy there ig_texteditor.css. Also add ig_res/Default/images and copy there igte_*.gif files. Similar for other controls.
    Easier to copy to website whole ig_res/Default/*.* content or ig_res/YourStyleName/*.*

Children