All Answers

0 votes

Thank you,

I Use NumericUpDown control, and now I can format with two digits the number fields.

 

0 votes

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

  • Paul answered Jul 20, 2021 - 5:17 pm
  • last active Jul 20, 2021 - 5:18 pm
0 votes

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

 

  • shady rashad answered Jul 20, 2021 - 3:37 pm
  • last active Jul 20, 2021 - 3:40 pm
0 votes

Thanks luca ,, but how i convert the default.html in start app. with default.aspx to run this issue??

  • shady rashad answered Jul 19, 2021 - 10:40 pm
  • last active Jul 19, 2021 - 10:47 pm
0 votes

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.

  • Luca answered Jul 19, 2021 - 9:11 pm
  • last active Jul 19, 2021 - 9:12 pm
1 vote

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

0 votes

Hi Levie.

Amazing! That worked perfectly.
Thank you.

Ivan

0 votes

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

0 votes

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

0 votes

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.

 

  • Paul answered Jul 16, 2021 - 5:40 pm
  • last active Jul 16, 2021 - 5:44 pm
0 votes

Thank you.

0 votes

Hi Preecha,

You can upgrade to 2.5.3 beta. It work fine there

Best,

Kevin (ITG)

 

  • Kevin answered Jul 15, 2021 - 11:38 am
0 votes
In reply to: Undocumented updates

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:

Wisej 2.5 beta

Best regards
Frank

0 votes

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….

  • Junarism answered Jul 15, 2021 - 5:47 am
0 votes

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

 

  • Paul answered Jul 15, 2021 - 4:47 am
0 votes

Thank you. Got the idea.

0 votes

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

0 votes

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.

  • Luca answered Jul 14, 2021 - 3:05 pm
0 votes
In reply to: ListView Binding event

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:

  • Creating a textbox in each item in a ListView trying to replicate a DataGridView is a faulty approach. Use a DataGridView instead
  • The sample is using DataSourceUpdateMode.OnPropertyChanged on each TextBox data bound on each record in the ListView and attaching a KeyDown event causing the Text property to change on each keystroke causing the data source to change causing an update to the ListView and the recreation of the TextBox in your listView1_ItemBinding
  • Etc…

Use a DataGridView or a DataRepeater instead.

  • Luca answered Jul 13, 2021 - 9:13 pm
0 votes
In reply to: OpenFileDialog Filter

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

 

Showing 3481 - 3500 of 11k results