Hi Vincent,
This seems to be an old issues with the Bootstrap theme and it was fixed a while ago.
Are you using a Wisej version that is older than 2.5.22?
If not, would you mind checking the “last modified” date of that particular theme file?
You can find it under Documents/Wisej/Themes.
From what I can see in your theme file, you are indeed using and older version of the Bootstrap-4 theme.
If you are running an old version, I would suggest that you update to our latest release and redo the theme from there.
Best,
Alaa
Hi Jorge,
Would you be able to check if you indeed have all the resource folders correctly deployed in your application?
Make sure that everything that is not a DLL is located directly into the ROOT of your application folder rather than having it inside the bin folder.
HTH,
Alaa
//
were you able to have a clue why the images don’t show on this particular case?
Hi,
Wisej 2.2x
yes, run’s ok on dev and other server
It’s something that i’m missing on this instalation, not sure what, i have all options from IIS installed.
What could it be?
here’s the sample project, and image on how it ‘s displayed
It’s not a Wisej issue. Web.config is managed by IIS.
Hi Jorge
Please, could you provide us with more details about the issue
ie
– wisej version
– the app run ok in other test machine?
– other wisej app works ok in the problem machine?
– send us a small test wisej app that also works wrong on the problem machine
thanks and regards
I’ve a datagridview with 5 columns defined from designer. The first column is an imageColumn. At runtime I want to add 10 rows and for each row at first column I have to assign a different image…I use the last wisej version (2.5.30)…In vwg I use this code and it’s work:
Private Sub MyDgv_CellFormatting(ByVal sender As Object, ByVal e As Gizmox.WebGUI.Forms.DataGridViewCellFormattingEventArgs) Handles MyDgv.CellFormatting
dim GRT_IML = 0
If e.ColumnIndex = GRT_IML Then
Try
e.Value = myImageList.Images(e.RowIndex)
Dim dgcImage As Gizmox.WebGUI.Forms.DataGridViewImageCell
dgcImage = MyDgv.Rows(e.RowIndex).Cells(e.ColumnIndex)
dgcImage.ImageLayout = DataGridViewImageCellLayout.Stretch
dgcImage.Update()Catch ex As Exception
End Try
End If
MyDgv.Update()End Sub
I’ve tried to repliate it but in wisej the cells remain empty…The event is fired and I have no errors but the images aren’t visible…
Hi
we tried on our end but could not reproduce yet.
Can you please provide us with a test case and also tell us the Wisej version you´re using?
Thanks in advance,
Frank
Hi Neil,
this is fixed in our latest Wisej release (2.5.30).
Best regards
Frank
Hi Junarism,
this issue is fixed in our latest Wisej release (2.5.30).
Best regards
Frank
Hi Cristian,
I send an attachment of Horizontal Chart range.
just invert xAxes.Type with yAxes.Type and use chartJS3
Happy coding,
Kevin (ITG)
Hi Ruben,
please provide a runnable test case to show how you fill the table and the HTML you´re using.
Best regards
Frank
Hi
You can Set Opacity prop to a value lower than 1 or also just set Enabled = false, sets the opacity to 0.8
or the opacity or the blur filter in css either in the theme or the cssstyle property.
This settings looks like this
And your modified sample
HTH
Hi Cristian,
I send you in attachement ChartJS Range sample.
You must use https://www.nuget.org/packages/Wisej-2-ChartJS3 for latest implementation on ChartJS.
Best,
Kevin (ITG)
Hi Edmundo,
I wanted to follow up on this issue. Is this the horizontal bar chart you’re looking for? Please see the attached sample.
Best regards,
Levie
Hi Kevin
I have see Levie post example here for horrizontal bar: https://wisej.com/support/question/help-with-chartjs
but if I run, the chart is empty. It is a bug?
best
The button in the inactive window shouild be grayed out as well. Please see attachted screenshot.
Hi
Could you please attach a small runnable sample to better understand of your goal ?
Thanks
Hi Kevin,
yes I use ChartJS extension, in the original chartjs, I can pass two y value for create range chart. In the wisej extension is not possibile.
For linear chart, do you have any suggestions?
best
Cristian
Hi Christian,
With Wisej you can integrate any Js package, You just need to know which JS package allows you to make this style of graphic
See https://docs.wisej.com/docs/controls/content/widget for more information.
And we have an implementation of Chart JS : ChartJS – Wisej Extensions
Best,
Kevin (ITG)
