Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
jmarcv  
#1 Posted : Monday, January 14, 2013 11:19:29 AM(UTC)
jmarcv

Rank: Member

Groups: Member
Joined: 2/6/2012(UTC)
Posts: 27

Thanks: 1 times
Would be nice to see this supported in the activeX/Java product.
If anything, at least not throwing a Fatal Error using getType.
Yes, I can wrap it in a conditional.....
vitaly  
#2 Posted : Tuesday, January 15, 2013 12:39:31 AM(UTC)
vitaly

Rank: Advanced Member

Groups: Member
Joined: 12/19/2012(UTC)
Posts: 164

Was thanked: 8 time(s) in 8 post(s)
Hello jmarcv,

ActiveX/Java Uploader has not these methods.

Please tell me about your problem. I think about the solution of your problem. Maybe you do not need getType() and setType() methods and there is a possible to solve your problem in a different way.

Best regards,
Vitaly Kustov
Best regards,
Vitaly Kustov
Aurigma Technical Support
jmarcv  
#3 Posted : Tuesday, January 15, 2013 10:33:55 AM(UTC)
jmarcv

Rank: Member

Groups: Member
Joined: 2/6/2012(UTC)
Posts: 27

Thanks: 1 times
My problem is, that I use the same codebase for html5Flash as I do for activeX/Java and it is frustrating that the object properties and the javascript namespace has to be DIFFERENT syntax.

Originally this was a request for etType setType to be supported ALSO in the activeX product. A feature request.
vitaly  
#4 Posted : Wednesday, January 16, 2013 3:03:09 AM(UTC)
vitaly

Rank: Advanced Member

Groups: Member
Joined: 12/19/2012(UTC)
Posts: 164

Was thanked: 8 time(s) in 8 post(s)
Hi jmarcv,

Thanks for explanations. Now I have understood the problem.

The Type property exists in JavaScript API of both ActiveX/Java and HTML5/Flash however for some reasons we did not add this property to PHP wrapper library of ActiveX/Java. I reported it to our dev team and we will probably fix it in future updates.

Meanwhile you can use JavaScript API to access the Type property like this:

Code:

<html>    
    <script>
    
    function preRender(){
        alert($au.uploader("Uploader1").type());        
    }
    
    </script>
    <?php
    $uploader = new Uploader("Uploader1");
    $uploader->getClientEvents()->setPreRender("preRender");
    $uploader->render();
    ?>    
</html>


Best regards,
Vitaly Kustov
Best regards,
Vitaly Kustov
Aurigma Technical Support
jmarcv  
#5 Posted : Wednesday, January 16, 2013 10:37:06 AM(UTC)
jmarcv

Rank: Member

Groups: Member
Joined: 2/6/2012(UTC)
Posts: 27

Thanks: 1 times
Ahhh! .type() I was looking for this. it actually SHOWS what was rendered when the php version only shows what was set. Useless, because I already KNOW what I set it to.
Thanks. This is MUCH better.
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.