That’s the session timeout count down. There was an embedded javascript reference problem.
The target name can be anything and it’s entirely up to the browser. Wisej simply passes it to window.open(url, target);
Thanks Mariano,
just retried 2.0.13 on a Windows 8 machine and it installed just fine.
Can you please try to redownload the exe and/or install as an Administrator ?
Best regards
Frank
Hi Frank,
I download the install exe to local drive.
As aditional info I uninstall all wisej versions (2 and 1.5) and restart computer.
Install 2.0.9 OK
Install 2.0.11 over 2.0.9 OK
Install 2.0.12 over 2.0.11 FAIL (Server returned unexpected error 110 attempting to install package C:\Users\Mariano\AppData\Local\Temp\{A961FA7E-4E78…etc…}\Wisej.x64.msi)
Install 2.0.13 over 2.0.11 FAIL (Server returned unexpected error 110 attempting to install package C:\Users\Mariano\AppData\Local\Temp\{9B6CC339-2402…etc…}\Wisej.x64.msi)
Install 2.0.12 or 2.0.13 without previous version FAIL too.
Error showed inmediatelly when click “install” button
Thanks,
Mariano
I figured it out and provided the change to the other ticket.
I think I figured it out. The checked text-color for icon-dark is iconLight I think it should probably be iconDark
“icon-dark”:
{
“states”:
{
“default”:
{
“properties”:
{
“width”: 18,
“height”: 18,
“textColor”: “iconDark”
}
},
“hovered”:
{
“properties”:
{
“textColor”: “#5B5B5B”
}
},
“selected”:
{
“properties”:
{
“textColor”: “highlightText”
}
},
“pressed”:
{
“properties”:
{
“textColor”: “iconLight”
}
},
“checked”:
{
“properties”:
{
“textColor”: “iconLight”
}
}
}
},
Should be
“icon-dark”:
{
“states”:
{
“default”:
{
“properties”:
{
“width”: 18,
“height”: 18,
“textColor”: “iconDark”
}
},
“hovered”:
{
“properties”:
{
“textColor”: “#5B5B5B”
}
},
“selected”:
{
“properties”:
{
“textColor”: “highlightText”
}
},
“pressed”:
{
“properties”:
{
“textColor”: “iconLight”
}
},
“checked”:
{
“properties”:
{
“textColor”: “iconDark”
}
}
}
},
Thanks Angelo,
logged as issue #1834. We´ll inform you when it´s fixed.
Best regards
Frank
Hi Mariano,
are you installing from a network drive or RAM drive ?
If yes, can you please retry from a local drive ?
Best regards
Frank
Hi Frank – when using the CKEditor as a user (i.e. editing a document) if you press the [Enter] key and then type “Hello World’, CKEditor inserts this:
<p>
Hello World
</p>
Which is fine. However the margins on the <p> tag in their style sheet Give you more spacing down to the next paragraph than my client wants.
My client gets this, when pressing enter once:
Hello World 1
Hello World 2
What my client wants is this:
Hello World 1
Hello World 2
So basically come down one “line” when pressing enter.
CKEditor documentation says to set the margin to zero for the <p> tag. That is what I’m trying to address here…
https://ckeditor.com/docs/ckeditor4/latest/guide/dev_best_practices.html#use-enter-mode-p
Thanks so much – I just need to set some css for the <p> tag within CKEditor…
Hi Matthew,
can you please be a bit more precise of what you are trying to achieve?
What space do you want to be suppressed ?
Generic infos about configuring the content area can be found e.g. here:
https://ckeditor.com/old/forums/CKEditor-3.x/CSS-style-sheet-for-content-area
Best regards
Frank
Hi Jens
Exactly what I needed
Thank you
Hi Angelo,
when I understand you correct the modalMask attribute in the theme is that what you’re looking for.
Changing it this way and the forms behind the modal are still visible.
Snippet
"modalMask": "rgba(255,255,255,0)",
Best,
Jens
Hi Jens,
Very Simple, Work perfectly.
Thank You very much
Argh, I have just discovered that the WebSocket Protocol was not supported in IIS 7.5
Sooner or later I have to decide to migrate to a newer Windows server :-/
Thank you
Hi Angelo,
you have to assign an “-” to the Text property of a MenuItem. Wisej will change the style to a separator.
Snippet
this.menuItem4.Text = "-";
Best,
Jens
Hi Andrew,
can´t reproduce, can you please share a test sample ?
Best regards
Frank
Hi Luca,
with Chrome, under WS -> Frame but I have Opcode -1
I attach screen shot
Use the setReadOnly() method in CKEditor.
this.ckEditor1.Eval(“this.editor.setReadOnly(true)”);
Or modify the extension to add a ReadOnly property.
HTH
You can also add multiple Animation extenders. The controls will get multiple Animation properties that can react to different events.
