All Answers

1 vote

It’s not a Wisej.NET issue. The publishing is done by Visual Studio. You may want to contact Microsoft.

  • Luca answered Feb 20, 2023 - 4:47 pm
0 votes
In reply to: Wisej_3_2_0_8

Thank you for reporting the issue on Wisej.NET 3.2 Beta!

  • Luca answered Feb 20, 2023 - 3:19 pm
0 votes

Hi Joao,

this is now fixed in Wisej release 3.1.8

Best regards
Frank

0 votes

Hi Neil,

this is fixed in Wisej release 3.1.8

Best regards
Frank

0 votes

Hi,

fix is included in our latest release build (3.1.8).

Best regards
Frank

0 votes

Jesus,

it´s fixed in Wisej release 3.1.8.

Best regards
Frank

0 votes

Yes. The community version doesn’t limit deployment. The issue you see is unrelated to Wisej. It’s simply aspnet core misconfiguration in your test app. We have a step by step deployment guide and you may also follow any documentation from Microsoft on how to configure IIS to use aspnet core.

  • Luca answered Feb 18, 2023 - 4:18 pm
0 votes

What is the issue? I tried and it works perfectly. Attach a test case showing the error in case you need further assistance.

  • Luca answered Feb 17, 2023 - 10:18 pm
0 votes

 

Immediate window  results of attempt to manually set SelectedIndex to -1 ( releasing the selected tabPage at Position ZERO )   from being selected..

I thought this might allow me to then remove it from the TabPage collection

since its no longer the active selected

but of course its still selected  as I can’t set selectedIndex  to    -1

or unselect the selected tab …   I am assuredly GUESSING that these set properties

are hindering the removal of the tab ..

 

0 votes

Any standard ASP.NET hosting service works. We don’t host and it doesn’t need any extra support other than basic ASP.NET skills.

  • Luca answered Feb 17, 2023 - 7:19 pm
0 votes

Hello,

I’m not exactly sure what you mean by “I couldn’t get this event  TabControl .  [ SelectedIndexChanged ]  to fire until I extended it to a custom method”

All events have to be attached to an event handler, otherwise, they wouldn’t be fired.

What you did to update the Browser Tab Title is correct, but it can be done in fewer lines of code like:

 

private void tabControl1_SelectedIndexChanged(object sender, EventArgs e)
{
TabControl tabControl = (TabControl)sender;

Application.Title = tabControl.TabPages[tabControl.SelectedIndex].Text;
}

HTH,
Alaa

0 votes

I found the issue.  In v2.x I had to change each AccordionPanel.HeaderSize to make it look right.  In v3 .x it looks right if I remove this and go with the default.

I had forgotten that that code was in there.

Thanks,

Shawn R

0 votes

Hi Alaa

My app don’t write anything to bin folder except i want to update my apps, then i am copy the dll file to there.

Thanks

 

Nicky

0 votes

I cannot reproduce. Can you send a sample? The spacing between the accordion panel headers shouldn’t have changed. See screenshot.

  • Luca answered Feb 16, 2023 - 7:49 pm
0 votes
In reply to: ComboBox - Images

You can also see an example of another approach in the documentation here: https://docs.wisej.com/docs/controls/lists/combobox
In this example, you use data binding with a data source with icon names and use the IconMember to specify the property.

Here’s a sample.

0 votes

Hi Nicholas,

You can change the MobileIntegration PackageReference from

<PackageReference Include= Wisei-3-Mobileintegration Version=”3.*-*” /> to

‹PackageReference Include= Wisei-3-Mobileintegration Version=”3.0.*-*” />

And you should be all set!

HTH,

Alaa

0 votes
In reply to: ComboBox - Images

Yes, it’s possible. It’s actually quite simple.

First, look at the properties of your combobox in the designer. Set AllowHtml to True.
Now that AllowHtml is true, you can use a HTML img tag to embed an image in the text of the combobox.

I’ve attached a sample- just go to the combobox in the designer and click on “Edit Items” to see the img tags that I used.

You can use an image that is stored in the project by using a relative file path, or you can use an online image by providing a url that links to the image.

0 votes

Hi Alaa,

I fixed it. It was a miss line in my Web.config file which enables upload of files above  4mb in runtime.

Also thanks for your time Alaa.

0 votes

Hi Nicky,

Looks like your app is writing to the /bin folder or it’s changing something that forces IIS to reload.

This is not a Wisej.NET issue, I’m afraid!

Best,
Alaa

0 votes

Hi Alaa

Thanks for quick respon.

Before i had set the sessiontimeout = 3600.

I don’t think this cause by sessiontimout, because i always found there notification windows when session want to expired.

 

Thanks

Nicky

 

Showing 1501 - 1520 of 11k results