I am having the same sort of problem, but only under IE, when I swap columns.
Is anybody else having the same trouble ? Looks to me to be very similar to the previous problem.
Something to do...
Type: Posts; User: Heladito; Keyword(s):
I am having the same sort of problem, but only under IE, when I swap columns.
Is anybody else having the same trouble ? Looks to me to be very similar to the previous problem.
Something to do...
Just being curious ;)
did you manage to solve this problem ? If yes, where can I get the fix ?
Yep, it works for me too :)
Thanks a lot jpenguin
Any thoughts by anybody ?
I believe this is a bug of the DwtListView...
If you want a simple example of how to extend DwtListView, you could download my zip file posted here
I have a strange problem regarding sashes automatically created by DwtListViews. I have attached the full code of my example and a screenshot to illustrate the problem and for anybody who wants to...
Have you tried that allready ?
In the DataViewer example, if you move the Sash to the right far enough, you'll get a scrollbar at the bottom since the space remaining for the listview is too small to show all the data.
However,...
Line 978, change:
for (var i = 0; i < numConvEls; i++) {
to
for (i = 0; i < numConvEls; i++) {
How do you actually specify between which 2 Components the Sash should be placed ? I thought the constructor would hold 2 arguments (1 for each component) but it doesn't...
Thx in advance.
Looking at the DataViewer example and more precisely the DvListView class.
Why does the function DvListView.prototype._createItemHtml create a new html table for each row ? Would it be possible to...
Thx for the reply.
I think I'll work with Firefox since it works with this browser. You must have changed a little thing from M1 to M2 that IE didn't digest ;)
I am still in the testing /...
After a bit of debugging, I found out that the ActionMenus were popdowned under IE 6 if you clicked anywhere in the DwtShell or on another Dwt component. Since in my example, I have a shell size set...
line 353 is:
var row = this._table.insertRow(index);
should be:
row = this._table.insertRow(index);
I just have a small question regarding the DataViewer example.
If you right-click on one of the column header, an ActionMenu is displayed to the user. If now I click anyWhere in the Window outside...
What about some dots to clearly visually link a child node to its parent with a dotted line ?
Has anyone got something like that ?
I got to make the examples work on the 3 browsers finally. ;)
I tested the M2 release examples under IE 6, Firefox and Safari 1.3.1. On the three browsers, the cursor when positionned outside a...
Ok,
I thought you actually supported Safari, because the M1 code was working fine. ;)
Has anybody been sucessful in running the examples of the M2 release under Safari ?
I have some problems like, the collapse/expand image of the DwtTree not showing up.
Also, the DataViewer...
Sure... :)
It is actually a modified version of the DvListViewActionMenu you find in the DataViewer Example.
function DvListViewActionMenu(parent, className, dialog) {
if...
Something useful could also be a changelog. At this stage, a changelog between M1 and M2.
Finally, I managed to make it work on the 3 browsers. I had to use a composite parent for each button though or the events where not correctly handled. Don't see why...
Here is what it does in 2...
Thanks for your great answer, I am trying this out now.
I run into 1 problem at the very beginning when running this code:
var shell = new DwtShell(....);
shell.setBounds(-100, -100, 1, 1);...
This example works fine but it doens't quite answer my question:
I have some html generated by a jsp page. I don't want to rewrite all the jsp, but I'd like to use some DwtWidgets through out the...
I'd like to make a DwtMenu show up when the user cliques a simple raw HTML link (existing code). The menu will then display a bunch of actions that the user can perform.
The idea is a bit like the...