Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a treeview in div control. when treeview is shown in different monitors, it is not fixed.In some of them it is completely in div, and in another one half of it comes out.what should I do?
Posted
Comments
Karthik Harve 13-Mar-13 6:14am    
have you applied any css class for div ?
MJ MOUSAVI 13-Mar-13 6:42am    
no, I just set the width of div to a fix value. I want to fix treeview in this div so in different monitors, it seems right.
sri senthil kumar 13-Mar-13 9:14am    
It might be because of insufficient width provided for div, try overflow, border property for div to identify the issue.
vinodkumarnie 15-Mar-13 2:09am    
Can you share your source code..?

1 solution

Hello MJ,

Try adding following css rule to the div, assuming that you attached a class named 'divTv' to the div.
CSS
.divTv {
    overflow: hidden;
    width: 200px;
    height: 480px;
}

Change height & width values as per your requirements.

Regards,
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900