HTML5 Data Bindings Support Product Page
Answered
Replacement for repeatRender.dmxDataBindings
Asked 23 Jan 2014 12:58:08
1
has this question
23 Jan 2014 12:58:08 Andre Bender posted:
I used the repeatRender.dmxDataBindings funktion to call a JavaScript in order to add a tooltip function. The repeatRender.dmxDataBindings has been taken out with the newest version 1.5.0.Is there any replacement for that or how do I call a custom JS function after loading of dmxData?
Replies
Replied 24 Jan 2014 15:28:32
24 Jan 2014 15:28:32 Teodor Kuduschiev replied:
Unfortunately this is not possible in the current versions.
What you can do is to add the following code on your page:
Where 500 is the delay in ms
What you can do is to add the following code on your page:
$(document).ready(function(){ setTimeout(function(){ //Your code here },500); });
Where 500 is the delay in ms
Replied 24 Jan 2014 15:36:55
24 Jan 2014 15:36:55 Andre Bender replied:
Thanks Teodor
I guess this is not really the idea of your "After data has been loaded" behavior isn't it?
I hope you will add the after render feature again in the next update and add it to the documentation.
I guess this is not really the idea of your "After data has been loaded" behavior isn't it?
I hope you will add the after render feature again in the next update and add it to the documentation.
Replied 24 Jan 2014 15:43:09
24 Jan 2014 15:43:09 Teodor Kuduschiev replied:
The function you were using in the previous versions was not available public, it was used by our developers only.
I will discuss the idea of adding an "After Repeat Regions Loaded" event with the developers.
I will discuss the idea of adding an "After Repeat Regions Loaded" event with the developers.
Replied 24 Jan 2014 15:55:41
24 Jan 2014 15:55:41 Andre Bender replied:
Ah, I see, that's why there is no documentation for these functions then.
Would be great to have this function back. Thanks for your efforts.
Would be great to have this function back. Thanks for your efforts.
Replied 20 Apr 2014 08:13:32
20 Apr 2014 08:13:32 Andre Bender replied:
This is not working for more complex scripts. What is the status of these discussions? Thanks