All Answers

0 votes

Hi Neil,

thanks for posting this, but it´s not an anomaly in Wisej.

Color.FromName is only for known names:

https://msdn.microsoft.com/en-us/library/system.drawing.color.fromname(v=vs.110).aspx

If you want to use it for HTML codes you have to use System.Drawing.ColorTranslator.

If I replace your code with

ColorTranslator.FromHtml(….) it works as expected.

Hope that helps.

Best regards
Frank

0 votes
In reply to: slidebar

Hi Arda,

we just released a blog about the new Wisej.Slidebar. It includes a sample with full source code:

https://wisej.com/blog/wisej-slidebar/

Best regards
Frank

0 votes

I download installer again and now that’s ok. But my previous download has different size.

Thanks!

  • Ser Gar answered Jun 20, 2018 - 1:38 pm
0 votes

Hi Neil,

WJ-8991 is fixed in the latest Wisej dev build (1.4.99).

Best regards
Frank

0 votes

Hi Cristian,

the problem that Luca mentioned with the RowRemoved event sent initially is logged as WJ-8990 and a fix is included in the latest Wisej development build (1.4.99).

Best regards
Frank

0 votes

Hi,

WJ-8985 is fixed in Wisej dev build (1.4.99).

Best regards
Frank

0 votes

Hi Cristian,

WJ-8980 is fixed in Wisej dev build 1.4.99.

Best regards
Frank

0 votes

Hi Sergio,

thanks for checking. I rechecked my sample and it works fine.

Can you please provide us with a test case where you observe the problem ?
Please post it here or send it to frankATiceteagroup.com

Thanks in advance.

Frank

0 votes

Seems the same on 1.4.99. 🙁

  • Ser Gar answered Jun 19, 2018 - 11:32 pm
0 votes
In reply to: Deep Linking Error

Hi Puloy,

issue WJ-8969 is fixed in Wisej development build 1.4.99.

Best regards
Frank

0 votes

Hi Robin,

WJ-8968 is fixed in latest Wisej dev build (1.4.99).

Best regards
Frank

1 vote
In reply to: User Popup Fade IN

Hi Rudy,

enhancement WJ-8958 is now included in the latest Wisej dev build (1.4.99).

Best regards
Frank

0 votes

Hi Andrew,

WJ-8958 is fixed in the latest Wisej dev build (1.4.99).

Best regards
Frank

0 votes

Dear Luca

After Rows.Clear() , i fill the grid manually (as you can see), and after that in other procedure I select the row being edited like this:

 

Private Shared Function F5F6BC7D501BA43568E1CBAB75BC8836F(InOstrRowID As String) As Boolean
Dim OGridOO As CLib.CUI.CDataGridView = CType(CLib.CUtils.CobjectsRegister.FGet(“{2A3EED9A-3FC6-4503-8A80-11465474B828}”), CLib.CUI.CDataGridView)
Dim ODGRow As Wisej.Web.DataGridViewRow = Nothing
For Each ODGRow In OGridOO.Rows
If ODGRow.Cells(“RowId”).Value.ToString = InOstrRowID Then
ODGRow.Selected = True
Exit For
End If
Next
Return True
End Function

 

  • mgmst answered Jun 19, 2018 - 7:17 pm
  • last active Jun 19, 2018 - 7:18 pm
0 votes

Dear Luca,

This is how I read(rerad) the grid:

 

‘GRIDREAD
Dim OGridOO As CLib.CUI.CDataGridView = CType(CLib.CUtils.CobjectsRegister.FGet(“{2A3EED9A-3FC6-4503-8A80-11465474B828}”), CLib.CUI.CDataGridView)
Dim OSTRSQL As String = “SELECT RowID, DomainID, UserDomainID, ServerDateRegistered, Nazvanie, EIK, EIKDDS, MANAGER_DLUJNOST, MANAGER_NAZVANIE, HEADAccountantName, MOLName, OSOName, PHONE, FAX, EMAIL, ADDRESS_COUNTRY, ADDRESS_REGION, ADDRESS_NASELENOMIASTO_NAME, ADDRESS_NASELENOMIASTO_POSTENSKIKOD, ADDRESS_STREET_NAME, ADDRESS_STREET_NUMBER, ADDRESS_BLOK_NUMBER, ADDRESS_BLOK_VHOD, ADDRESS_BLOK_ETAJ, ADDRESS_BLOK_APARTMENTNUMBER FROM TOtchetniObekti WHERE DomainID='” & OStrDomainID & “‘ ORDER BY UPPER(Nazvanie)”

 
Dim OSqlDataReader As System.Data.SqlClient.SqlDataReader = Nothing
OSqlDataReader = CType(Wisej.Web.Application.OpenPages(0), Page1).FSQLServerMainDataBaseContactQuery(OSTRSQL)
Dim OdataTableResult As New System.Data.DataTable
If OSqlDataReader.HasRows = True Then
OdataTableResult.Load(OSqlDataReader)
OSqlDataReader.Close()
Else
OGridOO.Rows.Clear()
OSqlDataReader.Close()
Return False
End If

 

 

Dim ODataRow As System.Data.DataRow = Nothing
Dim ODGRow As Wisej.Web.DataGridViewRow = Nothing

 

OGridOO.Rows.Clear()

 

For Each ODataRow In OdataTableResult.Rows
OGridOO.Rows.Add()
ODGRow = OGridOO.Rows.GetLastRow
For i = 0 To ODGRow.CellCount – 1
ODGRow.Cells(i).Value = ODataRow.Item(OGridOO.Columns(ODGRow.Cells(i).ColumnIndex).Name)
Next
Next

  • mgmst answered Jun 19, 2018 - 7:10 pm
  • last active Jun 19, 2018 - 7:13 pm
0 votes

That’s correct. When using ShowDialog() the dialog is modal and the modal mask is always shown, as explained in the remarks of the ShowModalMask property. You can use that property to show the modal mask when a form is not modal.

  • Luca answered Jun 19, 2018 - 6:43 pm
0 votes

Hi Kemal,

locking rows is not yet supported. You could either use HTML for your header cell to have multiline texts or include one of the many pivot tables that are available.
Find a sample for an integration of the DevExtreme Pivot Grid here:

https://wisej.com/blog/integration1/

Best regards
Frank

0 votes

Hi Frank,

Do not just think of it as a CellFormatting event. That event is a test record. I can use other events as well. Like DataBindingComplete.

As rational reason; I made a simple PivotTable and used it as the first two lines HeaderCell. I want to use these two lines as frozen.

Thanks.

 

0 votes
In reply to: to excel

https://github.com/ClosedXML/ClosedXML         is not work on  wisej  , wisej is closedxml support ?

 

Thanks

  • Saqıp answered Jun 19, 2018 - 4:42 pm
  • last active Jun 19, 2018 - 4:46 pm
0 votes

I’m trying to reproduce. How do you reread the grid content, by setting the DataSource property?

The grid doesn’t decide what to select, it sets the first visible cell as the current cell when there is no current cell – which is the same behavior you see in WinForms’s DataGridView.

  • Luca answered Jun 19, 2018 - 2:08 pm
Showing 7241 - 7260 of 11k results