All Answers

0 votes

Hello Manfred,

Would you be able to wrap a sample to check exactly what you’re trying to achieve?

Also, some additional info is required:

  • Are you using an HTML panel where you’re hosting your button?
  • Where exactly are you loading the javascript function?

TIA,

Alaa

//

0 votes

Hi Alaa,

Actually, I am having troubles to install this extension as well. I have followed your steps to install WiseJ-3-PrintPreview, but I can’t find this extension on NuGet. I am using other extensions (such as WiseJ-3-TinyEditor, WiseJ-3-TinyMCE and WiseJ-3-NavigationBar) and I could find them without any problems. Can you help me?

Thanks in advance.

João Paulo

0 votes

Thanks

  • Jay Marl answered Jan 6, 2023 - 11:08 am
0 votes

Jay,

you might want to check the SelectionMode of your DataGridView:

https://docs.wisej.com/api/wisej.web/lists-and-grids/datagridview#selectionmode

Best regards
Frank

0 votes

but in this case, can i import the png image inside my project, and reference the path directly?

0 votes

Hi Luca,

I created a sample program.

best regards

Bernhard

0 votes

Hi Jay

.ico is not supported. ImageSource can be the name of an image in the theme or the relative path to an image resource or a url. just like any image loaded by a browser.
HTH
  • Paul answered Jan 4, 2023 - 8:12 pm
0 votes

Hi Jay,

You can try to use one of the RichTextEditors extensions,

You can try TinyMCE, TinyEditor, or if you want something that resembles a code editor you can also use the AceEditor extension!

They’re all available as NuGet packages or you can directly build them yourself.

Best,
Alaa

//

0 votes

Hi Jay,

Adding to my last answer, you can also set the visibility of each column according to your needs.

It would be better to implement your own filtering logic in the button click event and then you can decide what column you want visible or not.

Also, if you wish to have manual control, you can also use the ColumnVisibilty Menu.

The ColumnFilter extension is better used to filter rows.

HTH,
Alaa

//

0 votes

Hi Jay,

You can use the ColumnFilter extension available as a NuGet Package, or you can also build it from source.

With it, you can add your own custom filtering logic and tailor it to your needs.

HTH,

Alaa

//

0 votes

Hi Kürşat,

Can you please send a reproducible test sample?

Thanks!
Alaa

//

0 votes

Hi Bjorn,

The easiest thing you can do is installing the extensions via the NuGet Package Manager in Visual Studio.

It’s as simple as right clicking the solution, then choosing the “Manage NuGet Packages..” option in the resulting Context Menu.

From there, you can search for Wisej-3-PrintPreview and simply install it.

You can also build each extension from source like you were trying to do, for that you have to add both .NET4.8 and .NET 6 assemblies if your application is targeting them both.

HTH,
Alaa

0 votes
In reply to: Invalid Server License

Hi Manfred,

can you please contact us at supportATwisej.com and provide us with the full key you are using in web.config?
Then we can figure out best, what the issue might be.

Thanks in advance,
Frank

0 votes

Hi Manuel,

You can implement it using JavaScript as mentioned in their documentation.

You can build it using whatever web system you are familiar with then use the JavaScript in a Wisej page.

You can also contact us for a quote on our professional services: https://wisej.com/services-packages/

HTH,
Alaa

//

0 votes

Hello Luca,

We already tried this and is is is not working. If we set Application.CurrentCulture and read it back we still get the old instance back.

static void Main()
{
 var enHU = new CultureInfo("en-HU");
 var huHU = CultureInfo.GetCultureInfo("hu-HU");
 enHU.NumberFormat = huHU.NumberFormat;
 enHU.DateTimeFormat = huHU.DateTimeFormat;
 
 Application.CurrentCulture = enHU;
 if (Application.CurrentCulture == huHU) {
  MessageBox.Show("nothing changed");
 }
 
 Application.MainPage = new Page1();
}
0 votes

Zip the dll and send it to the support email address please.

  • Luca answered Jan 3, 2023 - 4:01 pm
0 votes

Snippet

static void Main()
{
 
	var enHU = new CultureInfo("en-HU");
	var huHU = CultureInfo.GetCultureInfo("hu-HU");
	enHU.NumberFormat = huHU.NumberFormat;
	enHU.DateTimeFormat = huHU.DateTimeFormat;
	
	Application.CurrentCulture = enHU;
 
	Application.MainPage = new Page1();
}

Works well. It’s not a workaround, a culture with english language and hungarian formatting is a custom one by definition.

If you need a custom solution change request, please send the request through the TP channel.

  • Luca answered Jan 3, 2023 - 3:56 pm
0 votes

yes indeed there’s a print dialog, where to enter the path and filename.

should work via this extension: https://github.com/iceteagroup/wisej-extensions/tree/2.5/Wisej.Web.Ext.PrintPreview

can somebody let me know the easiest way how to add this extension please?

I never did this before so don’t know which files I need to download and where to locate them and how to add them in visual studio.

thanks in advance.

0 votes

Hi Bjorn

Is probably that you are showing a print dialog on the server.
Microsoft Print to PDF shows a dialog box usually to pick a file. In any case, not a Wisej issue.
Here another thread that can help you
hth and happy new you year for you too
  • Paul answered Jan 3, 2023 - 12:32 pm
0 votes

Hi Alaa,

thank you for you response but CultureAndRegionInfoBuilder is not supported in .net core.

We also tried to clone CultureInfo and set all the format related properties like NumberFormat but WiseJ ignores this when setting Application.CurrentCulture and stays the old value. Even if it would work I would also count this as a work around.

In the dotnet world the UICulture and Culture are very important for any international company.

I understand that this might be a breaking change for WiseJ. Would this possible for WiseJ 4?

best regards

Bernhard

Showing 1661 - 1680 of 11k results