XWidget 1.9.1.402 portable
=============
i just tested with latest version and still problems exist...
=============
digigamer wrote:
Tested with latest version,
1. [BUG DOES NOT EXIST] HTMLPanel SUPPORTS HTML CODE, only thing is that must be well formed. And yes, the designer doesn't show the preview. You need to debug to see something in live.
yes, you're right...
i tested again and it works with some of the codes, but not all of them,
since i'm not experienced in html coding, i don't know if it is a bug or not.
Quote:
2. FEATURE MISSING Setting the URL/HTML in code DOES NOT work.
Quote:
3. [BUG DOES NOT EXIST]Resize bugs DO NOT exist. (I never recall they did in earlier versions... or may be for me only, sometimes programs do not work as expected!)
i tried with 2 versions and i have this problem in both of them...
just to more clarify:
when you use only [htmlpanel1.Width+=10] the htmlpanel should only get 10pixel bigger, but it also attach to the top left corner of screen; and if you execute command more and more htmlpanel will go up-left more&more until it completely gets out of the screen
also same happens for other commands but in different way:
([htmlpanel1.Height+=10] ; [htmlpanel1.Top=100] ; [htmlpanel1.Left=100])
to test it out:
you can add each of them to a datetimecoreOnUpdate() to see what happens
Quote:
4. FEATURE MISSING Feature missing since long... I would love to have scrollbars. (Wait, there was an HTML trick that shows scrollbars, but unfortunately, with no access to DOM, we couldn't 'inject' anything!)
i have also some temporary solutions for this:
-you can use <iframe> in an html file and have scrollbars in there
-if you know more on html coding you can also add a input box in the html file and load the url directly from html and without xwidget's commands
-also another solution to have scrollbar is using <frameset> but it only works for first page and after you go to a link, you will lose scrollbar; it can be helpful because it can fit the content to widget, maybe using it together with <iframe> can help
>>and here i should say that:
some of the codes doesn't works through htmlpanel box
but works when i add it to html file and load the html file in htmlpanel code box:
example of this: <iframe> and <frameset>
====================