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

popup window movable="false"

6 Answers 162 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Suresh
Top achievements
Rank 1
Suresh asked on 05 Dec 2011, 11:26 AM
Have any property in radgrid to freeze the popup  with editing??? 

help me plz

6 Answers, 1 is accepted

Sort by
0
Suresh
Top achievements
Rank 1
answered on 07 Dec 2011, 10:41 AM
help me out .. .. ..
0
Galin
Telerik team
answered on 08 Dec 2011, 11:15 AM
Hi Suresh,

I am afraid there is no such a similar property, but you can disable the movement of the edit popup by using the following CSS rule, e.g.
Copy Code
.RadGrid_[SkinName] .rgEditForm {
    left: 150px !important;
    top: 200px !important;
}

I hope it helps.


Greetings,
Galin
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
Suresh
Top achievements
Rank 1
answered on 09 Dec 2011, 09:47 AM
i called the CSS in editformsetting..but its not working.....Where should i call this CSS????
0
Shinu
Top achievements
Rank 2
answered on 09 Dec 2011, 10:23 AM
Hello Suresh,

Try overriding the default CSS in style tag as shown below.
CSS:
<head runat="server">
   . ..
 <style type="text/css">
 .RadGrid_SkinName .rgEditForm
 {
    left: 150px !important;
    top: 200px !important;
 }
 </style>

-Shinu.
0
Suresh
Top achievements
Rank 1
answered on 09 Dec 2011, 10:55 AM
Thank you very much Shinu and Galins......Its working fine........thanks alot...
0
Prava kafle
Top achievements
Rank 1
answered on 23 Jan 2012, 03:31 PM
Hi Shinu,

Is there a way to keep POP Up form within screen bounds rather than freezing it?


Thanks,
Prava
Tags
Grid
Asked by
Suresh
Top achievements
Rank 1
Answers by
Suresh
Top achievements
Rank 1
Galin
Telerik team
Shinu
Top achievements
Rank 2
Prava kafle
Top achievements
Rank 1
Share this question
or