It’s not a Wisej.NET issue. The publishing is done by Visual Studio. You may want to contact Microsoft.
Thank you for reporting the issue on Wisej.NET 3.2 Beta!
Hi Joao,
this is now fixed in Wisej release 3.1.8
Best regards
Frank
Hi Neil,
this is fixed in Wisej release 3.1.8
Best regards
Frank
Hi,
fix is included in our latest release build (3.1.8).
Best regards
Frank
Jesus,
it´s fixed in Wisej release 3.1.8.
Best regards
Frank
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.
What is the issue? I tried and it works perfectly. Attach a test case showing the error in case you need further assistance.
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 ..
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.
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
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
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
I cannot reproduce. Can you send a sample? The spacing between the accordion panel headers shouldn’t have changed. See screenshot.
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.
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
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.
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.
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
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