All Answers

0 votes
In reply to: OrgChartData

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

0 votes

Thanks guys! awesome support!

  • Mariano answered Sep 18, 2018 - 9:54 am
0 votes

Hi,

Please check whether the error happens when using the new development release 1.5.17

0 votes

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

0 votes

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

 

0 votes
In reply to: Version 1.5.16

Hi Ulisses,

this problem is also fixed in Wisej dev build 1.5.17. Reference number is #1551.

Best regards
Frank

0 votes

Hi,

#1561 is fixed in the latest Wisej development build (1.5.17).

Best regards
Frank

0 votes
In reply to: FlowLayoutPanel Bug

Hi Robin,

#1563 is fixed in our latest Wisej dev build (1.5.17)

Best regards
Frank

0 votes

Hi Mariano,

#1564 is fixed in our latest development build (1.5.17).

Best regards
Frank

0 votes
In reply to: Google Maps extension

Hi Frank

I want to routing two point between is it possible ?

 

Thanks

 

 

 

  • Saqıp answered Sep 17, 2018 - 2:59 pm
  • last active Sep 17, 2018 - 3:03 pm
0 votes
In reply to: ChartJS Tooltips

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

0 votes
In reply to: ChartJS Tooltips

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.

  • Megasp Software answered Sep 17, 2018 - 10:16 am
  • last active Sep 17, 2018 - 10:17 am
0 votes

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

0 votes

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

0 votes

Hi Mariano,

Logged as #1564 Sorting a DataGridView bound to a ORM LLBLGen Pro data source causes blank rows.

0 votes

Hi Preecha,

Logged as #1561 CurrentCell.RowIndex is not update before firing DataGridView.SelectionChanged.

  • Tiago (ITG) answered Sep 15, 2018 - 4:51 pm
  • last active Sep 15, 2018 - 10:26 pm
0 votes
In reply to: FlowLayoutPanel Bug

Hi Robin,

Logged as #1563 FlowLayoutPanel with AutoSize=true doesn’t resize to 0 height when all children are hidden.

1 vote
In reply to: OpenFileDialog

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();

}

 

  • Luca answered Sep 15, 2018 - 6:56 pm
0 votes

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?

  • Luca answered Sep 15, 2018 - 6:40 pm
0 votes
In reply to: OpenFileDialog

Hi Luca

Can you send a small example for Amazon S3 extension ?

Thanks

 

 

  • Jack answered Sep 15, 2018 - 6:17 pm
  • last active Sep 15, 2018 - 6:30 pm
Showing 6761 - 6780 of 11k results