All Answers

0 votes

Dear Alaa

 

I found this cause the problem, do you have experience how to solve this

 

Thanks

Nicky

0 votes

Server support conversation:

Wisej is also not giving me enough information to resolve this, they keep saying that they my project is .net framework and to check the server. The also don’t have access to my files the way you do. Believe me I don’t like to keep asking these questions and take many hours of guessing what everybody means in their very short replies. I have tried to follow all the instructions on your kb, I wouldn’t just ask here if they didn’t work.

I’m about 95% sure I am *not* working with .net core but can’t tell as I don’t have any information about why you keep saying that and assuming I’m working .net core.

Maybe since Wisej doesn’t want to help you can take a minute to explain what you mean by “the one you’ve uploaded is a .NET Core one” and “make sure you’re working with the .NET Core version.”

 

From: Winhost <support@winhost.com>

“Wisej support said “Usually, if your deployed application has an .exe file, or doesn’t have a bin folder that means that it’s being deployed as a .NET Core application. “… is this what’s happening and how to i fix it if it is? ”

We stated:

“Wisej has 2 implementations, a .NET (Core) one and a .NET Framework one.  Either will work in our environment, however, the one you’ve uploaded is a .NET Core one.  The one in your screenshot is for .NET Framework.  You usually can’t mix the two, so I really don’t know what’s going on. ”

This is something you need to review locally as we’re limited with the amount of support we provide locally. My suggestion is to make sure you’re working with the .NET Core version and then follow the instructions on how to web deploy here: https://support.winhost.com/kb/a1604/visual-studio-publish-web-deploy.aspx

Please let me know if you have any further questions.

Winhost Support

  • Stephen Glickman answered Feb 21, 2023 - 4:39 am
  • last active Feb 21, 2023 - 4:39 am
0 votes

I need, to pick each value of the checkbox, in a column, and store in a counter the total of true values.

  • Jay Marl answered Feb 20, 2023 - 6:58 pm
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.

Showing 1581 - 1600 of 11k results