Login Register

editor

Editor does not work with IE

Hello,

I am not sure it is known issue or not.
Editor does not work with html which contains event attribute like following code in IE.

How can I solve this problem ?

Thanks,

Youngho

Editor Test

@import "../../dojo/resources/dojo.css";
@import "css/dijitTests.css";
.mover {
cursor:pointer;
background-color:#FFC !important;
}

Add of a new editor: Button

The solution is simple, you want to have a button on a cell.
Just think about editor !
By extending the class dojox.grid.editors.AlwaysOn, the button will allways appear during the viewing of the grid.

Source code

dojo.provide("foo.Button");

dojo.require("dojox.grid._data.dijitEditors");
dojo.require("dijit.form.Button");

dojo.declare("foo.Button", dojox.grid.editors.AlwaysOn, {
_valueProp: 'cellValue',
constructor: function(inCell) {
this.text = this.text || this.cell.text;
this.deleteAfter = this.deleteAfter || this.cell.deleteAfter;

Checkbox or editor in Grid Header

Hi,

I want to place a checkbox or bool editor in the grid header. What kind of grid structure should I use for this requirement?

Thanks.

Dijit.Editor ...using by AOL

I have a strange problem..

I have a form with some object html..."select, inputbox, radio..etc..." that I have render with Dijit widget...

I have some problem with the "textarea" object that I convert with dijit.Editor widget...

If I use AOL for rendering Dojo object...I can't enter in this widget and write my content....
If I use Local Dojo JS...All work...

And...In FireFox someone when I click the Button that execute the method .close(true)...don't work...

What's the problem?

Tnx You

Getting dijit.Editor to work on IE from CDN

Hello!

This is my first message here but read many threads in during the dojo leaning process, so I'd like to thank the developers and the community for their work! ;-)

Now the issue: I managed to make the dijit.Editor load properly, however under IE it doesn't fetch the content correctly, and the control has blank content, while on FF it works excellent. I tried many combinations but with the very same effect. However, if I change the dojo loading source from CDN to my host, it works on IE as well.

Plugins & IE 6/7

OK this has to be something stupid on my part but hear me out: I can't get any dijit editor plugins to load in IE (not the "built-in" plugins, but plugins located in dijit/_editor/plugins/MyPlugin.js). This includes default plugins like LinkDialog.js. Now I could have sworn this worked before but I over-wrote my changed plugins with the "factory default" ones and still get the same issue. IE (both 6 and 7) tells me "Could not load dijit._editor.plugins.LinkDialog.js (last tried ../dijit/_editor/plugins/LinkDialog.js)".

Editor replaceValue forces focus

I'm trying to use dijit.byId('id').replaceValue(newValue) to programmatically change the value of a dijit Editor; it works fine except that replaceValue sets the focus to the editor it is changing.

dojo.connect with dijit.Editor

I've got an application where editor(s) are created programmatically, and then (for some of them) an onBlur event is attached to the Editor. The javascript looks something like:

function loadIditable(json) {
//get json object from perl
var myJSONObject = eval('(' + json + ')');

for (var cnt=0;cnt

Editor - No HTML view?

I have installed CiviCRM 2.0 Beta 1, which seems to use dijit for the HTML compose box in CiviMail, Step 3, I think it is.

There seems to be no way to bring in HTML produced somewhere else, and that seems like an important feature, and one that's included in almost every other similar Rich Text Editor.

Is this feature on the roadmap?

Thanks,
Ken

controlling rich text area dimensions

Hi,

Can any one help me to control rich text area dimensions

I want to set fixed hight,width

2. is there any option to avoid un wanted options from editor options???

thanks in advance

Syndicate content