Hi Hasan,
what OrgChart library are you trying to use in Wisej.
Find an older discussion with sample code here:
https://wisej.com/support/question/would-be-great-to-have-a-orgchart-wisej-control
Maybe it´s the same that you are trying ?
If it´s not, we need more information like download link etc.
Hope that helps.
Best regards
Frank
Thanks guys! awesome support!
Hi,
Please check whether the error happens when using the new development release 1.5.17
Hi Tiago,
for the moment i can’t reproduce an example because my app it’s a bit complex and when i try to reproduce i can’t get the same error, so if you can tell me from where this error is came i can fix it in my app.
Thanks
Hi Edmond,
I have built a simple sample that shows how to redirect ListView items by drag & drop:
http://wisej.s3.amazonaws.com/support/attachments/ReorderListViewItems.zip
Please make sure to use it with Wisej dev build 1.5.17 to benefit from the latest enhancements.
Hope that helps.
Best regards
Frank
Hi Ulisses,
this problem is also fixed in Wisej dev build 1.5.17. Reference number is #1551.
Best regards
Frank
Hi,
#1561 is fixed in the latest Wisej development build (1.5.17).
Best regards
Frank
Hi Robin,
#1563 is fixed in our latest Wisej dev build (1.5.17)
Best regards
Frank
Hi Mariano,
#1564 is fixed in our latest development build (1.5.17).
Best regards
Frank
Hi Frank
I want to routing two point between is it possible ?
Thanks
The fastest way that i found to integrate it with wisej, is modifying the Wisej ChartJS Extension, adding a new class OptionsTooltips with a boolean value that indicated if the tooltips was present, and a string value, that contain the custom js for the tooltips, and before to init the js, i replace $tooltips value from init js with the custom js (attaching the modified solution), and call it in the next mode
chartJs.Options.Tooltips = new OptionsTooltips { Init = true, CustomTooltipsJS = @”{
mode: ‘point’,
intersect: false,
callbacks: {
footer: function(tooltipItems, data) {
var sum = 0;
var total = 0;
var desc = ”;
var dataset = data.datasets[tooltipItems[0].datasetIndex];
desc = dataset.label;
data.datasets.forEach(function(dataset) {
total += dataset.data[tooltipItems[0].index];
});
sum = data.datasets[tooltipItems[0].datasetIndex].data[tooltipItems[0].index];
var percent = ((sum * 100) / total);
return ‘% ‘ + desc + ‘: ‘ + percent.toLocaleString(‘it-IT’, { minimumFractionDigits: 2, maximumFractionDigits: 2 }) +’ %’;
},
label: function(item, data) {
var datasetLabel = data.datasets[item.datasetIndex].label || ”;
return datasetLabel + ‘: ‘ + ‘€ ‘ + Number(item.yLabel).toLocaleString(‘it-IT’, { minimumFractionDigits: 2, maximumFractionDigits: 2 })
},
},
footerFontStyle: ‘normal’
}” };
OR modifying only the startup.js injecting my tooltips js.
Hope this can be a good solution until the tooltips option will be integrated in the wisej
Hi Tiago,
here an example of chartJS bar type, stacked with the option that i want to get.
I done it with the tooltips option and wisej doesn’t got the tooltip options.
Hi Edmond,
functions like GetItemAtX cannot be supported on the server side.
But we will support more information in e.DropTarget for ListViews like we already do for TreeViews.
It´s logged as enhancement #1569.
We´ll inform you when it´s available.
Best regards
Frank
Hi Edmond,
please refer to this discussion and Luca´s code. It should help you get there:
https://wisej.com/support/question/listview-details-drag-drop
Best regards
Frank
Hi Mariano,
Logged as #1564 Sorting a DataGridView bound to a ORM LLBLGen Pro data source causes blank rows.
Hi Preecha,
Logged as #1561 CurrentCell.RowIndex is not update before firing DataGridView.SelectionChanged.
Hi Robin,
Logged as #1563 FlowLayoutPanel with AutoSize=true doesn’t resize to 0 height when all children are hidden.
It’s the same as FileSystemProvider with the additional S3 credential:
using (var openFile = new OpenFileDialog())
{
openFile.Roots.Add(new FileSystemProvider(“C:\\UserFiles\\User1”, “My Files”));
openFile.Roots.Add(new S3FileSystemProvider(“{BUCKET NAME}/UserFiles/User1”, “My S3 Files”) {
AccessKey = "{YOUR S3 ACCESS KEY}",
AccessSecret = "{YOUR S3 ACCESS SECRET}"
});
openFile.ShowDialog(); }
I tried this html and it works:
<a href=“http://google.com”>Google</a>
BTW, no need to call Refresh() or Update(). Can you attach a small test case?
Hi Luca
Can you send a small example for Amazon S3 extension ?
Thanks
