This is a migrated thread and some comments may be shown as answers.

Change Drag and Drop Line

3 Answers 82 Views
TreeView
This is a migrated thread and some comments may be shown as answers.
mohmedsadiq modan
Top achievements
Rank 1
mohmedsadiq modan asked on 09 Jun 2010, 10:28 AM
HI,

I have Implemented telerik radtreeview control. I need to change line when perform Drag and drop between trees.
I get some style from your site like rtDropAbove_Telerik, rtDropBelow_Telerik but i am stil confused.

Can you help me how to change line when perform drag and drop with Example

Thanks in Advance.

Regards,
sadiq modan

3 Answers, 1 is accepted

Sort by
0
mohmedsadiq modan
Top achievements
Rank 1
answered on 10 Jun 2010, 01:33 PM
Hello,

Any one is there to solve this issue, 
I am waiting for reply, Please guide me how can it possible to change Line when DRAG and DROP.

Based on this solution I am planning to purchase license of this software.

It is better for me if you provide Example.
Do let me know if you need further information.

Thanks in advance
0
Accepted
Kamen Bundev
Telerik team
answered on 11 Jun 2010, 01:37 PM
Hi Sadiq,

These are the rules in RadTreeView base stylesheet that take care of the drop line:
.rtDropAbove,
.rtDropBelow
{
    border: 1px dotted black;
    font-size: 3px;
    line-height: 3px;
    height: 3px;
    margin-top: -1px;
}
.rtDropAbove
{
    border-bottom: 0;
}
.rtDropBelow
{
    border-top: 0;
}


You can customize the border to be for instance solid and red by adding this CSS rule to your page:
div.rtDropAbove, div.rtDropBelow {
    border-style: solid;
    border-color: red;
}
Let me know if this helps.


Greetings,
Kamen Bundev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
mohmedsadiq modan
Top achievements
Rank 1
answered on 11 Jun 2010, 02:25 PM
Hi Kamen Bundev ,

Thank you very much for your help its work fine for me

Thank you again.

I hope we have good business in future. :)
Tags
TreeView
Asked by
mohmedsadiq modan
Top achievements
Rank 1
Answers by
mohmedsadiq modan
Top achievements
Rank 1
Kamen Bundev
Telerik team
Share this question
or