Thank you,
I Use NumericUpDown control, and now I can format with two digits the number fields.
Hi Shady
Thanks for write us
In short nops 🙁
but…
Wisej is a powerful .net javascript framework
You can create modify or create your custom thems using included theme editor
the main design of your “screens or pages” must be done into visual studio and Wisej make “the magic” of transform thems into an SPA (single page application ) javascript on client but linked in real time with server throug build in websocket comunication channel
Hope to be helpful
Regards
you can use MASKEDTEXTBOX , this is a control in the toolbox
you can make its format
Or.. you can use the INPUTTYPE property in your textbox and choose number
or .. you can type this code
textbox1.text = math.round(cdbl(val(textbox1.text),2)
thats all …
thanks
Thanks luca ,, but how i convert the default.html in start app. with default.aspx to run this issue??
Simply put an iframe element in an asp.net app and when you click the asp.net (or plain javascript) set the src attribute to the wisej app url.
Search “html and set src on iframe” on google to see how to do it.
Hi Nicholas,
In addition to Ivan’s answer,
Please see the following video for a minimal setup example: https://www.screencast.com/t/WSptCAjY
You can get the Wisej.Web.Ext.DevExtreme control library from GitHub: https://github.com/iceteagroup/Wisej-Ext-DevExtreme
HTH,
Levie
Hi Levie.
Amazing! That worked perfectly.
Thank you.
Ivan
Hi Ivan,
You can try this:
var keys = await this.dxDataGrid1.Instance.getSelectedRowKeysAsync();
When using the Instance singleton, you can add Async to the end of any asynchronous method and Wisej will automatically await and return the result of the call.
Let me know if this works for you!
Regards,
Levie
Hi Nicholas.
I am not THE expert on this, but I have been helped a lot around here and have been able to get a few dxDataGrids working in my application.
Allow me to give you a link which will have a great sample posted by Levie that has many important elements in order to get it working:
https://wisej.com/support/question/how-to-configure-a-dxdatagrid-master-detail
I am sure the support team will jump in and help get you going, but if you need some more specific info about the sample or any other detail you might be missing, post it here and I will try and help if possible.
Best,
Ivan
Thanks for your comment
For now, the animation for expand and collapse are done by design.
Here a sample video how it look on mayor browsers that Wisej has focused it compatibility. IE11, Firefox, Chrome, Edge.
Thank you.
Hi Preecha,
You can upgrade to 2.5.3 beta. It work fine there
Best,
Kevin (ITG)
Vincent,
are you refererring to the 2.5.* builds? They are clearly tagged as beta builds.
You can find more information about our upcoming 2.5 release here:
Best regards
Frank
Hi Paul,
I’d followed the “A. solution” change the background on my mixin theme… and now it looks good to me…
Thanks you very much….
Hi Junarism
Our apologies for late answer
In relation to your question
The area you calls “empty” column is not a column. it’s simply the remainder of the row.
For solution this you can
A. Set the background of the row instead of the setting the background of each cell (which is what shows in his screenshots).
B. Or remove the borders
C. Or make the columns to fill the remainder of the grid
D. Or remove the alternated background in the theme
I attach a sample with these alternatives
Hope that be helpful
Best Regards and happy coding
Thank you. Got the idea.
Hi Vincent,
Sorry for the delayed response.
We’re already investingating this issue and I’ll notify you as soon as we release the fix.
Thank you,
Alaa
You can’t convert an HTMLElement to JSON. It’s a browser javascript object. You can create a map with the properties you need and send that to the server.
When you type in the text boxes in the image attached you are causing the binding property to change, causing the data source to change causing the listview to reload the list because List<> is not BindingList<> and doesn’t keep the record index. Change it to BindingList<> and only the modified record will be updated. But:
Use a DataGridView or a DataRepeater instead.
I figured out the issue why the filter was not getting applied. So in the filter property -$”Files ({files})| {files}”, the space after the vertical bar was causing the issue.
Removing the space helped in showing the filtered files.
thanks
praveena
