All Answers

0 votes

That’s the session timeout count down. There was an embedded javascript reference problem.

  • Luca answered Mar 18, 2019 - 5:22 pm
0 votes

The target name can be anything and it’s entirely up to the browser. Wisej simply passes it to window.open(url, target);

  • Luca answered Mar 18, 2019 - 5:21 pm
0 votes

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

0 votes

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

  • Mariano answered Mar 18, 2019 - 4:23 pm
0 votes

I figured it out and provided the change to the other ticket.

https://wisej.com/support/question/theme-graphite-3-issue

0 votes
In reply to: Theme Graphite-3 Issue

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”
}
}
}
},

0 votes
In reply to: Theme Graphite-3 Issue

Thanks Angelo,

logged as issue #1834. We´ll inform you when it´s fixed.

Best regards
Frank

0 votes

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

0 votes

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…

0 votes

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

0 votes

Hi Jens

Exactly what I needed
Thank you

0 votes

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

  • Jens (fecher) answered Mar 14, 2019 - 3:42 pm
  • last active Mar 14, 2019 - 3:43 pm
0 votes
In reply to: Menu Separator

Hi Jens,

Very Simple, Work perfectly.
Thank You very much

0 votes

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

0 votes
In reply to: Menu Separator

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

  • Jens (fecher) answered Mar 14, 2019 - 7:45 am
  • last active Mar 14, 2019 - 7:45 am
0 votes

Hi Andrew,

can´t reproduce, can you please share a test sample ?

Best regards
Frank

0 votes
  • Jeo dg answered Mar 12, 2019 - 10:54 am
0 votes

Hi Luca,

with Chrome, under WS -> Frame but I have Opcode -1

I attach screen shot

0 votes
In reply to: CKEditor

Use the setReadOnly() method in CKEditor.

this.ckEditor1.Eval(“this.editor.setReadOnly(true)”);

Or modify the extension to add a ReadOnly property.

HTH

  • Luca answered Mar 11, 2019 - 4:50 pm
0 votes
In reply to: Animation Control

You can also add multiple Animation extenders. The controls will get multiple Animation properties that can react to different events.

  • Luca answered Mar 11, 2019 - 12:58 pm
Showing 6161 - 6180 of 11k results