Hi Dino
You can support different version Wisej apps on same development machine as also you can have different .net framework sdk
Here you can found more info
Wisej Nuget documentation
Regards
Hi John
Thanks for your question
Wisej works exactly the same with F# except that you cannot use the designer because it only generates C# or VB.NET files.
But in F# you can as easily write code that builds forms, adds controls, etc.
Regards
Hi Jorge
Complementing what done Alaa, Im done the nexts steps to verify the problem
Im done a local publis from visual studio for your solution
For the output folder, I done a local IIS Application and works OK
After, the same files on the outputfolder, I uploaded on a server web hosting and also working OK
Here you can check your test app published Test-Wisej-App
All this indicate us that the problem is not a Wisej issue
Regards
Hi Jorge
Please, could you provide us with more details about the issue
ie
– wisej version
– the app run ok in other test machine?
– other wisej app works ok in the problem machine?
– send us a small test wisej app that also works wrong on the problem machine
thanks and regards
Hi
You can Set Opacity prop to a value lower than 1 or also just set Enabled = false, sets the opacity to 0.8
or the opacity or the blur filter in css either in the theme or the cssstyle property.
This settings looks like this
And your modified sample
HTH
Hi
Could you please attach a small runnable sample to better understand of your goal ?
Thanks
Hello
Thanks for commenting on this.
There is a problem with the DateTimePicker control and our development team will fix it in the next version.
Thanks and regards
Hi
In Wisej Wisej for connecting to a database, You can use just standard .NET and any driver and any ORM and any .NET data source works.
You can check this video, that use Dapper for Sql connection or you can take any tutorial of connecting a .net desktop winforms app and addapt it to Wisej
https://www.youtube.com/watch?v=qYIEoF3TIF4
HTH and happy coding
We testing more and found that the items of type link and cheked are the ones that not be copied.
The develpment team was notified and this must be fixed in the next release
Thanks for tell us about it
Hi
This feature works fine from here
We tested with VS 2919/2022 and copying between forms and pages
If you can send a small runnable sample with the problem, we appreciate it
Small video with this working
Hi
An important remark that Zooming is not related to scrolling.
When zoomed you can pan and most mobile devices do that with two fingers.
With Wisej you can configurate your application to autoadapt for diferente screen devices
using client profiles
More detailt here
https://docs.wisej.com/docs/concepts/designer#client-profiles
And here a responsive sample app
https://docs.wisej.com/examples/examples/responsive
I modified your sample, using the last version of Wise, You must set again your referencesor update to a more newer version.
Hi
Only the source code to let us to compile
By the way, Zooming is not related to scrolling. When zoomed you can pan and most mobile devices do that with two fingers.
Regards
Hi
Please, if you could send us a minimum executable sample to check it. It would make it easier for us to help you
Regards
Hi
Please, if you could send us a minimum executable sample to check it. It would make it easier for us to help you
Hi
Important remark that Wisej makes it too easy to forget it’s a web system.
The Sorted event is fired after the data is sorted and its runned in the server. Its differente about the data displayed on the browser with the sorting of the rows.
The messagebox in the sorted event is blocking the sorting.
There is scrollcellintoview method and there is the currentcell property and the setcurrentcell method, that can help better with your task.
I adjunt a sample where can check difference betweeen scrollcellintoview and setcurrentcell
Regards
Hi, for Textbox line spacing
– Did you tried with fonts property lineHeight? whit this you can control the paragraph spacing in textbox
here a picture about it
Regards
Hi
In Wisej DataGridRow don’t have CreateCells method
If you could explain us what is your goal, we could help you in a better way
Regards
Talking about your request with dev team, an cool approach to customise control TextBox as Editor could be as follow
– Handling keyboard on the server works but creates a request on each keystroke. It’s easy to attach a client side handler.
– The TextBox control in Wisej is a container, the real <input> is inside because Wisej also adds optional tool buttons, labels.
See attached sample:
Two things:
1) the lineHeight can only be set by creating a font. In the sample see /Themes
2) type something and press “h” the javascript will replace it with Hello! and move the caret.
See ClientEvents on the textbox, javascript is in Page1.resx and textbox properties inside Page1.Desdigner.cs
HTH
Regards
Hi John
Hi
Thanks for your interest in Wisej
For we could better understand of your goal, If you can send us a runnable little sample test will be help
By the way, this cool free wisej extensions maybe be useful.
CKEditor
https://github.com/iceteagroup/wisej-extensions/tree/2.5/Wisej.Web.Ext.CKEditor
https://docs.wisej.com/extensions/extensions/ckeditor
TinyEditor
https://github.com/iceteagroup/wisej-extensions/tree/2.5/Wisej.Web.Ext.TinyEditor
https://docs.wisej.com/extensions/extensions/tinyeditor
Regards
Hi Jan
Thanks for your interest in Wisej
Reviwing your post whit our develop team, I comment you next
The third party javascript control use trivial data binding based on simple api requests
leaving all the real binding work to the developer on the server side.
Full control data binding is very complex
So extracting the data from a data source and updating the data source is not as simple as
DataSource = data.
Wisej makes it look like it’s simple. But you have to match the column data names, manage
the position, read and format the data, parse it back, manage errors, etc etc.
The easiest way to data bind to javascript controls is to do it the way they have been designed to:
— return json data in response to their http request and read the json data they send using an http post.
We provide some level of data source databinding in our integrations but it’s limited
because all those controls are not designed with the server side in mind.
Additionally data binding a hierarchical tree gets even more messy.
Hope to be help
Regards