Hi Sevi, it's the module I was waiting for a long time... Thanks!!^^

But I can't install it. I've followed your tutorial to Configure a view that lets the user change order.
I think the style-plugin isn't working because when I create a view, when I click on Page display or something else, I have "drag_1.JPG" and I have this message every where I click in Views settings. Even the others existing views.
I think my CCK Field is correct "drag_2.JPG".
So maybe it's because I have a Warning when I enable the module "drag_3.JPG" but I don't think so because http://drupal.org/node/290798#comment-997686,

I don't know how to fixe it...

I hope you will find time to help me nad maybe fixe it if is a bug.... ^^

Thanks

CommentFileSizeAuthor
#1 drag_1.JPG59.46 KBjunro
#1 drag_2.JPG74.25 KBjunro
#1 drag_3.JPG87.69 KBjunro

Comments

junro’s picture

StatusFileSize
new87.69 KB
new74.25 KB
new59.46 KB

Here my screenshots ^^

dan_aka_jack’s picture

Hi there,

Which version of Views are you using? The Views API changed with the release of Views 6.x-2.0-rc2 on 2008-Sep-11. Draggable Views doesn't seem to work with Views 6.x-2.0-rc2 (but it works fine for me with Views 6.x-2.0-rc1). Please see this issue:

Update to use Views API introduced in Views 6.x-2.0-rc2

Many thanks,
Jack

junro’s picture

Hi Jack

I'm using Views 6.x-2.0-rc1 too, so I had to miss something in the configuration but I don't know what... Have you seen my attachment files? with my configuration?

I have installed Drupal 6. for this module lol... so I'm frusted...

Thanks for your post anyway ^^

Julien

dan_aka_jack’s picture

Sorry Julien, I'm afraid I'm not able to help. I know nothing about JavaScript and I've never seen the error you're getting. Hopefully someone more qualified than me will be able to help!

Good luck with it...
Thanks,
Jack

junro’s picture

Thanks Jack, I hope the maintener will help me^^.

Bye

sevi’s picture

Hi,
I hope we find a way for you out of frustration :)

Your PHP Code is wrong. The array-keys will be used as the integer values:

for ($i = -20; $i <= 20; $i++) $options["Weight ".$i] = $i;

The following sould work:

$options = array();
for ($i = -20; $i <= 20; $i++) $options[$i] = "Weight ".$i;
return $options;

I just checked my documentation page and noticed that it was me making this strong mistake :). *quickly-changing-docu-page*
Well, I hope this makes it work for you. Let me know.

I'm looking forward to update and upgrade my module in the next few days to make it work fine - concerning bugs and features.
Thanks for your interest. You encourage me to work on :) - I hope I'll find some time.

Bye,
Sevi

junro’s picture

Hello Sevi, Thanks to help me ^^

So, I have put your new php code, but it doesn't fixe,the problem.
I've always got the message error (drag_1.JPG) and I have always this message every where I click in Views settings. Even the others existing views.

In Weight L1 Edit:
Golbal setting I have:
Minimum : -20
Maximum: 20 (Do i have to put something here?)

Autorize Values:
-20
-19
-18
-17
-16
-15
-14
-13
-12
-11
-10
-9
-8
-7
-6
-5
-4
-3
-2
-1
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

and your new php code:
$options = array();
for ($i = -20; $i <= 20; $i++) $options[$i] = "Weight ".$i;
return $options;

But maybe the problem is not here, because before to create the Weight Field in my content type, I had tried to create a view bunt didn't because I had the error message:
cf: ( (drag_1.JPG) and I have always this message every where I click in Views settings. Even the others existing views.)

I think there is something wrong with Views or CCK version maybe...

I use:
Draggable views 6.x-1.0-beta1
with:
Content 6.x-2.0-rc6 (CCK)
Views 6.x-2.0-rc1

So I don't know you're using these versions...?

What do you think?

Julien

junro’s picture

Hi, I'm just reinstalling Drupal 6 with Content 6.x-2.0-rc7 (CCK) Views 6.x-2.0-rc2, and I have always the error message, when Draggableviews is enable, I can't make any views... always the error message.

criz’s picture

@ Junro
Please see http://drupal.org/node/307463.

junro’s picture

Thanks criz, but it's another problem I have to fixe, Draggable view is not working with me with Views RC1, so thanks anyway, I didn't know that RC2 broke Draggable Views...

sevi’s picture

Status: Active » Fixed

module has been rewritten in the meantime. This fixed this issue by the way :)

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.