Hi Kirk
It is possible to apply HTML formatting to the text, with certain restrictions
Here are a couple of examples of how you can do it
Column0.ToolTipText = String.Format(“<font face=\”Microsoft Yahei\” color=\”blue\”>{0}</font>”, “Tooltip Text”);
Column1.ToolTipText = “<b> Bold text</b> Normal text<u> Underlined text </u> <i> Italic Text</i>”;
Regards.
Hi Kirk
A scope to my previous answer
If your goal is to put html tooltip for the datagridview cells, unfortunately this feature is not supported.
Datagridview cells are not rendered as widgets but as HTML with a title attribute interpreted by the browser as the tooltip.
Regards
Hi Boris
I made a test with the link you provide us
It could be that you have updated your application since you post your query.
I didn’t find any problem with selecting the textbox on screen
The mobile for the test is a MotoG5, something old ;-), with three browsers, Opera, Chrome and the phone standard
In the picture more details
Regards, Paul

Hi Jorge
From your question I understood that you have a value that is not boolean, but you want to checkbox will show it checked and unchecked.
Independent from the database, it’s the datatable or object structure that you populate from database the important stuff.
In the sample proyect, I populate a datatable with diferente logical values in diferent datatpyes and used it how datasource for a datagrid with checkbox.
The checkbox take the int and string values how logical and show how checked and unchecked
Datagrid above with custom columns and ckeckbox columns linked with
Datagrid below without columns,

Code for populate DataTabe

I hope helped you
Regards
Paul
Hi Cristian
Could you indicate us the wisej control that you are animating and the name and event of the animation ?
Regards
Hi Cristian
I attached and example where the animation control works fine.
There are an animation in the user control when you mouse over it and into the gui controls that it containts.
The events of animation into the controls user control works well.
The events of animation for the control also work well, only commented for not be overlayed.
If these sample not work into your enviroment, please tell us the versions of visual studio, wisej and browser are using and send a sample of the case.

Regards
Hi Jose
I tested the sample that you send and works well.
I test the conditions that you comment, click into NavigationBar and Toolbar.
I use the lastest version of chrome and FF to test it.
¿are you using the last version of wisej?
The test result

Regards
Hi Roberto
I tested your sample proyect to into a free cloud hosting that has support .net apps.
The functionality its ok
This is the link
http://wisejnumericupdown.gearhostpreview.com
The cloud service comany is http://www.gearhost.com
You can crete a free account and create cloudsite app and use a visual studio publishing file for test your sample proyect outside the development environment.
Its very simple publish your app.
More details for publish your proyect into this cloud service, unfortunately its is outside the scope of wisej support.

Regards.
Hi Robert
With your last comment I could reproduce the issue 🙂
Effectibly when edit manually the values in the NumericUpDown and DateTimePicker, and without leave the control, click directly on button, the code under the buttons that reference this controls, dont takes the input value.
I’ll raise this issue to the development team and comment to you when the fix be available.
Regards and happy coding.
Hi Jose
¿Did you test downloading a excel file, with the same structure that show in your code and opened as a stream before download?
I know that is not you need, its for discart some issue in the library that you use
Sample code
using (var stream = new FileStream(Path.Combine(Application.StartupPath, “Excel.xls”), FileMode.Open, FileAccess.Read))
{
Application.Download(stream, “Excel.xls”);
}
Regards
Hi Jose
Great!
I tested your code and before to generate a file from stream I reset the position zero. and works perfect
Here the test
//auto fill the range with the first cell’s formula or data
workBook.editCopyRight();
//select range A1:F7
workBook.setSelection(0, 0, 6, 5);
//Creating an AutoFilter
workBook.autoFilter();
//Counting the auto filtered value in the cell “E11”
workBook.setFormula(10, 4, “SUBTOTAL(2, B1: B7)”);
workBook.write(stream);
//*** resetting the position of the stream to the beginning
stream.Seek(0, SeekOrigin.Begin);
Application.Download(stream, “test.xls”);
//*** resetting the position of the stream to the beginning
stream.Seek(0, SeekOrigin.Begin);
Application.DownloadAndOpen(“_selft”, stream, “test2.xls”);
Regards
Happy coding
Hi Jorge
You must follow this steps
1.- Create a new theme, using existing one, for example Blue-1
2.- Change to theme Graphite-3 and select the menu item
3.- Copy the section css from the Editor tab
“css”: “{\”before\”:{\”content\”:\”\”,\”display\”:\”block\”,\”position\”:\”absolute\”,\”top\”:\”0px\”,\”left\”:\”0px\”,\”width\”:\”32px\”,\”height\”:\”100%\”,\”background-color\”:\”control\”}}”
4.- Turn to your custom theme and find “menu” : in the editor tab
5. Add the css section copy in step 3 at the end of the block. like that
“menu”: {
“states”: {
“default”: {
“styles”: {
“width”: [1, 1, 1, 1],
“color”: “windowFrame”,
“backgroundColor”: “menu”,
“shadowColor”: “buttonShadow”,
“shadowLength”: [1, 1],
“shadowBlurRadius”: 15,
“css”: “{\”before\”:{\”content\”:\”\”,\”display\”:\”block\”,\”position\”:\”absolute\”,\”top\”:\”0px\”,\”left\”:\”0px\”,\”width\”:\”32px\”,\”height\”:\”100%\”,\”background-color\”:\”control\”}}”
I hope I’ve helped
Regards
Hi Jorge
A.- For more details about theme editor, you can get it in the online guide. Click on the yellow icon at right of version number
https://docs.wisej.com/theme-builder/
B.- For create your custom icons, I suggest that export all icons from one theme and edit it with and vector app, like inkscape
After create your icons, import them to the theme for replace that you want
You can use custom names, but be carefully in replace in other sections of the theme file were was used the prior name
C.- For setting margins of one icon, see the images adjunct
In Dev time you can’t set properties of the theme, just use the resources like icons, to assign them to a element, like a button or item menu
Regards and happy code
Hi Jorge
For now the theme editor don’t have this functionality
I’ll comment at develop team your suggest, to include in a future this functionality
How workaround, I suggest you copy the custom theme to the default directory that use the application.
Regards
hi Antonio
Sorry for the delay response.
For build reports, you can use any tool that are compatible with .net
We cant recommend any specific tool, but many of our clients use Crystal reports.
Here I copy a thread of a consult related with Crystal
I hope to will be useful
Regards and happy codding
Hi Ulises
Thanks for report the issue !
I’ll inform to developer team and confirm you when be corrected
Regards and happy coding
Hi Florian
Thanks for reports this issue
In the project sample, is missing the file fonts.mixin.theme
¿Could be possible that you attach them?
Regards and happy coding

Here left you a small sample with the same textbox validation, in webgui and wisej.
Maybe he refer to this… (see imagen)
