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
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
I download installer again and now that’s ok. But my previous download has different size.
Thanks!
Hi Neil,
WJ-8991 is fixed in the latest Wisej dev build (1.4.99).
Best regards
Frank
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
Hi,
WJ-8985 is fixed in Wisej dev build (1.4.99).
Best regards
Frank
Hi Cristian,
WJ-8980 is fixed in Wisej dev build 1.4.99.
Best regards
Frank
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
Seems the same on 1.4.99. 🙁
Hi Puloy,
issue WJ-8969 is fixed in Wisej development build 1.4.99.
Best regards
Frank
Hi Robin,
WJ-8968 is fixed in latest Wisej dev build (1.4.99).
Best regards
Frank
Hi Rudy,
enhancement WJ-8958 is now included in the latest Wisej dev build (1.4.99).
Best regards
Frank
Hi Andrew,
WJ-8958 is fixed in the latest Wisej dev build (1.4.99).
Best regards
Frank
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
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
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.
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
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.
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.
