Hi
Can you send us a sequence of screenshots with the steps that you describe?
I suggest you offuscate all sensitive data for you in the pictures and send us to support@wisejDOTcom
Its a very unusual issue
Regards
In the meantime
You can play with our sample app MDI and add this code to play with colors on mdi tab
for change color
MdiClient.TabControl.TabPages[0].TabBackColor = Color.Green;
Hi Neil
Could be possible that you attach a picture or scheme drawing of what you have in mind ?
Regards
Hi
I was wrong in the sample. I used a tab control instead of the ribbonbar extension. My bad
Now I attach the right sample 🙂
Anyways, the ribbonbar must be used in conjunt with a panel for has the functionality that you describe.
And is not necessary use a third party control
With wisej and his extensions is possible to has the same winforms standars UI functionalities.
Here the link to Ribbonbar documentation
HTH
Hi
Comments about your code
CellValueNeeded is fired when the virtual cell needs the value and the only thing to do is to assign e.Value.
Using gv.Rows[e.RowIndex][colBalance].Style.BackColor = Color.LightBlue he’s causing the creating of all the rows and all the cells while the grid is responding to a data request making the virtual mode useless
Solution
Use the event CellFormating
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
e.CellStyle.BackColor = Color.Green;
}
Now in Wisej-Net DataGridView is using a fully virtual row system
The color is save correctly by wisej, if you hit refresh you see it.
More details about DatagridView you can see in Wisej-Net documentation
Hth
Hi Jorge
Using the combobox control with AutoComplete mode you can achieve this goal
Here more detail in wisej-net documentation
HTH
Hi
For occulting the tabs you can simply set his property visible to false when you colapse the panel and to true whe expand it
Here an image of the sample code and how it seeing
HTH
Ruben
Maybe you have enabled the property AutoHide=true in the UserPopup control
This property close the control, not hide it
Here the docs
https://docs.wisej.com/api/wisej.web/containers/wisej.web.userpopup#autohide
Also I attach a little runnable sample
HTH
regards
Hi
thanks for write us
Wisej ribbonbar hasn’t 100% equivalent respect winforms but you can has the same functionality using a panel and puting a ribbon bar into it .
I attach a sample demo of how to achieve this.
HTH
Hi Ruben
Please, can you attach a little runnable sample that reproduce the situation?
Thanks
Thanks for write us
We are working hard to have soon learning documentation about it
Regards
Hi
Thanks for write us
yes. they are also available for the community license (they show a watermark at design time and an alert at runtime).
Here you can see our license model
HTH
Hi
With what version of Wisej are you working?
Regards
Hi Sean
This is fixed in the recent release 2.5.32
Regards
I attach a little sample that show how to use it
HTH
Hi Shady
Have you seen the Geolocation extension?
https://github.com/iceteagroup/wisej-extensions/tree/2.5/Wisej.Ext.Geolocation
Hi
I attach your sample slightly modified for right working of the datagridview using a combobox column
Regards
Hi Sean
Thank you for commenting on this topic.
I was able to reproduce it with their test application and I reported it to the development team.
I will comment again when the solution is available.
Regards
Hi Sascha
For better understand you case
A. You have a logo on a folder of the app, name Logo.png that is used in a pictureBox
B. The user update with new image file, owerwriting the previous file with the same name but diferente image
C. The app not refresh the old image on pictureBox, until only he done a F5
I understand you correctly?
regards